ack/lang/m2/libm2/halt.c

38 lines
572 B
C
Raw Normal View History

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
*/
#define MAXPROCS 32
1988-01-25 16:14:48 +00:00
static int callindex = 0;
1988-01-25 16:14:48 +00:00
static int (*proclist[MAXPROCS])();
_cleanup()
{
while (--callindex >= 0)
(*proclist[callindex])();
callindex = 0;
1988-01-25 16:14:48 +00:00
}
CallAtEnd(p)
int (*p)();
{
if (callindex >= MAXPROCS) {
return 0;
1988-01-25 16:14:48 +00:00
}
proclist[callindex++] = p;
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
}