1988-02-19 15:54:01 +00:00
|
|
|
/*
|
|
|
|
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Module: program termination routines
|
|
|
|
Author: Ceriel J.H. Jacobs
|
1994-06-24 14:02:31 +00:00
|
|
|
Version: $Id$
|
1988-02-19 15:54:01 +00:00
|
|
|
*/
|
1989-03-22 17:36:20 +00:00
|
|
|
#define MAXPROCS 32
|
1988-01-25 16:14:48 +00:00
|
|
|
|
1988-12-02 15:39:59 +00:00
|
|
|
static int callindex = 0;
|
1988-01-25 16:14:48 +00:00
|
|
|
static int (*proclist[MAXPROCS])();
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
{
|
1989-05-12 09:36:16 +00:00
|
|
|
while (--callindex >= 0)
|
|
|
|
(*proclist[callindex])();
|
1988-11-07 10:25:45 +00:00
|
|
|
callindex = 0;
|
1988-01-25 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CallAtEnd(p)
|
|
|
|
int (*p)();
|
|
|
|
{
|
|
|
|
if (callindex >= MAXPROCS) {
|
1988-01-28 16:37:55 +00:00
|
|
|
return 0;
|
1988-01-25 16:14:48 +00:00
|
|
|
}
|
1989-03-22 17:36:20 +00:00
|
|
|
proclist[callindex++] = p;
|
1988-01-28 16:37:55 +00:00
|
|
|
return 1;
|
1988-01-25 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
1988-03-23 17:55:57 +00:00
|
|
|
halt()
|
1987-05-13 14:36:45 +00:00
|
|
|
{
|
1991-03-15 09:24:03 +00:00
|
|
|
_cleanup();
|
|
|
|
_exit(0);
|
1987-05-13 14:36:45 +00:00
|
|
|
}
|