-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-31904: Add posix module support for VxWorks RTOS #12118
Conversation
@pablogsal @izbyshev @nanjekyejoannah: Would you min to review this change? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any plan to update documentation to reflect that some functions that are normally available on Unix are not actually available on VxWorks? With this patch, they are os.fork
, os.exec*
and os.spawn*p*
.
Have updated os.rst about this. |
@izbyshev @pablogsal I've fixed all the issues reviewed out. Could you help to review again when available? Thanks a lot. |
I've combined #12319 into this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your change seems reasonable, but I have a few comments.
Lib/test/test_os.py
Outdated
except (ValueError,OSError): | ||
for i in range(1, hard_limit + 1): | ||
try: | ||
os.open(os.devnull, os.O_RDONLY) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dislike this code. If the limit is high (ex: larger than 1024), the test can take a lot of time.
I suggest to simply skip the test on VxWorks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Following your comments, skip this test on VxWorks. By default the RLIMIT_NOFILE on VxWorks is 8. But on other OS, perhaps there will be the issues you concerned.
Lib/test/test_os.py
Outdated
@@ -1517,7 +1528,8 @@ def mock_execve(name, *args): | |||
os.execve = orig_execve | |||
os.defpath = orig_defpath | |||
|
|||
|
|||
@unittest.skipUnless(hasattr(os, 'execv'), | |||
"No os.execv or os.execve function to test.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick: please align the string to the start of hasattr.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Doc/library/os.rst
Outdated
On VxWorks, if *mode* is :const:`P_NOWAIT`, this function returns the process id | ||
of the new process; if *mode* is :const:`P_WAIT`, only returns the new process's | ||
exit code if it exits normally. The process id will actually be the process | ||
handle, so can be used with the :func:`waitpid` function. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This description seems to be redundant with the previous paragraph. I don't see how it's different from the previous paragraph. And it seems obvious to that the a process is can be passed to waitpid(), I don't see the point of saying it here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really some confusion here. The difference we want to express here is in P_WAIT mode if the process is killed by others, VxWorks doesn't return "-signal" as unix-like OS does. VxWorks just returns -1 in this case.
Modules/posixmodule.c
Outdated
if ((rtpid != RTP_ID_ERROR) && (mode == _P_WAIT)) { | ||
do { | ||
res = waitpid((pid_t)rtpid, &status, 0); | ||
} while (res < 0 && errno == EINTR); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have to call PyErr_CheckSignals() on EINTR to respect the PEP 475. See how other functions implement that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Thanks, I like that :-) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your PR mostly LGTM, but I have a few more comments before being able to approve it.
@@ -0,0 +1 @@ | |||
Skip ExecTests and URandomFDTests in test_os.py for VxWorks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Honestly, I don't think that this NEWS entry is really helpful to users. Can you please remove it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed.
Doc/library/os.rst
Outdated
@@ -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 desn't return ``-signal`` when the new process is |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo!
Note on VxWorks, this function desn't return ``-signal`` when the new process is | |
Note on VxWorks, this function doesn't return ``-signal`` when the new process is |
Lib/test/test_os.py
Outdated
@@ -1517,7 +1519,8 @@ def mock_execve(name, *args): | |||
os.execve = orig_execve | |||
os.defpath = orig_defpath | |||
|
|||
|
|||
@unittest.skipUnless(hasattr(os, 'execv'), | |||
"No os.execv or os.execve function to test.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick: usually, we just say "need os.execv", no need to elaborate ;-)
LGTM except if the typo. Please fix the typo, so I can merge your PR ;-) |
Thanks @pxinwr! I know that this one was painful, but well, the os ("posix") module is where you can find most differences between operating systems. |
This is the successive PR after #11968. This PR enables posix module support for VxWorks RTOS. VxWorks doesn't support fork()/exec(). Instead, we use rtpSpawn() to spawn new processes.
More and full support on modules for VxWorks will continuously be added by the coming PRs.
VxWorks is a product developed and owned by Wind River. For VxWorks introduction or more details, go to https://www.windriver.com/products/vxworks/
Wind River will have a dedicated engineering team to contribute to the support as maintainers.
We already have a working buildbot worker internally, but has not bound to master. We will check the process for the buildbot, then add it.
https://bugs.python.org/issue31904