ack/lang/m2/libm2/halt.c

41 lines
641 B
C
Raw Permalink 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
*/
#include <unistd.h>
#include "libm2.h"
#define MAXPROCS 32
1988-01-25 16:14:48 +00:00
static int callindex = 0;
static void (*proclist[MAXPROCS])(void);
1988-01-25 16:14:48 +00:00
void _cleanup(void)
1988-01-25 16:14:48 +00:00
{
while (--callindex >= 0)
(*proclist[callindex])();
callindex = 0;
1988-01-25 16:14:48 +00:00
}
int CallAtEnd(void (*p)(void))
1988-01-25 16:14:48 +00:00
{
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
}
void halt(void)
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
}