TIOCEXCL(2const) TIOCEXCL(2const)

TIOCEXCL, TIOCGEXCL, TIOCNXCL - exclusive mode

Standard C library (libc, -lc)

#include <asm/termbits.h>  /* Definition of TIOC*XCL constants */
#include <sys/ioctl.h>
int ioctl(int fd, TIOCEXCL);
int ioctl(int fd, TIOCGEXCL, int *argp);
int ioctl(int fd, TIOCNXCL);

Put the terminal into exclusive mode. No further open(2) operations on the terminal are permitted. (They fail with EBUSY, except for a process with the CAP_SYS_ADMIN capability.)
If the terminal is currently in exclusive mode, place a nonzero value in the location pointed to by argp; otherwise, place zero in *argp.
Disable exclusive mode.

On success, 0 is returned. On error, -1 is returned, and errno is set to indicate the error.

Linux 3.8.

ioctl(2), ioctl_tty(2)

2024-06-13 Linux man-pages 6.9.1