2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: OS specific functions for signal blocking
12 /* The real functions are written in assembler as stubs which call these */
13 void _os_enable (void)
19 fprintf (stderr, "Enable() called in supervisor mode\n");
24 sigprocmask (SIG_UNBLOCK
, &set
, NULL
);
27 void _os_disable (void)
33 sigprocmask (SIG_BLOCK
, &set
, NULL
);