4d95d0e99a
* arm/Makefile (RDPMON_OBJS): Add _exit.o and _kill.o. (RDIMON_OBJS): Define in terms of RDPMON_OBJS. (rdimon-_exit.o, rdimon-_kill.o): New. * arm/_exit.c, arm/_kill.c: New. * arm/syscalls.c (_exit, _kill): Remove.
16 lines
422 B
C
16 lines
422 B
C
#include <_ansi.h>
|
|
|
|
int _kill _PARAMS ((int, int));
|
|
void _exit _PARAMS ((int));
|
|
|
|
void
|
|
_exit (int status)
|
|
{
|
|
/* There is only one SWI for both _exit and _kill. For _exit, call
|
|
the SWI with the second argument set to -1, an invalid value for
|
|
signum, so that the SWI handler can distinguish the two calls.
|
|
Note: The RDI implementation of _kill throws away both its
|
|
arguments. */
|
|
_kill (status, -1);
|
|
}
|