diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-01-05 11:24:00 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-01-05 11:24:00 +0000 |
commit | 81caa1a620a04ade56293de4219b011db4d0f9a0 (patch) | |
tree | 41df95c10ef65ed7617bb3b62a55521bf5265031 /libpthread/linuxthreads.old/sysdeps/cris/pt-machine.h | |
parent | 493399107e5c04df56a7d745589892f738c47831 (diff) |
- fixup gnu_inline vs. C99 inline
- add missing header guards while at it
Diffstat (limited to 'libpthread/linuxthreads.old/sysdeps/cris/pt-machine.h')
-rw-r--r-- | libpthread/linuxthreads.old/sysdeps/cris/pt-machine.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/libpthread/linuxthreads.old/sysdeps/cris/pt-machine.h b/libpthread/linuxthreads.old/sysdeps/cris/pt-machine.h index a287e866a..de747bba7 100644 --- a/libpthread/linuxthreads.old/sysdeps/cris/pt-machine.h +++ b/libpthread/linuxthreads.old/sysdeps/cris/pt-machine.h @@ -17,9 +17,17 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef _PT_MACHINE_H +#define _PT_MACHINE_H 1 + +#include <features.h> #ifndef PT_EI -# define PT_EI extern inline __attribute__ ((always_inline)) +# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) +# define PT_EI static inline __attribute__((always_inline)) +# else +# define PT_EI extern inline __attribute__((always_inline)) +# endif #endif PT_EI long int @@ -62,3 +70,5 @@ testandset (int *spinlock) I don't trust register variables, so let's do this the safe way. */ #define CURRENT_STACK_FRAME \ ({ char *sp; __asm__ ("move.d $sp,%0" : "=rm" (sp)); sp; }) + +#endif /* pt-machine.h */ |