aboutsummaryrefslogtreecommitdiff
path: root/core/test/run-timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/test/run-timer.c')
-rw-r--r--core/test/run-timer.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/test/run-timer.c b/core/test/run-timer.c
index 0270cfe..e45cf63 100644
--- a/core/test/run-timer.c
+++ b/core/test/run-timer.c
@@ -12,7 +12,11 @@
static uint64_t stamp, last;
struct lock;
-static inline void lock(struct lock *l) { (void)l; }
+static inline void lock_caller(struct lock *l, const char *caller)
+{
+ (void)caller;
+ (void)l;
+}
static inline void unlock(struct lock *l) { (void)l; }
unsigned long tb_hz = 512000000;