mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
Somewhat notable changes: - Remove pointless test commands from Mamfiles. - Consistent use of NoN macro instead of manual void _STUB_foo(){} (this is to silence "foo.o has no symbols" warnings from ld). - Remove src/lib/libast/comp/transition.c; obsolete, does nothing. - xec.c: Fix off-by-one error in sigreset() used by sh_ntfork(): it tried to (re)set signal 0, which is harmless, but wrong. (note that sh.st.trapmax is the current max trapped sig + one!)
79 lines
2.3 KiB
C
79 lines
2.3 KiB
C
/***********************************************************************
|
|
* *
|
|
* This software is part of the ast package *
|
|
* Copyright (c) 1985-2011 AT&T Intellectual Property *
|
|
* Copyright (c) 2020-2022 Contributors to ksh 93u+m *
|
|
* and is licensed under the *
|
|
* Eclipse Public License, Version 1.0 *
|
|
* by AT&T Intellectual Property *
|
|
* *
|
|
* A copy of the License is available at *
|
|
* http://www.eclipse.org/org/documents/epl-v10.html *
|
|
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
|
|
* *
|
|
* Information and Software Systems Research *
|
|
* AT&T Research *
|
|
* Florham Park NJ *
|
|
* *
|
|
* Glenn Fowler <gsf@research.att.com> *
|
|
* David Korn <dgk@research.att.com> *
|
|
* Phong Vo <kpv@research.att.com> *
|
|
* *
|
|
***********************************************************************/
|
|
|
|
#include "vmhdr.h"
|
|
|
|
/*
|
|
** Any required functions for process exiting.
|
|
** Written by Kiem-Phong Vo, kpv@research.att.com (05/25/93).
|
|
*/
|
|
#if _PACKAGE_ast || _lib_atexit
|
|
|
|
NoN(vmexit)
|
|
|
|
#else
|
|
|
|
#if _lib_onexit
|
|
|
|
int atexit(void (*exitf)(void))
|
|
{
|
|
return onexit(exitf);
|
|
}
|
|
|
|
#else /*!_lib_onexit*/
|
|
|
|
typedef struct _exit_s
|
|
{ struct _exit_s* next;
|
|
void(* exitf)(void);
|
|
} Exit_t;
|
|
static Exit_t* Exit;
|
|
|
|
atexit(void (*exitf)(void))
|
|
{ Exit_t* e;
|
|
|
|
if(!(e = (Exit_t*)malloc(sizeof(Exit_t))) )
|
|
return -1;
|
|
e->exitf = exitf;
|
|
e->next = Exit;
|
|
Exit = e;
|
|
return 0;
|
|
}
|
|
|
|
void exit(int type)
|
|
{
|
|
Exit_t* e;
|
|
|
|
for(e = Exit; e; e = e->next)
|
|
(*e->exitf)();
|
|
|
|
#if _exit_cleanup
|
|
_cleanup();
|
|
#endif
|
|
|
|
_exit(type);
|
|
return type;
|
|
}
|
|
|
|
#endif /* _lib_onexit */
|
|
|
|
#endif /*!PACKAGE_ast*/
|