From 706243ac48cf646d503a3f1ec9e6a28c916694bd Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Sat, 5 Mar 2011 10:01:45 -0600 Subject: Merge of PowerHAL project up to commit: dd45c30bd53d8e6c123165b83842d08117558a3c --- src/include/sys/msg.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/include/sys/msg.h') diff --git a/src/include/sys/msg.h b/src/include/sys/msg.h index d7c42f4e3..eec71ea4e 100644 --- a/src/include/sys/msg.h +++ b/src/include/sys/msg.h @@ -3,6 +3,7 @@ #include #include +#include #ifdef __cplusplus extern "C" @@ -26,9 +27,9 @@ int msg_q_register(msg_q_t q, const char* name); msg_q_t msg_q_resolve(const char* name); // Message interfaces. -__attribute__((always_inline)) +ALWAYS_INLINE inline msg_t* msg_allocate() { return (msg_t*)malloc(sizeof(msg_t)); } -__attribute__((always_inline)) +ALWAYS_INLINE inline void msg_free(msg_t* m) { free(m); } int msg_send(msg_q_t q, msg_t* msg); @@ -36,7 +37,7 @@ int msg_sendrecv(msg_q_t q, msg_t* msg); int msg_respond(msg_q_t q, msg_t* msg); msg_t* msg_wait(msg_q_t q); -__attribute__((always_inline)) +ALWAYS_INLINE inline uint32_t msg_is_async(msg_t* msg) { return 0 == msg->__reserved__async; } -- cgit v1.2.3