Skip to content
Snippets Groups Projects
Commit 850cf338 authored by Peter Kietzmann's avatar Peter Kietzmann
Browse files

Merge pull request #3130 from gebart/pr/vtimer-debug

vtimer: Add forward declarations of debug functions
parents 6dc0e789 f8d5b18f
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,9 @@ ...@@ -21,6 +21,9 @@
#include <string.h> #include <string.h>
#include <inttypes.h> #include <inttypes.h>
#define ENABLE_DEBUG (0)
#include "debug.h"
#include "irq.h" #include "irq.h"
#include "priority_queue.h" #include "priority_queue.h"
#include "timex.h" #include "timex.h"
...@@ -32,8 +35,14 @@ ...@@ -32,8 +35,14 @@
#include "vtimer.h" #include "vtimer.h"
#define ENABLE_DEBUG (0)
#include "debug.h" #if ENABLE_DEBUG
void vtimer_print_short_queue(void);
void vtimer_print_long_queue(void);
void vtimer_print(vtimer_t *t);
#endif
#define VTIMER_THRESHOLD 20UL #define VTIMER_THRESHOLD 20UL
#define VTIMER_BACKOFF 10UL #define VTIMER_BACKOFF 10UL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment