OSDN Git Service

2004-06-25 Jeff Johnston <jjohnstn@redhat.com>
authorjjohnstn <jjohnstn>
Fri, 25 Jun 2004 22:17:04 +0000 (22:17 +0000)
committerjjohnstn <jjohnstn>
Fri, 25 Jun 2004 22:17:04 +0000 (22:17 +0000)
        * libnosys/_exit.c: New file.
        * libnosys/Makefile.in: Add _exit.o.

libgloss/ChangeLog
libgloss/libnosys/Makefile.in
libgloss/libnosys/_exit.c [new file with mode: 0644]

index 7780986..807192d 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-25  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * libnosys/_exit.c: New file.
+       * libnosys/Makefile.in: Add _exit.o.
+
 2004-06-17  Jeff Johnston  <jjohnstn@redhat.com>
 
        * arm/configure.in: Check the value of newlib-may-supply-syscalls
index 3aaf04d..62f8caa 100644 (file)
@@ -66,7 +66,7 @@ OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
 # object files needed
 OBJS = close.o environ.o errno.o execve.o fork.o fstat.o getpid.o gettod.o \
        isatty.o kill.o link.o lseek.o open.o read.o sbrk.o stat.o \
-       times.o unlink.o wait.o write.o
+       times.o unlink.o wait.o write.o _exit.o
 
 # Object files specific to particular targets.
 EVALOBJS = ${OBJS}
diff --git a/libgloss/libnosys/_exit.c b/libgloss/libnosys/_exit.c
new file mode 100644 (file)
index 0000000..d4dd232
--- /dev/null
@@ -0,0 +1,15 @@
+/* Stub version of _exit.  */
+
+#include <limits.h>
+#include "config.h"
+#include <_ansi.h>
+#include <_syslist.h>
+
+_VOID
+_DEFUN (_exit, (rc),
+       int rc)
+{
+  /* Default stub just causes a divide by 0 exception.  */
+  int x = rc / INT_MAX;
+  x = 4 / x;
+}