Call _cleanup before _exit
This commit is contained in:
parent
adab058c34
commit
f4691c73c4
|
@ -71,6 +71,7 @@ _SYSTEM__NEWPROCESS(p, a, n, p1)
|
|||
Just call the coroutine procedure.
|
||||
*/
|
||||
(*(curproc->proc))();
|
||||
_cleanup();
|
||||
_exit(0);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -52,8 +52,6 @@ static struct errm {
|
|||
{ -1, 0}
|
||||
};
|
||||
|
||||
extern exit();
|
||||
|
||||
catch(trapno)
|
||||
int trapno;
|
||||
{
|
||||
|
@ -93,11 +91,14 @@ catch(trapno)
|
|||
signal(__signo, SIG_DFL);
|
||||
_cleanup();
|
||||
kill(getpid(), __signo);
|
||||
exit(trapno);
|
||||
_exit(trapno);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
if (trapno != M2_FORCH) exit(trapno);
|
||||
if (trapno != M2_FORCH) {
|
||||
_cleanup();
|
||||
_exit(trapno);
|
||||
}
|
||||
SIG(catch);
|
||||
}
|
||||
|
|
|
@ -32,5 +32,6 @@ CallAtEnd(p)
|
|||
|
||||
halt()
|
||||
{
|
||||
exit(0);
|
||||
_cleanup();
|
||||
_exit(0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue