Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2004-11-20  Ulrich Drepper  <drepper@redhat.com>

	* signal/signal.h: Add deprecated attributes to sigstack,
	sigpause, sigblock, sigsetmask, siggetmask.
  • Loading branch information
Ulrich Drepper committed Nov 20, 2004
1 parent b639d0c commit 3a7fd2f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2004-11-20 Ulrich Drepper <drepper@redhat.com>

* signal/signal.h: Add deprecated attributes to sigstack,
sigpause, sigblock, sigsetmask, siggetmask.

2004-11-20 Jakub Jelinek <jakub@redhat.com>

* sysdeps/unix/sysv/linux/bits/socket.h (SCM_RIGHTS): Avoid
Expand Down
12 changes: 6 additions & 6 deletions signal/signal.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,7 @@ extern int __sigpause (int __sig_or_mask, int __is_sig);
#ifdef __FAVOR_BSD
/* Set the mask of blocked signals to MASK,
wait for a signal to arrive, and then restore the mask. */
extern int sigpause (int __mask) __THROW;
# define sigpause(mask) __sigpause ((mask), 0)
extern int sigpause (int __mask) __THROW __attribute_deprecated__;
#else
# ifdef __USE_XOPEN
# ifdef __GNUC__
Expand All @@ -176,13 +175,13 @@ extern int sigpause (int __sig) __asm__ ("__xpg_sigpause");
# define sigmask(sig) __sigmask(sig)

/* Block signals in MASK, returning the old mask. */
extern int sigblock (int __mask) __THROW;
extern int sigblock (int __mask) __THROW __attribute_deprecated__;

/* Set the mask of blocked signals to MASK, returning the old mask. */
extern int sigsetmask (int __mask) __THROW;
extern int sigsetmask (int __mask) __THROW __attribute_deprecated__;

/* Return currently selected signal mask. */
extern int siggetmask (void) __THROW;
extern int siggetmask (void) __THROW __attribute_deprecated__;
#endif /* Use BSD. */


Expand Down Expand Up @@ -349,7 +348,8 @@ extern int siginterrupt (int __sig, int __interrupt) __THROW;
/* Run signals handlers on the stack specified by SS (if not NULL).
If OSS is not NULL, it is filled in with the old signal stack status.
This interface is obsolete and on many platform not implemented. */
extern int sigstack (struct sigstack *__ss, struct sigstack *__oss) __THROW;
extern int sigstack (struct sigstack *__ss, struct sigstack *__oss)
__THROW __attribute_deprecated__;

/* Alternate signal handler stack interface.
This interface should always be preferred over `sigstack'. */
Expand Down

0 comments on commit 3a7fd2f

Please sign in to comment.