2006-06-13 Sandra Loosemore <sandra@codesourcery.com>
* arm/syscalls.c (_unlink, isatty, _system, _rename): Make them do something useful in the ARM_RDI_MONITOR case.
This commit is contained in:
parent
c4cac45fe9
commit
73c20c325d
|
@ -1,3 +1,8 @@
|
||||||
|
2006-06-13 Sandra Loosemore <sandra@codesourcery.com>
|
||||||
|
|
||||||
|
* arm/syscalls.c (_unlink, isatty, _system, _rename):
|
||||||
|
Make them do something useful in the ARM_RDI_MONITOR case.
|
||||||
|
|
||||||
2006-06-08 Fred Fish <fnf@specifix.com>
|
2006-06-08 Fred Fish <fnf@specifix.com>
|
||||||
|
|
||||||
* mips/idt.ld, mips/idt32.ld, mips/idt64.ld, mips/nullmon.ld,
|
* mips/idt.ld, mips/idt32.ld, mips/idt64.ld, mips/nullmon.ld,
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include <reent.h>
|
#include <reent.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <sys/wait.h>
|
||||||
#include "swi.h"
|
#include "swi.h"
|
||||||
|
|
||||||
/* Forward prototypes. */
|
/* Forward prototypes. */
|
||||||
|
@ -567,7 +568,10 @@ int
|
||||||
_unlink (const char *path)
|
_unlink (const char *path)
|
||||||
{
|
{
|
||||||
#ifdef ARM_RDI_MONITOR
|
#ifdef ARM_RDI_MONITOR
|
||||||
return do_AngelSWI (AngelSWI_Reason_Remove, &path);
|
int block[2];
|
||||||
|
block[0] = path;
|
||||||
|
block[1] = strlen(path);
|
||||||
|
return wrap (do_AngelSWI (AngelSWI_Reason_Remove, block)) ? -1 : 0;
|
||||||
#else
|
#else
|
||||||
(void)path;
|
(void)path;
|
||||||
asm ("swi %a0" :: "i" (SWI_Remove));
|
asm ("swi %a0" :: "i" (SWI_Remove));
|
||||||
|
@ -638,11 +642,14 @@ _times (struct tms * tp)
|
||||||
int
|
int
|
||||||
_isatty (int fd)
|
_isatty (int fd)
|
||||||
{
|
{
|
||||||
|
int fh = remap_handle (fd);
|
||||||
#ifdef ARM_RDI_MONITOR
|
#ifdef ARM_RDI_MONITOR
|
||||||
return do_AngelSWI (AngelSWI_Reason_IsTTY, &fd);
|
return wrap (do_AngelSWI (AngelSWI_Reason_IsTTY, &fh));
|
||||||
#else
|
#else
|
||||||
(void)fd;
|
asm ("mov r0, %1; swi %a0"
|
||||||
asm ("swi %a0" :: "i" (SWI_IsTTY));
|
: /* No outputs */
|
||||||
|
: "i" (SWI_IsTTY), "r"(fh)
|
||||||
|
: "r0");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -650,7 +657,28 @@ int
|
||||||
_system (const char *s)
|
_system (const char *s)
|
||||||
{
|
{
|
||||||
#ifdef ARM_RDI_MONITOR
|
#ifdef ARM_RDI_MONITOR
|
||||||
return do_AngelSWI (AngelSWI_Reason_System, &s);
|
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 */
|
||||||
|
block[0] = s;
|
||||||
|
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;
|
||||||
#else
|
#else
|
||||||
(void)s;
|
(void)s;
|
||||||
asm ("swi %a0" :: "i" (SWI_CLI));
|
asm ("swi %a0" :: "i" (SWI_CLI));
|
||||||
|
@ -661,8 +689,12 @@ int
|
||||||
_rename (const char * oldpath, const char * newpath)
|
_rename (const char * oldpath, const char * newpath)
|
||||||
{
|
{
|
||||||
#ifdef ARM_RDI_MONITOR
|
#ifdef ARM_RDI_MONITOR
|
||||||
const char *block[2] = {oldpath, newpath};
|
int block[4];
|
||||||
return do_AngelSWI (AngelSWI_Reason_Rename, block);
|
block[0] = oldpath;
|
||||||
|
block[1] = strlen(oldpath);
|
||||||
|
block[2] = newpath;
|
||||||
|
block[3] = strlen(newpath);
|
||||||
|
return wrap (do_AngelSWI (AngelSWI_Reason_Rename, block)) ? -1 : 0;
|
||||||
#else
|
#else
|
||||||
(void)oldpath; (void)newpath;
|
(void)oldpath; (void)newpath;
|
||||||
asm ("swi %a0" :: "i" (SWI_Rename));
|
asm ("swi %a0" :: "i" (SWI_Rename));
|
||||||
|
|
Loading…
Reference in New Issue