~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to mit-pthreads/machdep/bsdi-2.0/__signal.h

  • Committer: bk at mysql
  • Date: 2000-07-31 19:29:14 UTC
  • Revision ID: sp1r-bk@work.mysql.com-20000731192914-08846
Import changeset

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <sys/signal.h>
 
2
 
 
3
#define __SIGEMPTYSET           0
 
4
#define __SIGFILLSET            0xffffffff
 
5
#define __SIGADDSET(s, n)       (*(s) |= 1 << ((n) - 1), 0)
 
6
#define __SIGDELSET(s, n)       (*(s) &= ~(1 << ((n) - 1)), 0)
 
7
#define __SIGISMEMBER(s, n)     ((*(s) & (1 << ((n) - 1))) != 0)