diff options
author | Brian Paul <[email protected]> | 2015-03-03 09:08:22 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-03-04 08:33:48 -0700 |
commit | 41c87cc5666de7ec5cfdea2c035c671048c06ca5 (patch) | |
tree | 70d0d98c1841ffa7872e5946a72b306ddc5a75ba /src/mapi/u_thread.h | |
parent | 5bebd7099ab22c6f1498cd928170561718d6ff36 (diff) |
mapi: replace INLINE with inline
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mapi/u_thread.h')
-rw-r--r-- | src/mapi/u_thread.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mapi/u_thread.h b/src/mapi/u_thread.h index 57c3b076af8..3cd07b5c4fa 100644 --- a/src/mapi/u_thread.h +++ b/src/mapi/u_thread.h @@ -80,7 +80,7 @@ struct u_tsd { }; -static INLINE unsigned long +static inline unsigned long u_thread_self(void) { /* @@ -104,7 +104,7 @@ u_thread_self(void) } -static INLINE void +static inline void u_tsd_init(struct u_tsd *tsd) { if (tss_create(&tsd->key, NULL/*free*/) != 0) { @@ -115,7 +115,7 @@ u_tsd_init(struct u_tsd *tsd) } -static INLINE void * +static inline void * u_tsd_get(struct u_tsd *tsd) { if (tsd->initMagic != INIT_MAGIC) { @@ -125,7 +125,7 @@ u_tsd_get(struct u_tsd *tsd) } -static INLINE void +static inline void u_tsd_set(struct u_tsd *tsd, void *ptr) { if (tsd->initMagic != INIT_MAGIC) { @@ -138,7 +138,7 @@ u_tsd_set(struct u_tsd *tsd, void *ptr) } -static INLINE void +static inline void u_tsd_destroy(struct u_tsd *tsd) { if (tsd->initMagic != INIT_MAGIC) { |