2024-05-08 16:52:39 -03:00
|
|
|
:mod:`!fcntl` --- The ``fcntl`` and ``ioctl`` system calls
|
|
|
|
==========================================================
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
.. module:: fcntl
|
|
|
|
:platform: Unix
|
|
|
|
:synopsis: The fcntl() and ioctl() system calls.
|
|
|
|
|
2016-06-11 16:02:54 -03:00
|
|
|
.. sectionauthor:: Jaap Vermeulen
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
.. index::
|
Merged revisions 80030,80067,80069,80080-80081,80084,80432-80433,80465-80470,81059,81065-81067 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80030 | georg.brandl | 2010-04-13 08:43:54 +0200 (Di, 13 Apr 2010) | 1 line
Get rid of multi-row cells.
........
r80067 | georg.brandl | 2010-04-14 10:53:38 +0200 (Mi, 14 Apr 2010) | 1 line
#5341: typo.
........
r80069 | georg.brandl | 2010-04-14 15:50:31 +0200 (Mi, 14 Apr 2010) | 1 line
Add an x-ref to where the O_ constants are documented and move the SEEK_ constants after lseek().
........
r80080 | georg.brandl | 2010-04-14 21:16:38 +0200 (Mi, 14 Apr 2010) | 1 line
#8399: add note about Windows and O_BINARY.
........
r80081 | georg.brandl | 2010-04-14 23:34:44 +0200 (Mi, 14 Apr 2010) | 1 line
#5250: document __instancecheck__ and __subclasscheck__. I hope the part about the class/metaclass distinction is understandable.
........
r80084 | georg.brandl | 2010-04-14 23:46:45 +0200 (Mi, 14 Apr 2010) | 1 line
Fix missing.
........
r80432 | georg.brandl | 2010-04-24 10:56:58 +0200 (Sa, 24 Apr 2010) | 1 line
Markup fixes.
........
r80433 | georg.brandl | 2010-04-24 11:08:10 +0200 (Sa, 24 Apr 2010) | 1 line
#7507: quote "!" in pipes.quote(); it is a special character for some shells.
........
r80465 | georg.brandl | 2010-04-25 12:29:17 +0200 (So, 25 Apr 2010) | 1 line
Remove LaTeXy index entry syntax.
........
r80466 | georg.brandl | 2010-04-25 12:54:42 +0200 (So, 25 Apr 2010) | 1 line
Patch from Tim Hatch: Better cross-referencing in socket and winreg docs.
........
r80467 | georg.brandl | 2010-04-25 12:55:16 +0200 (So, 25 Apr 2010) | 1 line
Patch from Tim Hatch: Remove reference to winreg being the fabled high-level registry interface.
........
r80468 | georg.brandl | 2010-04-25 12:55:58 +0200 (So, 25 Apr 2010) | 1 line
Patch from Tim Hatch: Minor spelling changes to _winreg docs.
........
r80469 | georg.brandl | 2010-04-25 12:56:41 +0200 (So, 25 Apr 2010) | 1 line
Fix code example to have valid syntax so that it can be highlighted.
........
r80470 | georg.brandl | 2010-04-25 12:57:15 +0200 (So, 25 Apr 2010) | 1 line
Patch from Tim Hatch: Make socket setblocking <-> settimeout examples symmetric.
........
r81059 | georg.brandl | 2010-05-10 23:02:51 +0200 (Mo, 10 Mai 2010) | 1 line
#8642: fix wrong function name.
........
r81065 | georg.brandl | 2010-05-10 23:46:50 +0200 (Mo, 10 Mai 2010) | 1 line
Fix reference direction.
........
r81066 | georg.brandl | 2010-05-10 23:50:57 +0200 (Mo, 10 Mai 2010) | 1 line
Consolidate deprecation messages.
........
r81067 | georg.brandl | 2010-05-10 23:51:33 +0200 (Mo, 10 Mai 2010) | 1 line
Fix typo.
........
2010-05-19 17:57:08 -03:00
|
|
|
pair: UNIX; file control
|
|
|
|
pair: UNIX; I/O control
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2016-06-11 16:02:54 -03:00
|
|
|
----------------
|
|
|
|
|
2024-02-25 16:02:18 -04:00
|
|
|
This module performs file and I/O control on file descriptors. It is an
|
|
|
|
interface to the :c:func:`fcntl` and :c:func:`ioctl` Unix routines.
|
|
|
|
See the :manpage:`fcntl(2)` and :manpage:`ioctl(2)` Unix manual pages
|
|
|
|
for full details.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2024-03-28 05:13:13 -03:00
|
|
|
.. availability:: Unix, not WASI.
|
2022-08-02 16:00:41 -03:00
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
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
|
2015-11-01 23:37:02 -04:00
|
|
|
``sys.stdin.fileno()``, or an :class:`io.IOBase` object, such as ``sys.stdin``
|
2013-10-09 08:20:22 -03:00
|
|
|
itself, which provides a :meth:`~io.IOBase.fileno` that returns a genuine file
|
|
|
|
descriptor.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-10-12 15:10:51 -03:00
|
|
|
.. versionchanged:: 3.3
|
2015-11-01 23:37:02 -04:00
|
|
|
Operations in this module used to raise an :exc:`IOError` where they now
|
|
|
|
raise an :exc:`OSError`.
|
2011-10-12 15:10:51 -03:00
|
|
|
|
2019-05-31 13:32:33 -03:00
|
|
|
.. versionchanged:: 3.8
|
2024-01-22 12:09:22 -04:00
|
|
|
The :mod:`!fcntl` module now contains ``F_ADD_SEALS``, ``F_GET_SEALS``, and
|
2019-05-31 13:32:33 -03:00
|
|
|
``F_SEAL_*`` constants for sealing of :func:`os.memfd_create` file
|
|
|
|
descriptors.
|
2011-10-12 15:10:51 -03:00
|
|
|
|
2019-08-28 22:56:17 -03:00
|
|
|
.. versionchanged:: 3.9
|
2024-01-22 12:09:22 -04:00
|
|
|
On macOS, the :mod:`!fcntl` module exposes the ``F_GETPATH`` constant,
|
|
|
|
which obtains the path of a file from a file descriptor.
|
|
|
|
On Linux(>=3.15), the :mod:`!fcntl` module exposes the ``F_OFD_GETLK``,
|
|
|
|
``F_OFD_SETLK`` and ``F_OFD_SETLKW`` constants, which are used when working
|
|
|
|
with open file description locks.
|
2019-08-28 22:56:17 -03:00
|
|
|
|
2020-10-19 20:30:02 -03:00
|
|
|
.. versionchanged:: 3.10
|
2024-01-22 12:09:22 -04:00
|
|
|
On Linux >= 2.6.11, the :mod:`!fcntl` module exposes the ``F_GETPIPE_SZ`` and
|
2020-10-19 20:30:02 -03:00
|
|
|
``F_SETPIPE_SZ`` constants, which allow to check and modify a pipe's size
|
|
|
|
respectively.
|
|
|
|
|
2021-12-08 18:28:51 -04:00
|
|
|
.. versionchanged:: 3.11
|
2024-01-22 12:09:22 -04:00
|
|
|
On FreeBSD, the :mod:`!fcntl` module exposes the ``F_DUP2FD`` and
|
|
|
|
``F_DUP2FD_CLOEXEC`` constants, which allow to duplicate a file descriptor,
|
|
|
|
the latter setting ``FD_CLOEXEC`` flag in addition.
|
2021-12-08 18:28:51 -04:00
|
|
|
|
2022-06-06 18:21:58 -03:00
|
|
|
.. versionchanged:: 3.12
|
|
|
|
On Linux >= 4.5, the :mod:`fcntl` module exposes the ``FICLONE`` and
|
|
|
|
``FICLONERANGE`` constants, which allow to share some data of one file with
|
|
|
|
another file by reflinking on some filesystems (e.g., btrfs, OCFS2, and
|
|
|
|
XFS). This behavior is commonly referred to as "copy-on-write".
|
|
|
|
|
2024-01-22 12:09:22 -04:00
|
|
|
.. versionchanged:: 3.13
|
|
|
|
On Linux >= 2.6.32, the :mod:`!fcntl` module exposes the
|
|
|
|
``F_GETOWN_EX``, ``F_SETOWN_EX``, ``F_OWNER_TID``, ``F_OWNER_PID``, ``F_OWNER_PGRP`` constants, which allow to direct I/O availability signals
|
|
|
|
to a specific thread, process, or process group.
|
|
|
|
On Linux >= 4.13, the :mod:`!fcntl` module exposes the
|
|
|
|
``F_GET_RW_HINT``, ``F_SET_RW_HINT``, ``F_GET_FILE_RW_HINT``,
|
|
|
|
``F_SET_FILE_RW_HINT``, and ``RWH_WRITE_LIFE_*`` constants, which allow
|
|
|
|
to inform the kernel about the relative expected lifetime of writes on
|
|
|
|
a given inode or via a particular open file description.
|
|
|
|
On Linux >= 5.1 and NetBSD, the :mod:`!fcntl` module exposes the
|
|
|
|
``F_SEAL_FUTURE_WRITE`` constant for use with ``F_ADD_SEALS`` and
|
|
|
|
``F_GET_SEALS`` operations.
|
|
|
|
On FreeBSD, the :mod:`!fcntl` module exposes the ``F_READAHEAD``, ``F_ISUNIONSTACK``, and ``F_KINFO`` constants.
|
|
|
|
On macOS and FreeBSD, the :mod:`!fcntl` module exposes the ``F_RDAHEAD``
|
|
|
|
constant.
|
|
|
|
On NetBSD and AIX, the :mod:`!fcntl` module exposes the ``F_CLOSEM``
|
|
|
|
constant.
|
|
|
|
On NetBSD, the :mod:`!fcntl` module exposes the ``F_MAXFD`` constant.
|
|
|
|
On macOS and NetBSD, the :mod:`!fcntl` module exposes the ``F_GETNOSIGPIPE``
|
|
|
|
and ``F_SETNOSIGPIPE`` constant.
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
The module defines the following functions:
|
|
|
|
|
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
.. function:: fcntl(fd, cmd, arg=0)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
Perform the operation *cmd* on file descriptor *fd* (file objects providing
|
2013-11-07 11:51:07 -04:00
|
|
|
a :meth:`~io.IOBase.fileno` method are accepted as well). The values used
|
2015-03-20 15:04:21 -03:00
|
|
|
for *cmd* are operating system dependent, and are available as constants
|
2013-11-07 11:51:07 -04:00
|
|
|
in the :mod:`fcntl` module, using the same names as used in the relevant C
|
2015-03-20 15:04:21 -03:00
|
|
|
header files. The argument *arg* can either be an integer value, or a
|
|
|
|
:class:`bytes` object. With an integer value, the return value of this
|
|
|
|
function is the integer return value of the C :c:func:`fcntl` call. When
|
|
|
|
the argument is bytes it represents a binary structure, e.g. created by
|
|
|
|
:func:`struct.pack`. The binary data is copied to a buffer whose address is
|
|
|
|
passed to the C :c:func:`fcntl` call. The return value after a successful
|
|
|
|
call is the contents of the buffer, converted to a :class:`bytes` object.
|
|
|
|
The length of the returned object will be the same as the length of the
|
|
|
|
*arg* argument. This is limited to 1024 bytes. If the information returned
|
|
|
|
in the buffer by the operating system is larger than 1024 bytes, this is
|
|
|
|
most likely to result in a segmentation violation or a more subtle data
|
|
|
|
corruption.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2024-02-25 16:02:18 -04:00
|
|
|
If the :c:func:`fcntl` call fails, an :exc:`OSError` is raised.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2020-02-13 03:47:42 -04:00
|
|
|
.. audit-event:: fcntl.fcntl fd,cmd,arg fcntl.fcntl
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
.. function:: ioctl(fd, request, arg=0, mutate_flag=True)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2013-10-09 08:20:22 -03:00
|
|
|
This function is identical to the :func:`~fcntl.fcntl` function, except
|
|
|
|
that the argument handling is even more complicated.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
The *request* parameter is limited to values that can fit in 32-bits.
|
|
|
|
Additional constants of interest for use as the *request* argument can be
|
2013-11-07 11:51:07 -04:00
|
|
|
found in the :mod:`termios` module, under the same names as used in
|
|
|
|
the relevant C header files.
|
Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61644 | trent.nelson | 2008-03-19 22:51:16 +0100 (Mi, 19 Mär 2008) | 1 line
Force a clean of the tcltk/tcltk64 directories now that we've completely changed the tcl/tk build environment.
........
r61646 | gregory.p.smith | 2008-03-19 23:23:51 +0100 (Mi, 19 Mär 2008) | 2 lines
Improve the error message when the CRCs don't match.
........
r61647 | trent.nelson | 2008-03-19 23:41:10 +0100 (Mi, 19 Mär 2008) | 1 line
Comment out tcltk/tcltk64 removal.
........
r61649 | raymond.hettinger | 2008-03-19 23:47:48 +0100 (Mi, 19 Mär 2008) | 1 line
Remove unnecessary traceback save/restore pair.
........
r61650 | trent.nelson | 2008-03-19 23:51:42 +0100 (Mi, 19 Mär 2008) | 1 line
Bump the SIGALM delay from 3 seconds to 20 seconds, mainly in an effort to see if it fixes the alarm failures in this test experienced by some of the buildbots.
........
r61651 | brett.cannon | 2008-03-20 00:01:17 +0100 (Do, 20 Mär 2008) | 5 lines
Make sure that the warnings filter is not reset or changed beyond the current
running test file.
Closes issue2407. Thanks Jerry Seutter.
........
r61652 | gregory.p.smith | 2008-03-20 00:03:25 +0100 (Do, 20 Mär 2008) | 10 lines
Prevent ioctl op codes from being sign extended from int to unsigned long
when used on platforms that actually define ioctl as taking an unsigned long.
(the BSDs and OS X / Darwin)
Adds a unittest for fcntl.ioctl that tests what happens with both positive and
negative numbers.
This was done because of issue1471 but I'm not able to reproduce -that- problem
in the first place on Linux 32bit or 64bit or OS X 10.4 & 10.5 32bit or 64 bit.
........
r61656 | sean.reifschneider | 2008-03-20 01:46:50 +0100 (Do, 20 Mär 2008) | 2 lines
Issue #2143: Fix embedded readline() hang on SSL socket EOF.
........
r61657 | sean.reifschneider | 2008-03-20 01:50:07 +0100 (Do, 20 Mär 2008) | 2 lines
Forgot to add NEWS item about smtplib SSL readline hang fix.
........
r61658 | trent.nelson | 2008-03-20 01:58:44 +0100 (Do, 20 Mär 2008) | 1 line
Revert r61650; the intent of this commit was to try and address alarm failures on some of the build slaves. As Neal points out, it's called after test_main(), so it's not going to factor into the test when run via regrtest.py (and removes the original functionality that Jeffrey wanted that would kill the test if it took longer than 3 seconds to run when executing it directly during development).
........
r61663 | sean.reifschneider | 2008-03-20 04:20:48 +0100 (Do, 20 Mär 2008) | 2 lines
Issue 2188: Documentation hint about disabling proxy detection.
........
r61665 | gregory.p.smith | 2008-03-20 06:41:53 +0100 (Do, 20 Mär 2008) | 7 lines
Attempt to fix the Solaris Sparc 10 buildbot. It was failing with an invalid
argument error on ioctl. This was caused by the added test_fcntl ioctl test
that hard coded 0 as the fd to use. Without a terminal, this fails on solaris.
(it passed from the command line on sol 10, both 32 and 64 bit)
Also, test_ioctl exists so I moved the test into there where it belongs.
........
r61667 | georg.brandl | 2008-03-20 08:25:55 +0100 (Do, 20 Mär 2008) | 2 lines
#2383: remove obsolete XXX comment in stat.py.
........
2008-03-20 07:49:03 -03:00
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
The parameter *arg* can be one of an integer, an object supporting the
|
|
|
|
read-only buffer interface (like :class:`bytes`) or an object supporting
|
|
|
|
the read-write buffer interface (like :class:`bytearray`).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2013-10-09 08:20:22 -03:00
|
|
|
In all but the last case, behaviour is as for the :func:`~fcntl.fcntl`
|
|
|
|
function.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
If a mutable buffer is passed, then the behaviour is determined by the value of
|
|
|
|
the *mutate_flag* parameter.
|
|
|
|
|
|
|
|
If it is false, the buffer's mutability is ignored and behaviour is as for a
|
|
|
|
read-only buffer, except that the 1024 byte limit mentioned above is avoided --
|
2015-03-20 15:04:21 -03:00
|
|
|
so long as the buffer you pass is at least as long as what the operating system
|
2007-08-15 11:28:22 -03:00
|
|
|
wants to put there, things should work.
|
|
|
|
|
2009-05-17 09:29:12 -03:00
|
|
|
If *mutate_flag* is true (the default), then the buffer is (in effect) passed
|
|
|
|
to the underlying :func:`ioctl` system call, the latter's return code is
|
|
|
|
passed back to the calling Python, and the buffer's new contents reflect the
|
|
|
|
action of the :func:`ioctl`. This is a slight simplification, because if the
|
|
|
|
supplied buffer is less than 1024 bytes long it is first copied into a static
|
|
|
|
buffer 1024 bytes long which is then passed to :func:`ioctl` and copied back
|
|
|
|
into the supplied buffer.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2024-02-25 16:02:18 -04:00
|
|
|
If the :c:func:`ioctl` call fails, an :exc:`OSError` exception is raised.
|
2015-11-13 04:13:48 -04:00
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
An example::
|
|
|
|
|
|
|
|
>>> import array, fcntl, struct, termios, os
|
|
|
|
>>> os.getpgrp()
|
|
|
|
13341
|
|
|
|
>>> struct.unpack('h', fcntl.ioctl(0, termios.TIOCGPGRP, " "))[0]
|
|
|
|
13341
|
|
|
|
>>> buf = array.array('h', [0])
|
|
|
|
>>> fcntl.ioctl(0, termios.TIOCGPGRP, buf, 1)
|
|
|
|
0
|
|
|
|
>>> buf
|
|
|
|
array('h', [13341])
|
|
|
|
|
2020-02-13 03:47:42 -04:00
|
|
|
.. audit-event:: fcntl.ioctl fd,request,arg fcntl.ioctl
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
.. function:: flock(fd, operation)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
Perform the lock operation *operation* on file descriptor *fd* (file objects providing
|
2013-10-09 08:20:22 -03:00
|
|
|
a :meth:`~io.IOBase.fileno` method are accepted as well). See the Unix manual
|
2009-06-04 07:23:20 -03:00
|
|
|
:manpage:`flock(2)` for details. (On some systems, this function is emulated
|
2010-10-06 07:11:56 -03:00
|
|
|
using :c:func:`fcntl`.)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2024-02-25 16:02:18 -04:00
|
|
|
If the :c:func:`flock` call fails, an :exc:`OSError` exception is raised.
|
2015-11-13 04:13:48 -04:00
|
|
|
|
2020-02-13 03:47:42 -04:00
|
|
|
.. audit-event:: fcntl.flock fd,operation fcntl.flock
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
.. function:: lockf(fd, cmd, len=0, start=0, whence=0)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2013-10-09 08:20:22 -03:00
|
|
|
This is essentially a wrapper around the :func:`~fcntl.fcntl` locking calls.
|
2019-09-13 14:32:28 -03:00
|
|
|
*fd* is the file descriptor (file objects providing a :meth:`~io.IOBase.fileno`
|
|
|
|
method are accepted as well) of the file to lock or unlock, and *cmd*
|
2013-10-09 08:20:22 -03:00
|
|
|
is one of the following values:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2024-02-25 16:02:18 -04:00
|
|
|
.. data:: LOCK_UN
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2024-02-25 16:02:18 -04:00
|
|
|
Release an existing lock.
|
|
|
|
|
|
|
|
.. data:: LOCK_SH
|
|
|
|
|
|
|
|
Acquire a shared lock.
|
|
|
|
|
|
|
|
.. data:: LOCK_EX
|
|
|
|
|
|
|
|
Acquire an exclusive lock.
|
|
|
|
|
|
|
|
.. data:: LOCK_NB
|
|
|
|
|
|
|
|
Bitwise OR with any of the other three ``LOCK_*`` constants to make
|
|
|
|
the request non-blocking.
|
|
|
|
|
|
|
|
If :const:`!LOCK_NB` is used and the lock cannot be acquired, an
|
2011-10-12 15:10:51 -03:00
|
|
|
:exc:`OSError` will be raised and the exception will have an *errno*
|
2024-02-25 16:02:18 -04:00
|
|
|
attribute set to :const:`~errno.EACCES` or :const:`~errno.EAGAIN` (depending on the
|
2007-08-15 11:28:22 -03:00
|
|
|
operating system; for portability, check for both values). On at least some
|
2024-02-25 16:02:18 -04:00
|
|
|
systems, :const:`!LOCK_EX` can only be used if the file descriptor refers to a
|
2007-08-15 11:28:22 -03:00
|
|
|
file opened for writing.
|
|
|
|
|
2015-03-20 15:04:21 -03:00
|
|
|
*len* is the number of bytes to lock, *start* is the byte offset at
|
2013-10-09 08:20:22 -03:00
|
|
|
which the lock starts, relative to *whence*, and *whence* is as with
|
|
|
|
:func:`io.IOBase.seek`, specifically:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2023-07-28 07:26:28 -03:00
|
|
|
* ``0`` -- relative to the start of the file (:const:`os.SEEK_SET`)
|
|
|
|
* ``1`` -- relative to the current buffer position (:const:`os.SEEK_CUR`)
|
|
|
|
* ``2`` -- relative to the end of the file (:const:`os.SEEK_END`)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
The default for *start* is 0, which means to start at the beginning of the file.
|
2015-03-20 15:04:21 -03:00
|
|
|
The default for *len* is 0 which means to lock to the end of the file. The
|
2007-08-15 11:28:22 -03:00
|
|
|
default for *whence* is also 0.
|
|
|
|
|
2020-02-13 03:47:42 -04:00
|
|
|
.. audit-event:: fcntl.lockf fd,cmd,len,start,whence fcntl.lockf
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
Examples (all on a SVR4 compliant system)::
|
|
|
|
|
|
|
|
import struct, fcntl, os
|
|
|
|
|
|
|
|
f = open(...)
|
|
|
|
rv = fcntl.fcntl(f, fcntl.F_SETFL, os.O_NDELAY)
|
|
|
|
|
|
|
|
lockdata = struct.pack('hhllhh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
|
|
|
|
rv = fcntl.fcntl(f, fcntl.F_SETLKW, lockdata)
|
|
|
|
|
|
|
|
Note that in the first example the return value variable *rv* will hold an
|
2015-03-20 15:04:21 -03:00
|
|
|
integer value; in the second example it will hold a :class:`bytes` object. The
|
|
|
|
structure lay-out for the *lockdata* variable is system dependent --- therefore
|
|
|
|
using the :func:`flock` call may be better.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
Module :mod:`os`
|
2023-07-21 06:40:37 -03:00
|
|
|
If the locking flags :const:`~os.O_SHLOCK` and :const:`~os.O_EXLOCK` are
|
2013-10-09 08:20:22 -03:00
|
|
|
present in the :mod:`os` module (on BSD only), the :func:`os.open`
|
|
|
|
function provides an alternative to the :func:`lockf` and :func:`flock`
|
|
|
|
functions.
|