2005-08-02 Shaun Jackman <sjackman@gmail.com>
* libgloss/arm/libcfunc.c (isatty): New function.
This commit is contained in:
parent
0e77a3817f
commit
98bfe22095
|
@ -1,3 +1,7 @@
|
||||||
|
2005-08-02 Shaun Jackman <sjackman@gmail.com>
|
||||||
|
|
||||||
|
* libgloss/arm/libcfunc.c (isatty): New function.
|
||||||
|
|
||||||
2005-08-02 Shaun Jackman <sjackman@gmail.com>
|
2005-08-02 Shaun Jackman <sjackman@gmail.com>
|
||||||
|
|
||||||
* libgloss/arm/syscalls.c (_exit): Call _kill with the second
|
* libgloss/arm/syscalls.c (_exit): Call _kill with the second
|
||||||
|
|
|
@ -43,6 +43,16 @@ alarm (unsigned seconds)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int _isatty(int fildes);
|
||||||
|
int __attribute__((weak))
|
||||||
|
isatty(int fildes)
|
||||||
|
{
|
||||||
|
/* GDB does not yet support the IsTTY SWI that _isatty
|
||||||
|
* calls, so always return true for now. */
|
||||||
|
(void)fildes;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
int __attribute__((weak))
|
int __attribute__((weak))
|
||||||
pause (void)
|
pause (void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue