2004-06-09 Toralf Lund <toralf@procaptura.com>
* arm/crt0.S: Copied from newlib and it now also sets up stacks for
FIQ and IRQ mode, plus calls hardware_init_hook() and
software_init_hook() if present.
* arm/libcfunc.c, arm/swi.h, arm/syscalls.c: Copied
from newlib.
* arm/Makefile.in: Build crt0.o, rdpmon-crt0.o, rdimon-crt0.o,
librdpmon.a, librdimon.a - support file for "bare" setup, as well
as "RDP" and "RDI" monitors.
* arm/coff-rdpmon.specs, arm/elf-rdpmon.specs,
arm/coff-rdimon.specs, arm/elf-rdimon.specs: gcc specs files to go
with above mentioned support libs and startfiles.
2004-06-09 21:06:50 +02:00
|
|
|
/* Support files for GNU libc. Files in the C namespace go here.
|
|
|
|
Files in the system namespace (ie those that start with an underscore)
|
|
|
|
go in syscalls.c.
|
|
|
|
|
|
|
|
Note: These functions are in a seperate file so that OS providers can
|
|
|
|
overrride the system call stubs (defined in syscalls.c) without having
|
|
|
|
to provide libc funcitons as well. */
|
2005-07-18 18:18:17 +02:00
|
|
|
|
2004-06-09 Toralf Lund <toralf@procaptura.com>
* arm/crt0.S: Copied from newlib and it now also sets up stacks for
FIQ and IRQ mode, plus calls hardware_init_hook() and
software_init_hook() if present.
* arm/libcfunc.c, arm/swi.h, arm/syscalls.c: Copied
from newlib.
* arm/Makefile.in: Build crt0.o, rdpmon-crt0.o, rdimon-crt0.o,
librdpmon.a, librdimon.a - support file for "bare" setup, as well
as "RDP" and "RDI" monitors.
* arm/coff-rdpmon.specs, arm/elf-rdpmon.specs,
arm/coff-rdimon.specs, arm/elf-rdimon.specs: gcc specs files to go
with above mentioned support libs and startfiles.
2004-06-09 21:06:50 +02:00
|
|
|
#include "swi.h"
|
2005-07-18 18:18:17 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2004-06-09 Toralf Lund <toralf@procaptura.com>
* arm/crt0.S: Copied from newlib and it now also sets up stacks for
FIQ and IRQ mode, plus calls hardware_init_hook() and
software_init_hook() if present.
* arm/libcfunc.c, arm/swi.h, arm/syscalls.c: Copied
from newlib.
* arm/Makefile.in: Build crt0.o, rdpmon-crt0.o, rdimon-crt0.o,
librdpmon.a, librdimon.a - support file for "bare" setup, as well
as "RDP" and "RDI" monitors.
* arm/coff-rdpmon.specs, arm/elf-rdpmon.specs,
arm/coff-rdimon.specs, arm/elf-rdimon.specs: gcc specs files to go
with above mentioned support libs and startfiles.
2004-06-09 21:06:50 +02:00
|
|
|
|
2005-07-18 18:18:17 +02:00
|
|
|
unsigned __attribute__((weak))
|
|
|
|
alarm (unsigned seconds)
|
|
|
|
{
|
|
|
|
(void)seconds;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-12-01 00:37:14 +01:00
|
|
|
clock_t _clock(void);
|
|
|
|
clock_t __attribute__((weak))
|
|
|
|
clock(void)
|
|
|
|
{
|
|
|
|
return _clock();
|
|
|
|
}
|
|
|
|
|
2005-08-02 21:28:31 +02:00
|
|
|
int _isatty(int fildes);
|
|
|
|
int __attribute__((weak))
|
|
|
|
isatty(int fildes)
|
|
|
|
{
|
2005-11-17 19:56:41 +01:00
|
|
|
return _isatty(fildes);
|
2005-08-02 21:28:31 +02:00
|
|
|
}
|
|
|
|
|
2005-07-18 18:18:17 +02:00
|
|
|
int __attribute__((weak))
|
2005-12-01 00:37:14 +01:00
|
|
|
pause(void)
|
2004-06-09 Toralf Lund <toralf@procaptura.com>
* arm/crt0.S: Copied from newlib and it now also sets up stacks for
FIQ and IRQ mode, plus calls hardware_init_hook() and
software_init_hook() if present.
* arm/libcfunc.c, arm/swi.h, arm/syscalls.c: Copied
from newlib.
* arm/Makefile.in: Build crt0.o, rdpmon-crt0.o, rdimon-crt0.o,
librdpmon.a, librdimon.a - support file for "bare" setup, as well
as "RDP" and "RDI" monitors.
* arm/coff-rdpmon.specs, arm/elf-rdpmon.specs,
arm/coff-rdimon.specs, arm/elf-rdimon.specs: gcc specs files to go
with above mentioned support libs and startfiles.
2004-06-09 21:06:50 +02:00
|
|
|
{
|
2005-07-18 18:18:17 +02:00
|
|
|
errno = ENOSYS;
|
|
|
|
return -1;
|
2004-06-09 Toralf Lund <toralf@procaptura.com>
* arm/crt0.S: Copied from newlib and it now also sets up stacks for
FIQ and IRQ mode, plus calls hardware_init_hook() and
software_init_hook() if present.
* arm/libcfunc.c, arm/swi.h, arm/syscalls.c: Copied
from newlib.
* arm/Makefile.in: Build crt0.o, rdpmon-crt0.o, rdimon-crt0.o,
librdpmon.a, librdimon.a - support file for "bare" setup, as well
as "RDP" and "RDI" monitors.
* arm/coff-rdpmon.specs, arm/elf-rdpmon.specs,
arm/coff-rdimon.specs, arm/elf-rdimon.specs: gcc specs files to go
with above mentioned support libs and startfiles.
2004-06-09 21:06:50 +02:00
|
|
|
}
|
2005-12-01 00:37:14 +01:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
unsigned __attribute__((weak))
|
|
|
|
sleep(unsigned seconds)
|
|
|
|
{
|
|
|
|
clock_t t0 = _clock();
|
|
|
|
clock_t dt = seconds * CLOCKS_PER_SEC;
|
|
|
|
|
|
|
|
while (_clock() - t0 < dt);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int __attribute__((weak))
|
|
|
|
usleep(useconds_t useconds)
|
|
|
|
{
|
|
|
|
clock_t t0 = _clock();
|
|
|
|
clock_t dt = useconds / (1000000/CLOCKS_PER_SEC);
|
|
|
|
|
|
|
|
while (_clock() - t0 < dt);
|
|
|
|
return 0;
|
|
|
|
}
|