Updates system library calls: interface changes (removed unused parameters).

Removed old notification trap: renamed alert() to notify() ... finally ;-)
This commit is contained in:
Jorrit Herder
2005-07-29 15:01:59 +00:00
parent d3874a7917
commit 748b3dd434
5 changed files with 9 additions and 29 deletions

View File

@@ -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);
}