diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2008-01-03 22:33:37 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2008-01-03 22:33:37 +0000 |
commit | a639937a9ab176d7c38c1de7ef0d3b0d7643f856 (patch) | |
tree | fd9ae999b3c58f387d75c0f12136cf720013ceba /newlib/libc/sys/linux/isatty.c | |
parent | 7c8bd7a075a84a4d9010334b0f0cfc6cf45f49a7 (diff) | |
download | cygnal-a639937a9ab176d7c38c1de7ef0d3b0d7643f856.tar.gz cygnal-a639937a9ab176d7c38c1de7ef0d3b0d7643f856.tar.bz2 cygnal-a639937a9ab176d7c38c1de7ef0d3b0d7643f856.zip |
2008-01-03 Jeff Johnston <jjohnstn@redhat.com>
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.
Diffstat (limited to 'newlib/libc/sys/linux/isatty.c')
-rw-r--r-- | newlib/libc/sys/linux/isatty.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/newlib/libc/sys/linux/isatty.c b/newlib/libc/sys/linux/isatty.c new file mode 100644 index 000000000..45e09400e --- /dev/null +++ b/newlib/libc/sys/linux/isatty.c @@ -0,0 +1,34 @@ +/* Copyright (C) 1991, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + +#include <unistd.h> +#include <termios.h> + +#include <machine/weakalias.h> + +/* Return 1 if FD is a terminal, 0 if not. */ +int +__isatty (fd) + int fd; +{ + struct termios term; + + return tcgetattr (fd, &term) == 0; +} + +weak_alias (__isatty, isatty) |