Magellan Linux

Annotation of /trunk/mkinitrd-magellan/busybox/coreutils/tty.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (hide annotations) (download)
Sun May 30 11:32:42 2010 UTC (14 years ago) by niro
File MIME type: text/plain
File size: 1200 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
1 niro 532 /* vi: set sw=4 ts=4: */
2     /*
3     * tty implementation for busybox
4     *
5     * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
6     *
7     * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8     */
9    
10 niro 984 /* BB_AUDIT SUSv4 compliant */
11     /* http://www.opengroup.org/onlinepubs/9699919799/utilities/tty.html */
12 niro 532
13 niro 816 #include "libbb.h"
14 niro 532
15 niro 816 int tty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
16 niro 984 int tty_main(int argc UNUSED_PARAM, char **argv)
17 niro 532 {
18     const char *s;
19 niro 984 IF_INCLUDE_SUSv2(int silent;) /* Note: No longer relevant in SUSv3. */
20 niro 532 int retval;
21    
22     xfunc_error_retval = 2; /* SUSv3 requires > 1 for error. */
23    
24 niro 984 IF_INCLUDE_SUSv2(silent = getopt32(argv, "s");)
25     IF_INCLUDE_SUSv2(argv += optind;)
26     IF_NOT_INCLUDE_SUSv2(argv += 1;)
27 niro 532
28     /* gnu tty outputs a warning that it is ignoring all args. */
29 niro 984 bb_warn_ignoring_args(argv[0]);
30 niro 532
31 niro 984 retval = EXIT_SUCCESS;
32 niro 532
33 niro 984 s = xmalloc_ttyname(STDIN_FILENO);
34 niro 816 if (s == NULL) {
35     /* According to SUSv3, ttyname can fail with EBADF or ENOTTY.
36 niro 532 * We know the file descriptor is good, so failure means not a tty. */
37     s = "not a tty";
38 niro 984 retval = EXIT_FAILURE;
39 niro 532 }
40 niro 984 IF_INCLUDE_SUSv2(if (!silent) puts(s);)
41     IF_NOT_INCLUDE_SUSv2(puts(s);)
42 niro 532
43     fflush_stdout_and_exit(retval);
44     }