Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ttyslot(3) [ultrix man page]

ttyname(3)						     Library Functions Manual							ttyname(3)

Name
       ttyname, isatty, ttyslot - find terminal name

Syntax
       char *ttyname(filedes)

       isatty(filedes)

       ttyslot()

Description
       The subroutine returns a pointer to the null-terminated path name of the terminal device associated with file descriptor filedes (this is a
       system file descriptor and has nothing to do with the standard I/O FILE typedef).

       The subroutine returns 1 if filedes is associated with a terminal device, 0 otherwise.

       The subroutine returns the number of the entry in the file for the control terminal of the current process.

Restrictions
       The return value points to static data whose content is overwritten by each call.

Diagnostics
       The subroutine returns a null pointer (0) if filedes does not describe a terminal device in directory

       The subroutine returns 0 if is inaccessible or if it cannot determine the control terminal.

Files
       /dev/*
       /etc/ttys

See Also
       ioctl(2), ttys(5)

																	ttyname(3)

Check Out this Related Man Page

TTYNAME(3)						   BSD Library Functions Manual 						TTYNAME(3)

NAME
isatty, ttyname, ttyslot -- get name of associated terminal (tty) from file descriptor LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <unistd.h> int isatty(int fildes); char * ttyname(int fildes); int ttyslot(void); DESCRIPTION
These functions operate on the system file descriptors for terminal type devices. These descriptors are not related to the standard I/O FILE typedef, but refer to the special device files found in /dev and named /dev/ttyxx and for which an entry exists in the initialization file /etc/ttys. (See ttys(5).) The isatty() function determines if the file descriptor fildes refers to a valid terminal type device. The ttyname() function gets the related device name of a file descriptor for which isatty() is true. The ttyslot() function fetches the current process' control terminal number from the ttys(5) file entry. RETURN VALUES
The ttyname() function returns the null terminated name if the device is found and isatty() is true; otherwise, a NULL pointer is returned. The ttyslot() function returns the unit number of the device file if found; otherwise, the value zero is returned. FILES
/dev/* /etc/ttys SEE ALSO
ioctl(2), ttys(5) HISTORY
A isatty(), ttyname(), and ttyslot() function appeared in Version 7 AT&T UNIX. BUGS
The ttyname() function leaves its result in an internal static object and returns a pointer to that object. Subsequent calls to ttyname() will modify the same object. BSD
June 4, 1993 BSD
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

A short history of UNIX by l.madden@ic.ac.uk

<h1>A short history of UNIX</h1> <p>In the late 1960's Ken Thompsom joined the computing-science research group at Bell Laboratories, which is the research arm of the giant American corporation ATT. He and many colleagues had been collaborating with MIT and GE on the development of an... (0 Replies)
Discussion started by: Neo
0 Replies

2. Answers to Frequently Asked Questions

Lost root password / Can't login as root

We have quite a few threads about this subject. I have collected some of them and arranged them by the OS which is primarily discussed in the thread. That is because the exact procedure depends on the OS involved. What's more, since you often need to interact with the boot process, the... (0 Replies)
Discussion started by: Perderabo
0 Replies

3. Programming

How do you detect keystrokes in canonical mode?

I'm writing a command shell, and I want to be able to detect when the user presses an arrow key (otherwise it just prints [[A, [[B, etc.). I know it's relatively easy (although somewhat more time-consuming) to detect keystrokes in noncanonical mode, but I've noticed that the bash shell detects... (4 Replies)
Discussion started by: Ultrix
4 Replies

4. UNIX for Dummies Questions & Answers

Linux (Ubuntu) = Unix (NOT IMPORTANT - NO RUSH)

I'm learning off Linux (Ubuntu) right now. I want to move up to Unix, but I don't want to rush like I did when it came to Windows --> to Linux. What is the best Unix OS that fits in pretty well with Ubuntu. In other words is there kind of an equal Linux with Unix? Also what do I need to... (10 Replies)
Discussion started by: Linux_Guy
10 Replies

5. IP Networking

Can I change my hostname without messing things up?

I noticed my hostname is <my-full-name>s-macbook.local. I'm not sure exactly what information leaves the local network, and whether the hostname is included, but if it is, this would mean people on the Internet can look at my hostname and see who I am. Before anyone says that's not possible,... (4 Replies)
Discussion started by: Ultrix
4 Replies