Updates system library calls: interface changes (removed unused parameters).
Removed old notification trap: renamed alert() to notify() ... finally ;-)
This commit is contained in:
@@ -3,17 +3,15 @@
|
||||
/*===========================================================================*
|
||||
* sys_sigreturn *
|
||||
*===========================================================================*/
|
||||
PUBLIC int sys_sigreturn(proc_nr, sig_ctxt, flags)
|
||||
PUBLIC int sys_sigreturn(proc_nr, sig_ctxt)
|
||||
int proc_nr; /* for which process */
|
||||
struct sigmsg *sig_ctxt; /* POSIX style handling */
|
||||
int flags; /* flags for POSIX handling */
|
||||
{
|
||||
message m;
|
||||
int result;
|
||||
|
||||
m.SIG_PROC = proc_nr;
|
||||
m.SIG_CTXT_PTR = (char *) sig_ctxt;
|
||||
m.SIG_FLAGS = flags;
|
||||
result = _taskcall(SYSTASK, SYS_SIGRETURN, &m);
|
||||
return(result);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user