diff options
author | Skip Montanaro <skip@pobox.com> | 2005-05-16 02:42:22 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2005-05-16 02:42:22 (GMT) |
commit | 5ff14927209fe4a6c3085bf600e4ef80bdf6ff4d (patch) | |
tree | e88a2a8af8007bf281600f7f9f8665ba393de38f /Doc | |
parent | 7726dc0a8e2951e1fd75353e7d8c16284d0d4653 (diff) | |
download | cpython-5ff14927209fe4a6c3085bf600e4ef80bdf6ff4d.zip cpython-5ff14927209fe4a6c3085bf600e4ef80bdf6ff4d.tar.gz cpython-5ff14927209fe4a6c3085bf600e4ef80bdf6ff4d.tar.bz2 |
Add O_SHLOCK & O_EXLOCK. Closes patch #1103951.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libos.tex | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index bf6e5d6..d38e9be 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -594,7 +594,9 @@ its \method{write()} method. The following data items are available for use in constructing the -\var{flags} parameter to the \function{open()} function. +\var{flags} parameter to the \function{open()} function. Some items will +not be available on all platforms. For descriptions of their availability +and use, consult \manpage{open}{2}. \begin{datadesc}{O_RDONLY} \dataline{O_WRONLY} @@ -614,6 +616,8 @@ Availability: Macintosh, \UNIX, Windows. \dataline{O_NDELAY} \dataline{O_NONBLOCK} \dataline{O_NOCTTY} +\dataline{O_SHLOCK} +\dataline{O_EXLOCK} More options for the \var{flag} argument to the \function{open()} function. Availability: Macintosh, \UNIX. \end{datadesc} |