]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 9 Oct 1998 15:10:53 +0000 (15:10 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 9 Oct 1998 15:10:53 +0000 (15:10 +0000)
* sysdeps/i386/pt-machine.h (get_eflags, set_eflags): Mark these
also with PT_EI.

linuxthreads/ChangeLog
linuxthreads/sysdeps/i386/pt-machine.h

index 82279145571cadc12c59c5a6e818281cb57e968d..c0acddad0eb8ce5859fb2f5796a9b3c6d3c9aff5 100644 (file)
@@ -1,5 +1,8 @@
 1998-10-09  Ulrich Drepper  <drepper@cygnus.com>
 
+       * sysdeps/i386/pt-machine.h (get_eflags, set_eflags): Mark these
+       also with PT_EI.
+
        * sysdeps/i386/i686/pt-machine.h: Remove unused inline
        definitions.
 
index 364b77c9eb71ad98803f55e6c007c70c0b68ab8c..88599467adebc9c6fcfb5dbad7d80daae6b7cfb5 100644 (file)
@@ -65,7 +65,7 @@ __compare_and_swap (long int *p, long int oldval, long int newval)
 }
 
 
-extern inline int
+PT_EI int
 get_eflags (void)
 {
   int res;
@@ -74,7 +74,7 @@ get_eflags (void)
 }
 
 
-extern inline void
+PT_EI void
 set_eflags (int newflags)
 {
   __asm__ __volatile__ ("pushl %0; popfl" : : "r" (newflags) : "cc");