mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
a639937a9a
Make isatty syscall handling consistent with other newlib syscalls. * libc/include/_syslist.h: Add _isatty. * libc/include/reent.h: Add _isatty_r. * libc/include/sys/unistd.h: Add _isatty. * libc/posix/Makefile.am: Add new _isatty.c file. * libc/posix/Makefile.in: Regenerated. * libc/posix/_isatty.c: New file. * libc/posix/isatty.c: Changed to call _isatty(). * libc/reent/Makefile.am: Add new isattyr.c file. * libc/reent/Makefile.in: Regenerated. * libc/reent/isattyr.c: New file. * libc/stdio/freopen.c: Changed to call _isatty_r(). * libc/stdio/makebuf.c: Ditto. * libc/sys/a29khif/_isatty.S: Change isatty to _isatty. * libc/sys/arc/isatty.c: Ditto. * libc/sys/arm/syscalls.c: Ditto. * libc/sys/d10v/syscalls.c: Ditto. * libc/sys/h8300hms/syscalls.c: Ditto. * libc/sys/h8500hms/syscalls.c: Ditto. * libc/sys/linux/Makefile.am: Add new isatty.c file. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/isatty.c: New file. * libc/syscalls/Makefile.am: Add new sysisatty.c file. * libc/syscalls/Makefile.in: Regenerated. * libc/syscalls/sysisatty.c: New file.
130 lines
1.4 KiB
C
130 lines
1.4 KiB
C
|
|
#include <_ansi.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
_read (file, ptr, len)
|
|
int file;
|
|
char *ptr;
|
|
size_t len;
|
|
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
int
|
|
_lseek (file, ptr, dir)
|
|
int file;
|
|
int ptr;
|
|
int dir;
|
|
|
|
{
|
|
return 0;
|
|
|
|
}
|
|
|
|
static
|
|
writechar (c)
|
|
char c;
|
|
|
|
|
|
{
|
|
register int n asm ("r3");
|
|
n = c;
|
|
asm ("clr.w r1;mov.w %0,r0; mov.w #6,r3; trapa #15": :"g" (n) : "r3","r1","r0");
|
|
}
|
|
|
|
|
|
|
|
int
|
|
_write (file, ptr, len)
|
|
int file;
|
|
char *ptr;
|
|
size_t len;
|
|
{
|
|
|
|
int todo;
|
|
|
|
for (todo = 0; todo < len; todo++)
|
|
{
|
|
writechar (*ptr++);
|
|
}
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
_close (file)
|
|
int file;
|
|
{
|
|
|
|
return -1;
|
|
}
|
|
|
|
|
|
|
|
caddr_t
|
|
_sbrk (incr)
|
|
size_t incr;
|
|
{
|
|
extern char end; /* Defined by the linker */
|
|
static char *heap_end;
|
|
char *prev_heap_end;
|
|
|
|
if (heap_end == 0)
|
|
{
|
|
heap_end = &end;
|
|
}
|
|
prev_heap_end = heap_end;
|
|
if (heap_end + incr > stack_ptr)
|
|
{
|
|
_write (1, "Heap and stack collision\n", 25);
|
|
abort ();
|
|
}
|
|
heap_end += incr;
|
|
return (caddr_t) prev_heap_end;
|
|
}
|
|
|
|
|
|
|
|
int
|
|
_isatty (file)
|
|
int file;
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
|
|
|
|
int
|
|
_fstat (file, stat)
|
|
int file;
|
|
struct stat *stat;
|
|
|
|
{
|
|
stat->st_mode = S_IFCHR;
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
_open (path, flags)
|
|
const char *path;
|
|
int flags;
|
|
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
void
|
|
_exit (status)
|
|
int status;
|
|
{
|
|
asm (" mov.w #33,r3; trapa #15");
|
|
}
|