Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d6ef6db9
Commit
d6ef6db9
authored
Apr 25, 2018
by
Pablo Galindo
Committed by
Serhiy Storchaka
Apr 25, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix rendering issues in the documentation for the os module (#6525)
parent
0977091d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
4 deletions
+16
-4
Doc/library/os.rst
Doc/library/os.rst
+16
-4
No files found.
Doc/library/os.rst
View file @
d6ef6db9
...
...
@@ -1126,18 +1126,24 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
.. versionadded:: 3.7
.. data:: RWF_DSYNC (since Linux 4.7)
.. data:: RWF_DSYNC
Provide a per-write equivalent of the O_DSYNC open(2) flag. This flag
is meaningful only for pwritev2(), and its effect applies only to the
data range written by the system call.
Availability: Linux (version 4.7).
.. versionadded:: 3.7
.. data:: RWF_SYNC (since Linux 4.7)
.. data:: RWF_SYNC
Provide a per-write equivalent of the O_SYNC open(2) flag. This flag is
meaningful only for pwritev2(), and its effect applies only to the data
range written by the system call.
Availability: Linux (version 4.7).
.. versionadded:: 3.7
...
...
@@ -1260,16 +1266,20 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
.. versionadded:: 3.7
.. data:: RWF_HIPRI (since Linux 4.6)
.. data:: RWF_HIPRI
High priority read/write. Allows block-based filesystems to use polling
of the device, which provides lower latency, but may use additional
resources. (Currently, this feature is usable only on a file descriptor
opened using the O_DIRECT flag.)
Availability: Linux (version 4.6).
.. versionadded:: 3.7
.. data:: RWF_NOWAIT (since Linux 4.14)
.. data:: RWF_NOWAIT
Do not wait for data which is not immediately available. If this flag
is specified, the preadv2() system call will return instantly
if it would have to read data from the backing storage or wait for a lock.
...
...
@@ -1277,6 +1287,8 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
read. If no bytes were read, it will return -1 and set errno to EAGAIN.
Currently, this flag is meaningful only for preadv2().
Availability: Linux (version 4.14).
.. versionadded:: 3.7
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment