2005-04-21 16:53:53 +02:00
|
|
|
#include "syslib.h"
|
|
|
|
|
2005-04-29 17:36:43 +02:00
|
|
|
/*===========================================================================*
|
|
|
|
* sys_sigreturn *
|
|
|
|
*===========================================================================*/
|
2005-07-29 17:01:59 +02:00
|
|
|
PUBLIC int sys_sigreturn(proc_nr, sig_ctxt)
|
2005-04-29 17:36:43 +02:00
|
|
|
int proc_nr; /* for which process */
|
|
|
|
struct sigmsg *sig_ctxt; /* POSIX style handling */
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
2005-04-29 17:36:43 +02:00
|
|
|
message m;
|
|
|
|
int result;
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2006-03-03 10:44:55 +01:00
|
|
|
m.SIG_ENDPT = proc_nr;
|
2005-04-29 17:36:43 +02:00
|
|
|
m.SIG_CTXT_PTR = (char *) sig_ctxt;
|
|
|
|
result = _taskcall(SYSTASK, SYS_SIGRETURN, &m);
|
|
|
|
return(result);
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
2005-04-29 17:36:43 +02:00
|
|
|
|