1TTYNAME(3) Linux Programmer's Manual TTYNAME(3)
2
3
4
6 ttyname, ttyname_r - return name of a terminal
7
9 #include <unistd.h>
10
11 char *ttyname(int fd);
12
13 int ttyname_r(int fd, char *buf, size_t buflen);
14
16 The function ttyname() returns a pointer to the null-terminated path‐
17 name of the terminal device that is open on the file descriptor fd, or
18 NULL on error (for example, if fd is not connected to a terminal). The
19 return value may point to static data, possibly overwritten by the next
20 call. The function ttyname_r() stores this pathname in the buffer buf
21 of length buflen.
22
24 The function ttyname() returns a pointer to a pathname on success. On
25 error, NULL is returned, and errno is set appropriately. The function
26 ttyname_r() returns 0 on success, and an error number upon error.
27
29 EBADF Bad file descriptor.
30
31 ENOTTY File descriptor does not refer to a terminal device.
32
33 ERANGE (ttyname_r()) buflen was too small to allow storing the path‐
34 name.
35
37 Multithreading (see pthreads(7))
38 The ttyname() function is not thread-safe.
39
40 The ttyname_r() function is thread-safe.
41
43 4.2BSD, POSIX.1-2001.
44
46 fstat(2), ctermid(3), isatty(3)
47
49 This page is part of release 3.53 of the Linux man-pages project. A
50 description of the project, and information about reporting bugs, can
51 be found at http://www.kernel.org/doc/man-pages/.
52
53
54
55Linux 2013-06-21 TTYNAME(3)