Changeset 609 for branches/GNU/src/binutils/libiberty/sigsetmask.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/sigsetmask.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 4 4 This file is in the public doamin. */ 5 5 6 /* Set the current signal mask to the set provided, and return the 7 previous value */ 6 /* 7 8 @deftypefn Supplemental int sigsetmask (int @var{set}) 9 10 Sets the signal mask to the one provided in @var{set} and returns 11 the old mask (which, for libiberty's implementation, will always 12 be the value @code{1}). 13 14 @end deftypefn 15 16 */ 8 17 9 18 #define _POSIX_SOURCE … … 17 26 #ifdef SIG_SETMASK 18 27 int 19 DEFUN(sigsetmask,(set), 20 int set )28 sigsetmask (set) 29 int set; 21 30 { 22 31 sigset_t new; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.