2006-06-05 Shaun Jackman <sjackman@gmail.com>

* arm/linux-syscalls0.S (reboot): Remove.
        * arm/linux-syscalls1.c (reboot): New function.
This commit is contained in:
Jeff Johnston 2006-06-05 20:15:23 +00:00
parent 9eedc2e624
commit 986b5d2246
3 changed files with 17 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2006-06-05 Shaun Jackman <sjackman@gmail.com>
* arm/linux-syscalls0.S (reboot): Remove.
* arm/linux-syscalls1.c (reboot): New function.
2006-06-05 Shaun Jackman <sjackman@gmail.com>
* arm/syscalls.c (kill) [ARM_RDI_MONITOR]: Use the signal
@ -6,11 +11,11 @@
2006-05-30 Shaun Jackman <sjackman@gmail.com>
* arm/Makefile.in: Add Linux syscall interface.
* arm/linux-crt0.S: New file.
* arm/linux-syscall.h: New file.
* arm/linux-syscalls0.S: New file.
* arm/linux-syscalls1.c: New file.
* arm/Makefile.in: Add Linux syscall interface.
* arm/linux-crt0.S: New file.
* arm/linux-syscall.h: New file.
* arm/linux-syscalls0.S: New file.
* arm/linux-syscalls1.c: New file.
2006-05-23 Fred Fish <fnf@specifix.com>

View File

@ -143,7 +143,6 @@ ALIAS(mkdir)
ALIAS(mknod)
ALIAS(nanosleep)
ALIAS(readlink)
ALIAS(reboot)
ALIAS(rmdir)
ALIAS(select)
ALIAS(stime)

View File

@ -62,3 +62,10 @@ pid_t waitpid(pid_t pid, int *status, int options)
{
return wait4(pid, status, options, NULL);
}
extern int _reboot(int magic, int magic2, int flag, void *arg);
int reboot(int flag)
{
return _reboot(0xfee1dead, 0x28121969, flag, NULL);
}