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-10 03:06:50 +08:00
|
|
|
/* Support files for GNU libc. Files in the system namespace go here.
|
|
|
|
Files in the C namespace (ie those that do not start with an
|
|
|
|
underscore) go in .c. */
|
|
|
|
|
|
|
|
#include <_ansi.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <stdio.h>
|
2005-07-19 00:18:17 +08:00
|
|
|
#include <string.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-10 03:06:50 +08:00
|
|
|
#include <time.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/times.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <reent.h>
|
|
|
|
#include <unistd.h>
|
2006-06-14 04:51:08 +08:00
|
|
|
#include <sys/wait.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-10 03:06:50 +08:00
|
|
|
#include "swi.h"
|
|
|
|
|
|
|
|
/* Forward prototypes. */
|
|
|
|
int _system _PARAMS ((const char *));
|
|
|
|
int _rename _PARAMS ((const char *, const char *));
|
2005-07-19 00:18:17 +08:00
|
|
|
int _isatty _PARAMS ((int));
|
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-10 03:06:50 +08:00
|
|
|
clock_t _times _PARAMS ((struct tms *));
|
|
|
|
int _gettimeofday _PARAMS ((struct timeval *, struct timezone *));
|
2005-07-19 00:18:17 +08:00
|
|
|
int _unlink _PARAMS ((const char *));
|
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-10 03:06:50 +08:00
|
|
|
int _link _PARAMS ((void));
|
|
|
|
int _stat _PARAMS ((const char *, struct stat *));
|
|
|
|
int _fstat _PARAMS ((int, struct stat *));
|
|
|
|
caddr_t _sbrk _PARAMS ((int));
|
|
|
|
int _getpid _PARAMS ((int));
|
|
|
|
int _close _PARAMS ((int));
|
2005-12-01 07:37:14 +08:00
|
|
|
clock_t _clock _PARAMS ((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-10 03:06:50 +08:00
|
|
|
int _swiclose _PARAMS ((int));
|
|
|
|
int _open _PARAMS ((const char *, int, ...));
|
|
|
|
int _swiopen _PARAMS ((const char *, int));
|
|
|
|
int _write _PARAMS ((int, char *, int));
|
|
|
|
int _swiwrite _PARAMS ((int, char *, int));
|
|
|
|
int _lseek _PARAMS ((int, int, int));
|
|
|
|
int _swilseek _PARAMS ((int, int, int));
|
|
|
|
int _read _PARAMS ((int, char *, int));
|
|
|
|
int _swiread _PARAMS ((int, char *, int));
|
|
|
|
void initialise_monitor_handles _PARAMS ((void));
|
|
|
|
|
|
|
|
static int wrap _PARAMS ((int));
|
|
|
|
static int error _PARAMS ((int));
|
|
|
|
static int get_errno _PARAMS ((void));
|
|
|
|
static int remap_handle _PARAMS ((int));
|
|
|
|
static int findslot _PARAMS ((int));
|
|
|
|
|
|
|
|
/* Register name faking - works in collusion with the linker. */
|
|
|
|
register char * stack_ptr asm ("sp");
|
|
|
|
|
|
|
|
|
|
|
|
/* following is copied from libc/stdio/local.h to check std streams */
|
|
|
|
extern void _EXFUN(__sinit,(struct _reent *));
|
2005-02-09 03:38:47 +08:00
|
|
|
#define CHECK_INIT(ptr) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if ((ptr) && !(ptr)->__sdidinit) \
|
|
|
|
__sinit (ptr); \
|
|
|
|
} \
|
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-10 03:06:50 +08:00
|
|
|
while (0)
|
|
|
|
|
|
|
|
/* Adjust our internal handles to stay away from std* handles. */
|
|
|
|
#define FILE_HANDLE_OFFSET (0x20)
|
|
|
|
|
|
|
|
static int monitor_stdin;
|
|
|
|
static int monitor_stdout;
|
|
|
|
static int monitor_stderr;
|
|
|
|
|
|
|
|
/* Struct used to keep track of the file position, just so we
|
|
|
|
can implement fseek(fh,x,SEEK_CUR). */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int handle;
|
|
|
|
int pos;
|
|
|
|
}
|
|
|
|
poslog;
|
|
|
|
|
|
|
|
#define MAX_OPEN_FILES 20
|
|
|
|
static poslog openfiles [MAX_OPEN_FILES];
|
|
|
|
|
|
|
|
static int
|
|
|
|
findslot (int fh)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < MAX_OPEN_FILES; i ++)
|
|
|
|
if (openfiles[i].handle == fh)
|
|
|
|
break;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Function to convert std(in|out|err) handles to internal versions. */
|
|
|
|
static int
|
|
|
|
remap_handle (int fh)
|
|
|
|
{
|
2005-02-09 03:38:47 +08:00
|
|
|
CHECK_INIT(_REENT);
|
|
|
|
|
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-10 03:06:50 +08:00
|
|
|
if (fh == STDIN_FILENO)
|
|
|
|
return monitor_stdin;
|
|
|
|
if (fh == STDOUT_FILENO)
|
|
|
|
return monitor_stdout;
|
|
|
|
if (fh == STDERR_FILENO)
|
|
|
|
return monitor_stderr;
|
|
|
|
|
|
|
|
return fh - FILE_HANDLE_OFFSET;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
initialise_monitor_handles (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2005-08-17 02:05:35 +08:00
|
|
|
/* Open the standard file descriptors by opening the special
|
|
|
|
* teletype device, ":tt", read-only to obtain a descritpor for
|
|
|
|
* standard input and write-only to obtain a descriptor for standard
|
|
|
|
* output. Finally, open ":tt" in append mode to obtain a descriptor
|
|
|
|
* for standard error. Since this is a write mode, most kernels will
|
|
|
|
* probably return the same value as for standard output, but the
|
|
|
|
* kernel can differentiate the two using the mode flag and return a
|
|
|
|
* different descriptor for standard error.
|
|
|
|
*/
|
|
|
|
|
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-10 03:06:50 +08:00
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
int volatile block[3];
|
|
|
|
|
|
|
|
block[0] = (int) ":tt";
|
|
|
|
block[2] = 3; /* length of filename */
|
|
|
|
block[1] = 0; /* mode "r" */
|
|
|
|
monitor_stdin = do_AngelSWI (AngelSWI_Reason_Open, (void *) block);
|
|
|
|
|
|
|
|
block[0] = (int) ":tt";
|
|
|
|
block[2] = 3; /* length of filename */
|
|
|
|
block[1] = 4; /* mode "w" */
|
2005-08-17 02:05:35 +08:00
|
|
|
monitor_stdout = do_AngelSWI (AngelSWI_Reason_Open, (void *) block);
|
|
|
|
|
|
|
|
block[0] = (int) ":tt";
|
|
|
|
block[2] = 3; /* length of filename */
|
|
|
|
block[1] = 8; /* mode "a" */
|
|
|
|
monitor_stderr = do_AngelSWI (AngelSWI_Reason_Open, (void *) block);
|
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-10 03:06:50 +08:00
|
|
|
#else
|
|
|
|
int fh;
|
|
|
|
const char * name;
|
|
|
|
|
|
|
|
name = ":tt";
|
|
|
|
asm ("mov r0,%2; mov r1, #0; swi %a1; mov %0, r0"
|
|
|
|
: "=r"(fh)
|
|
|
|
: "i" (SWI_Open),"r"(name)
|
|
|
|
: "r0","r1");
|
|
|
|
monitor_stdin = fh;
|
|
|
|
|
|
|
|
name = ":tt";
|
|
|
|
asm ("mov r0,%2; mov r1, #4; swi %a1; mov %0, r0"
|
|
|
|
: "=r"(fh)
|
|
|
|
: "i" (SWI_Open),"r"(name)
|
|
|
|
: "r0","r1");
|
2005-08-17 02:05:35 +08:00
|
|
|
monitor_stdout = fh;
|
|
|
|
|
|
|
|
name = ":tt";
|
|
|
|
asm ("mov r0,%2; mov r1, #8; swi %a1; mov %0, r0"
|
|
|
|
: "=r"(fh)
|
|
|
|
: "i" (SWI_Open),"r"(name)
|
|
|
|
: "r0","r1");
|
|
|
|
monitor_stderr = fh;
|
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-10 03:06:50 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_OPEN_FILES; i ++)
|
|
|
|
openfiles[i].handle = -1;
|
|
|
|
|
|
|
|
openfiles[0].handle = monitor_stdin;
|
|
|
|
openfiles[0].pos = 0;
|
|
|
|
openfiles[1].handle = monitor_stdout;
|
|
|
|
openfiles[1].pos = 0;
|
2005-08-17 02:05:35 +08:00
|
|
|
openfiles[2].handle = monitor_stderr;
|
|
|
|
openfiles[2].pos = 0;
|
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-10 03:06:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
get_errno (void)
|
|
|
|
{
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
return do_AngelSWI (AngelSWI_Reason_Errno, NULL);
|
|
|
|
#else
|
2005-04-29 02:40:39 +08:00
|
|
|
register r0 asm("r0");
|
2005-05-06 07:15:53 +08:00
|
|
|
asm ("swi %a1" : "=r"(r0) : "i" (SWI_GetErrno));
|
2005-04-29 02:40:39 +08:00
|
|
|
return r0;
|
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-10 03:06:50 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
error (int result)
|
|
|
|
{
|
|
|
|
errno = get_errno ();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
wrap (int result)
|
|
|
|
{
|
|
|
|
if (result == -1)
|
|
|
|
return error (-1);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns # chars not! written. */
|
|
|
|
int
|
|
|
|
_swiread (int file,
|
|
|
|
char * ptr,
|
|
|
|
int len)
|
|
|
|
{
|
|
|
|
int fh = remap_handle (file);
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
int block[3];
|
|
|
|
|
|
|
|
block[0] = fh;
|
|
|
|
block[1] = (int) ptr;
|
|
|
|
block[2] = len;
|
|
|
|
|
|
|
|
return do_AngelSWI (AngelSWI_Reason_Read, block);
|
|
|
|
#else
|
|
|
|
asm ("mov r0, %1; mov r1, %2;mov r2, %3; swi %a0"
|
|
|
|
: /* No outputs */
|
|
|
|
: "i"(SWI_Read), "r"(fh), "r"(ptr), "r"(len)
|
|
|
|
: "r0","r1","r2");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_read (int file,
|
|
|
|
char * ptr,
|
|
|
|
int len)
|
|
|
|
{
|
|
|
|
int slot = findslot (remap_handle (file));
|
|
|
|
int x = _swiread (file, ptr, len);
|
|
|
|
|
|
|
|
if (x < 0)
|
|
|
|
return error (-1);
|
|
|
|
|
|
|
|
if (slot != MAX_OPEN_FILES)
|
|
|
|
openfiles [slot].pos += len - x;
|
|
|
|
|
|
|
|
/* x == len is not an error, at least if we want feof() to work. */
|
|
|
|
return len - x;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_swilseek (int file,
|
|
|
|
int ptr,
|
|
|
|
int dir)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
int fh = remap_handle (file);
|
|
|
|
int slot = findslot (fh);
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
int block[2];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (dir == SEEK_CUR)
|
|
|
|
{
|
|
|
|
if (slot == MAX_OPEN_FILES)
|
|
|
|
return -1;
|
|
|
|
ptr = openfiles[slot].pos + ptr;
|
|
|
|
dir = SEEK_SET;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
if (dir == SEEK_END)
|
|
|
|
{
|
|
|
|
block[0] = fh;
|
|
|
|
ptr += do_AngelSWI (AngelSWI_Reason_FLen, block);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This code only does absolute seeks. */
|
|
|
|
block[0] = remap_handle (file);
|
|
|
|
block[1] = ptr;
|
|
|
|
res = do_AngelSWI (AngelSWI_Reason_Seek, block);
|
|
|
|
#else
|
|
|
|
if (dir == SEEK_END)
|
|
|
|
{
|
|
|
|
asm ("mov r0, %2; swi %a1; mov %0, r0"
|
|
|
|
: "=r" (res)
|
|
|
|
: "i" (SWI_Flen), "r" (fh)
|
|
|
|
: "r0");
|
|
|
|
ptr += res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This code only does absolute seeks. */
|
|
|
|
asm ("mov r0, %2; mov r1, %3; swi %a1; mov %0, r0"
|
|
|
|
: "=r" (res)
|
|
|
|
: "i" (SWI_Seek), "r" (fh), "r" (ptr)
|
|
|
|
: "r0", "r1");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (slot != MAX_OPEN_FILES && res == 0)
|
|
|
|
openfiles[slot].pos = ptr;
|
|
|
|
|
|
|
|
/* This is expected to return the position in the file. */
|
|
|
|
return res == 0 ? ptr : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_lseek (int file,
|
|
|
|
int ptr,
|
|
|
|
int dir)
|
|
|
|
{
|
|
|
|
return wrap (_swilseek (file, ptr, dir));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns #chars not! written. */
|
|
|
|
int
|
|
|
|
_swiwrite (
|
|
|
|
int file,
|
|
|
|
char * ptr,
|
|
|
|
int len)
|
|
|
|
{
|
|
|
|
int fh = remap_handle (file);
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
int block[3];
|
|
|
|
|
|
|
|
block[0] = fh;
|
|
|
|
block[1] = (int) ptr;
|
|
|
|
block[2] = len;
|
|
|
|
|
|
|
|
return do_AngelSWI (AngelSWI_Reason_Write, block);
|
|
|
|
#else
|
|
|
|
asm ("mov r0, %1; mov r1, %2;mov r2, %3; swi %a0"
|
|
|
|
: /* No outputs */
|
|
|
|
: "i"(SWI_Write), "r"(fh), "r"(ptr), "r"(len)
|
|
|
|
: "r0","r1","r2");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_write (int file,
|
|
|
|
char * ptr,
|
|
|
|
int len)
|
|
|
|
{
|
|
|
|
int slot = findslot (remap_handle (file));
|
|
|
|
int x = _swiwrite (file, ptr,len);
|
|
|
|
|
|
|
|
if (x == -1 || x == len)
|
|
|
|
return error (-1);
|
|
|
|
|
|
|
|
if (slot != MAX_OPEN_FILES)
|
|
|
|
openfiles[slot].pos += len - x;
|
|
|
|
|
|
|
|
return len - x;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_swiopen (const char * path,
|
|
|
|
int flags)
|
|
|
|
{
|
|
|
|
int aflags = 0, fh;
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
int block[3];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int i = findslot (-1);
|
|
|
|
|
|
|
|
if (i == MAX_OPEN_FILES)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* The flags are Unix-style, so we need to convert them. */
|
|
|
|
#ifdef O_BINARY
|
|
|
|
if (flags & O_BINARY)
|
|
|
|
aflags |= 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (flags & O_RDWR)
|
|
|
|
aflags |= 2;
|
|
|
|
|
|
|
|
if (flags & O_CREAT)
|
|
|
|
aflags |= 4;
|
|
|
|
|
|
|
|
if (flags & O_TRUNC)
|
|
|
|
aflags |= 4;
|
|
|
|
|
|
|
|
if (flags & O_APPEND)
|
|
|
|
{
|
|
|
|
aflags &= ~4; /* Can't ask for w AND a; means just 'a'. */
|
|
|
|
aflags |= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
block[0] = (int) path;
|
|
|
|
block[2] = strlen (path);
|
|
|
|
block[1] = aflags;
|
|
|
|
|
|
|
|
fh = do_AngelSWI (AngelSWI_Reason_Open, block);
|
|
|
|
|
|
|
|
#else
|
|
|
|
asm ("mov r0,%2; mov r1, %3; swi %a1; mov %0, r0"
|
|
|
|
: "=r"(fh)
|
|
|
|
: "i" (SWI_Open),"r"(path),"r"(aflags)
|
|
|
|
: "r0","r1");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (fh >= 0)
|
|
|
|
{
|
|
|
|
openfiles[i].handle = fh;
|
|
|
|
openfiles[i].pos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fh >= 0 ? fh + FILE_HANDLE_OFFSET : error (fh);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_open (const char * path,
|
|
|
|
int flags,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
return wrap (_swiopen (path, flags));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_swiclose (int file)
|
|
|
|
{
|
|
|
|
int myhan = remap_handle (file);
|
|
|
|
int slot = findslot (myhan);
|
|
|
|
|
|
|
|
if (slot != MAX_OPEN_FILES)
|
|
|
|
openfiles[slot].handle = -1;
|
|
|
|
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
return do_AngelSWI (AngelSWI_Reason_Close, & myhan);
|
|
|
|
#else
|
|
|
|
asm ("mov r0, %1; swi %a0" :: "i" (SWI_Close),"r"(myhan):"r0");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_close (int file)
|
|
|
|
{
|
|
|
|
return wrap (_swiclose (file));
|
|
|
|
}
|
|
|
|
|
2005-07-19 00:18:17 +08:00
|
|
|
int __attribute__((weak))
|
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-10 03:06:50 +08:00
|
|
|
_getpid (int n)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
n = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
caddr_t
|
|
|
|
_sbrk (int incr)
|
|
|
|
{
|
|
|
|
extern char end asm ("end"); /* Defined by the linker. */
|
|
|
|
static char * heap_end;
|
|
|
|
char * prev_heap_end;
|
|
|
|
|
|
|
|
if (heap_end == NULL)
|
|
|
|
heap_end = & end;
|
|
|
|
|
|
|
|
prev_heap_end = heap_end;
|
|
|
|
|
|
|
|
if (heap_end + incr > stack_ptr)
|
|
|
|
{
|
|
|
|
/* Some of the libstdc++-v3 tests rely upon detecting
|
|
|
|
out of memory errors, so do not abort here. */
|
|
|
|
#if 0
|
|
|
|
extern void abort (void);
|
|
|
|
|
|
|
|
_write (1, "_sbrk: Heap and stack collision\n", 32);
|
|
|
|
|
|
|
|
abort ();
|
|
|
|
#else
|
|
|
|
errno = ENOMEM;
|
|
|
|
return (caddr_t) -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
heap_end += incr;
|
|
|
|
|
|
|
|
return (caddr_t) prev_heap_end;
|
|
|
|
}
|
|
|
|
|
2005-07-19 00:18:17 +08:00
|
|
|
int __attribute__((weak))
|
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-10 03:06:50 +08:00
|
|
|
_fstat (int file, struct stat * st)
|
|
|
|
{
|
|
|
|
memset (st, 0, sizeof (* st));
|
|
|
|
st->st_mode = S_IFCHR;
|
|
|
|
st->st_blksize = 1024;
|
|
|
|
return 0;
|
|
|
|
file = file;
|
|
|
|
}
|
|
|
|
|
2005-07-19 00:18:17 +08:00
|
|
|
int __attribute__((weak))
|
|
|
|
_stat (const char *fname, struct stat *st)
|
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-10 03:06:50 +08:00
|
|
|
{
|
|
|
|
int file;
|
|
|
|
|
|
|
|
/* The best we can do is try to open the file readonly. If it exists,
|
|
|
|
then we can guess a few things about it. */
|
|
|
|
if ((file = _open (fname, O_RDONLY)) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
memset (st, 0, sizeof (* st));
|
|
|
|
st->st_mode = S_IFREG | S_IREAD;
|
|
|
|
st->st_blksize = 1024;
|
|
|
|
_swiclose (file); /* Not interested in the error. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-07-19 00:18:17 +08:00
|
|
|
int __attribute__((weak))
|
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-10 03:06:50 +08:00
|
|
|
_link (void)
|
|
|
|
{
|
2005-07-19 00:18:17 +08:00
|
|
|
errno = ENOSYS;
|
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-10 03:06:50 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-07-19 00:18:17 +08:00
|
|
|
_unlink (const char *path)
|
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-10 03:06:50 +08:00
|
|
|
{
|
2005-07-19 00:18:17 +08:00
|
|
|
#ifdef ARM_RDI_MONITOR
|
2006-06-14 04:51:08 +08:00
|
|
|
int block[2];
|
2006-12-26 07:03:21 +08:00
|
|
|
block[0] = (int)path;
|
2006-06-14 04:51:08 +08:00
|
|
|
block[1] = strlen(path);
|
|
|
|
return wrap (do_AngelSWI (AngelSWI_Reason_Remove, block)) ? -1 : 0;
|
2005-07-19 00:18:17 +08:00
|
|
|
#else
|
|
|
|
(void)path;
|
|
|
|
asm ("swi %a0" :: "i" (SWI_Remove));
|
|
|
|
#endif
|
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-10 03:06:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_gettimeofday (struct timeval * tp, struct timezone * tzp)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (tp)
|
|
|
|
{
|
|
|
|
/* Ask the host for the seconds since the Unix epoch. */
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
tp->tv_sec = do_AngelSWI (AngelSWI_Reason_Time,NULL);
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
int value;
|
|
|
|
asm ("swi %a1; mov %0, r0" : "=r" (value): "i" (SWI_Time) : "r0");
|
|
|
|
tp->tv_sec = value;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
tp->tv_usec = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return fixed data for the timezone. */
|
|
|
|
if (tzp)
|
|
|
|
{
|
|
|
|
tzp->tz_minuteswest = 0;
|
|
|
|
tzp->tz_dsttime = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a clock that ticks at 100Hz. */
|
|
|
|
clock_t
|
2005-12-01 07:37:14 +08:00
|
|
|
_clock (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-10 03:06:50 +08:00
|
|
|
{
|
|
|
|
clock_t timeval;
|
|
|
|
|
|
|
|
#ifdef ARM_RDI_MONITOR
|
|
|
|
timeval = do_AngelSWI (AngelSWI_Reason_Clock,NULL);
|
|
|
|
#else
|
|
|
|
asm ("swi %a1; mov %0, r0" : "=r" (timeval): "i" (SWI_Clock) : "r0");
|
|
|
|
#endif
|
2005-12-01 07:37:14 +08:00
|
|
|
return timeval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a clock that ticks at 100Hz. */
|
|
|
|
clock_t
|
|
|
|
_times (struct tms * tp)
|
|
|
|
{
|
|
|
|
clock_t timeval = _clock();
|
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-10 03:06:50 +08:00
|
|
|
|
|
|
|
if (tp)
|
|
|
|
{
|
|
|
|
tp->tms_utime = timeval; /* user time */
|
|
|
|
tp->tms_stime = 0; /* system time */
|
|
|
|
tp->tms_cutime = 0; /* user time, children */
|
|
|
|
tp->tms_cstime = 0; /* system time, children */
|
|
|
|
}
|
|
|
|
|
|
|
|
return timeval;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2005-07-19 00:18:17 +08:00
|
|
|
_isatty (int fd)
|
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-10 03:06:50 +08:00
|
|
|
{
|
2006-06-14 04:51:08 +08:00
|
|
|
int fh = remap_handle (fd);
|
2005-07-19 00:18:17 +08:00
|
|
|
#ifdef ARM_RDI_MONITOR
|
2006-06-14 04:51:08 +08:00
|
|
|
return wrap (do_AngelSWI (AngelSWI_Reason_IsTTY, &fh));
|
2005-07-19 00:18:17 +08:00
|
|
|
#else
|
2006-06-14 04:51:08 +08:00
|
|
|
asm ("mov r0, %1; swi %a0"
|
|
|
|
: /* No outputs */
|
|
|
|
: "i" (SWI_IsTTY), "r"(fh)
|
|
|
|
: "r0");
|
2005-07-19 00:18:17 +08:00
|
|
|
#endif
|
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-10 03:06:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_system (const char *s)
|
|
|
|
{
|
2005-07-19 00:18:17 +08:00
|
|
|
#ifdef ARM_RDI_MONITOR
|
2006-06-14 04:51:08 +08:00
|
|
|
int block[2];
|
|
|
|
int e;
|
|
|
|
|
|
|
|
/* Hmmm. The ARM debug interface specification doesn't say whether
|
|
|
|
SYS_SYSTEM does the right thing with a null argument, or assign any
|
|
|
|
meaning to its return value. Try to do something reasonable.... */
|
|
|
|
if (!s)
|
|
|
|
return 1; /* maybe there is a shell available? we can hope. :-P */
|
2006-12-26 07:03:21 +08:00
|
|
|
block[0] = (int)s;
|
2006-06-14 04:51:08 +08:00
|
|
|
block[1] = strlen (s);
|
|
|
|
e = wrap (do_AngelSWI (AngelSWI_Reason_System, block));
|
|
|
|
if ((e >= 0) && (e < 256))
|
|
|
|
{
|
|
|
|
/* We have to convert e, an exit status to the encoded status of
|
|
|
|
the command. To avoid hard coding the exit status, we simply
|
|
|
|
loop until we find the right position. */
|
|
|
|
int exit_code;
|
|
|
|
|
|
|
|
for (exit_code = e; e && WEXITSTATUS (e) != exit_code; e <<= 1)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return e;
|
2005-07-19 00:18:17 +08:00
|
|
|
#else
|
|
|
|
(void)s;
|
|
|
|
asm ("swi %a0" :: "i" (SWI_CLI));
|
|
|
|
#endif
|
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-10 03:06:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_rename (const char * oldpath, const char * newpath)
|
|
|
|
{
|
2005-07-19 00:18:17 +08:00
|
|
|
#ifdef ARM_RDI_MONITOR
|
2006-06-14 04:51:08 +08:00
|
|
|
int block[4];
|
2006-12-26 07:03:21 +08:00
|
|
|
block[0] = (int)oldpath;
|
2006-06-14 04:51:08 +08:00
|
|
|
block[1] = strlen(oldpath);
|
2006-12-26 07:03:21 +08:00
|
|
|
block[2] = (int)newpath;
|
2006-06-14 04:51:08 +08:00
|
|
|
block[3] = strlen(newpath);
|
|
|
|
return wrap (do_AngelSWI (AngelSWI_Reason_Rename, block)) ? -1 : 0;
|
2005-07-19 00:18:17 +08:00
|
|
|
#else
|
|
|
|
(void)oldpath; (void)newpath;
|
|
|
|
asm ("swi %a0" :: "i" (SWI_Rename));
|
|
|
|
#endif
|
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-10 03:06:50 +08:00
|
|
|
}
|