Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Raise ImportError when os.fork does not exist. | Guido van Rossum | 2000-05-04 | 1 | -0/+5 |
| | |||||
* | Added a provision to stop all threads before exiting from the test: | Guido van Rossum | 2000-04-24 | 1 | -1/+7 |
| | | | | | | the change to regrtest.py to unload all newly imported modules did something bad to the threads -- and I realized that they would never stop! | ||||
* | Use a constant to specify the number of child threads to create. | Fred Drake | 2000-04-10 | 1 | -4/+7 |
| | | | | | | | | | | | Instead of assuming that the number process ids of the threads is the same as the process id of the controlling process, use a copy of the dictionary and check for changes in the process ids of the threads from the thread's process ids in the parent process. This makes the test make more sense on systems which assign a new pid to each thread (i.e., Linux). This doesn't fix the other problems evident with this test on Linux. | ||||
* | Test case for fork1() behavior. | Guido van Rossum | 2000-02-25 | 1 | -0/+54 |
Only the main thread should survive in the child after a fork(). |