mapi: replace INLINE with inline
authorBrian Paul <brianp@vmware.com>
Tue, 3 Mar 2015 16:08:22 +0000 (09:08 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 4 Mar 2015 15:33:48 +0000 (08:33 -0700)
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mapi/entry.c
src/mapi/table.h
src/mapi/u_compiler.h
src/mapi/u_current.h
src/mapi/u_thread.h

index b6e8db28d5b3d7f2f4f3962d68ed615b169a89b5..f0287a052ad24d76010308ad584e36cf663f09b4 100644 (file)
@@ -51,7 +51,7 @@
 
 #include <stdlib.h>
 
-static INLINE const struct mapi_table *
+static inline const struct mapi_table *
 entry_current_get(void)
 {
 #ifdef MAPI_MODE_BRIDGE
index df59aed4ffdbdacdc39bc0d3daaaa33005a0b7e5..8180db9bc1046589fe912ad3b8a0b358e45ee0b6 100644 (file)
@@ -42,7 +42,7 @@ extern const mapi_func table_noop_array[];
 /**
  * Get the no-op dispatch table.
  */
-static INLINE const struct mapi_table *
+static inline const struct mapi_table *
 table_get_noop(void)
 {
    return (const struct mapi_table *) table_noop_array;
@@ -51,7 +51,7 @@ table_get_noop(void)
 /**
  * Set the function of a slot.
  */
-static INLINE void
+static inline void
 table_set_func(struct mapi_table *tbl, int slot, mapi_func func)
 {
    mapi_func *funcs = (mapi_func *) tbl;
@@ -61,7 +61,7 @@ table_set_func(struct mapi_table *tbl, int slot, mapi_func func)
 /**
  * Return the function of a slot.
  */
-static INLINE mapi_func
+static inline mapi_func
 table_get_func(const struct mapi_table *tbl, int slot)
 {
    const mapi_func *funcs = (const mapi_func *) tbl;
index f376e97a0f3f3d9f30fb611918c37fbf4c7f620d..8ed0f712f5dafbdb1910102eb8f45b7db3b69c11 100644 (file)
@@ -3,12 +3,6 @@
 
 #include "c99_compat.h" /* inline, __func__, etc. */
 
-
-/* XXX: Use standard `inline` keyword instead */
-#ifndef INLINE
-#  define INLINE inline
-#endif
-
 /* Function visibility */
 #ifndef PUBLIC
 #  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
index 72708d433ded8c9a80fb3c71dacc9788e2171c18..252e696c571e49fb83fc4b01fe542ce1adc24f7c 100644 (file)
@@ -63,7 +63,7 @@ u_current_set_context(const void *ptr);
 void *
 u_current_get_context_internal(void);
 
-static INLINE const struct mapi_table *
+static inline const struct mapi_table *
 u_current_get_table(void)
 {
 #ifdef GLX_USE_TLS
@@ -74,7 +74,7 @@ u_current_get_table(void)
 #endif
 }
 
-static INLINE const void *
+static inline const void *
 u_current_get_context(void)
 {
 #ifdef GLX_USE_TLS
index 57c3b076af88c8938bfce7327938f235a1028439..3cd07b5c4fade48ba05bdbbc7cd6ab47f4c64252 100644 (file)
@@ -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) {