diff options
author | pxinwr <peixing.xin@windriver.com> | 2019-05-21 10:46:37 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-05-21 10:46:37 (GMT) |
commit | f2d7ac7e5bd821e29e0fcb78a760a282059ae000 (patch) | |
tree | 096d1f8f9ccb49a93741ecbd15e35b6775282a48 /Doc/library | |
parent | d12e75734d46ecde588c5de65e6d64146911d20c (diff) | |
download | cpython-f2d7ac7e5bd821e29e0fcb78a760a282059ae000.zip cpython-f2d7ac7e5bd821e29e0fcb78a760a282059ae000.tar.gz cpython-f2d7ac7e5bd821e29e0fcb78a760a282059ae000.tar.bz2 |
bpo-31904: Add posix module support for VxWorks (GH-12118)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index e77a8fe..0bbfce9 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -32,6 +32,7 @@ Notes on the availability of these functions: objects, and result in an object of the same type, if a path or file name is returned. +* On VxWorks, os.fork, os.execv and os.spawn*p* are not supported. .. note:: @@ -3578,6 +3579,9 @@ written in Python, such as a mail server's external command delivery program. process. On Windows, the process id will actually be the process handle, so can be used with the :func:`waitpid` function. + Note on VxWorks, this function doesn't return ``-signal`` when the new process is + killed. Instead it raises OSError exception. + The "l" and "v" variants of the :func:`spawn\* <spawnl>` functions differ in how command-line arguments are passed. The "l" variants are perhaps the easiest to work with if the number of parameters is fixed when the code is written; the |