2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 #define timeval sys_timeval
9 #include <exec/execbase.h>
13 /******************************************************************************
16 #include <proto/exec.h>
18 AROS_LH0(void, Enable
,
21 struct ExecBase
*, SysBase
, 21, Exec
)
24 This function reenables the delivery of interrupts after a call to
34 This function may be used from interrupts.
36 This function preserves all registers.
43 Forbid(), Permit(), Disable()
49 ******************************************************************************/
51 if ((-- SysBase
->IDNestCnt
) < 0)
54 if ((SysBase
->AttnResched
& 0x80) && SysBase
->TDNestCnt
<0)
56 SysBase
->AttnResched
&= ~0x80;
68 sigprocmask (SIG_UNBLOCK
, &set
, NULL
);