mirror of git://sourceware.org/git/glibc.git
Update.
* signal/signal.h (sigpause): Move __THROW before __asm__.
This commit is contained in:
parent
30f1226b0b
commit
4dadd40cc7
|
|
@ -1,5 +1,7 @@
|
||||||
2000-08-29 Ulrich Drepper <drepper@redhat.com>
|
2000-08-29 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* signal/signal.h (sigpause): Move __THROW before __asm__.
|
||||||
|
|
||||||
* inet/rcmd.c (__checkhost_sa): If getnameinfo succeeds but the
|
* inet/rcmd.c (__checkhost_sa): If getnameinfo succeeds but the
|
||||||
names don't match don't return.
|
names don't match don't return.
|
||||||
Patch by Olaf Kirch <okir@flash.lst.de>.
|
Patch by Olaf Kirch <okir@flash.lst.de>.
|
||||||
|
|
|
||||||
|
|
@ -147,7 +147,7 @@ extern int sigpause (int __mask) __THROW;
|
||||||
#else
|
#else
|
||||||
# ifdef __USE_XOPEN
|
# ifdef __USE_XOPEN
|
||||||
# ifdef __GNUC__
|
# ifdef __GNUC__
|
||||||
extern int sigpause (int __sig) __asm__ ("__xpg_sigpause") __THROW;
|
extern int sigpause (int __sig) __THROW __asm__ ("__xpg_sigpause");
|
||||||
# endif
|
# endif
|
||||||
/* Remove a signal from the signal mask and suspend the process. */
|
/* Remove a signal from the signal mask and suspend the process. */
|
||||||
# define sigpause(sig) __sigpause ((sig), 1)
|
# define sigpause(sig) __sigpause ((sig), 1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue