Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/arm/_kill.c')
-rw-r--r--libgloss/arm/_kill.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/libgloss/arm/_kill.c b/libgloss/arm/_kill.c
deleted file mode 100644
index 81354d473..000000000
--- a/libgloss/arm/_kill.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <_ansi.h>
-#include <signal.h>
-#include "swi.h"
-
-int _kill _PARAMS ((int, int));
-
-int
-_kill (int pid, int sig)
-{
- (void) pid; (void) sig;
-#ifdef ARM_RDI_MONITOR
- /* Note: The pid argument is thrown away. */
- switch (sig)
- {
- case SIGABRT:
- return do_AngelSWI (AngelSWI_Reason_ReportException,
- (void *) ADP_Stopped_RunTimeError);
- default:
- return do_AngelSWI (AngelSWI_Reason_ReportException,
- (void *) ADP_Stopped_ApplicationExit);
- }
-#else
- asm ("swi %a0" :: "i" (SWI_Exit));
-#endif
-}