From 92cd9e57b928d5f24a163ae9886e37d6673ecb7b Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Wed, 4 Apr 2012 11:07:15 +0200 Subject: [PATCH] Fix compile warning --- base-linux/src/base/lock/lock_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-linux/src/base/lock/lock_helper.h b/base-linux/src/base/lock/lock_helper.h index 7161ac4868..7e414e7c5c 100644 --- a/base-linux/src/base/lock/lock_helper.h +++ b/base-linux/src/base/lock/lock_helper.h @@ -42,7 +42,7 @@ static inline void thread_yield() } -static bool thread_check_stopped_and_restart(Genode::Native_thread_id tid) +static inline bool thread_check_stopped_and_restart(Genode::Native_thread_id tid) { lx_tgkill(tid.pid, tid.tid, LX_SIGUSR1); return true;