fcntl
fcntl — The fcntl and ioctl system calls
This module performs file control and I/O control on file descriptors. It is an interface to the fcntl()
and ioctl()
Unix routines. For a complete description of these calls, see fcntl(2) and ioctl(2) Unix manual pages.
All functions in this module take a file descriptor fd as their first argument. This can be an integer file descriptor, such as returned by sys.stdin.fileno()
, or an io.IOBase
object, such as sys.stdin
itself, which provides a fileno()
that returns a genuine file descriptor.