msg60453 - (view) |
Author: Michael McCandless (mikemccand) |
Date: 2004-01-11 14:28 |
We have a Python HTTP server that, in the parent
process, uses os.fork to spawn new children, but at the
same time the parent could be spawning new threads (in
threads other than the main thread -- only the main
thread does forking).
Anwyay, it very rarely causes deadlock in a spawned
child when that child tries to start a new thread.
I believe I've tracked this down to the
_active_limbo_lock in the threading module.
Specifically, if this lock is held by parent (because
another thread is spawning a thread), just as os.fork
happens, the child inherits the held lock and will then
block trying to do any threading.* operations.
Just like the global interp. lock is overwritten in the
child after fork, I think something similar should
happen to threading._active_limbo_lock? (And more
generally the user needs to be aware of locks passing
through fork; but I think at least threading.py should
"do the right thing").
This thread looks quite relevant:
groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=38E6F2BA.E66CAC90%40ensim.com&rnum=5&prev=/groups%3Fq%3Dpython%2Bfork%2Bthreading%2Bmodule%2B%2Block%26hl%3Den%26lr%3D%26ie%3DUTF-8%26oe%3DUTF-8%26sa%3DN%26scoring%3Dd
|
msg60454 - (view) |
Author: Χρήστος Γεωργίου (Christos Georgiou) (tzot) * |
Date: 2005-03-20 12:05 |
Logged In: YES
user_id=539787
See some more typical info about mixing forks and threads:
http://mail.python.org/pipermail/python-list/2001-September/066048.html
This seems not to be Python-related, but platform-related.
|
msg60455 - (view) |
Author: Michael McCandless (mikemccand) |
Date: 2005-03-20 12:12 |
Logged In: YES
user_id=323786
True -- there are many platform specific issues on the
interaction of forking and threading.
However the _active_limbo_lock is entirely a Python issue (I
think it can deadlock on any platform, unless the platform
releases locks in child process after fork).
After forking, python already resets the GIL, and it should
also reset any other locks that have global impact like
_active_limbo_lock.
|
msg61693 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-01-25 21:58 |
It's not only the _active_limbo_lock. All global structures of the
threading module should be reinitialized (including the _MainThread
instance); for that purpose, reload() can be used. I attach an example
which exercises this problem. Normally the script should hang in the
last step (using os.fork() and launching threads while some other
threads call threading.enumerate() in a loop).
The safe_fork() function in the example is a replacement for os.fork()
which tries to avoid any deadlock in the threading module. If it's
deemed useful and bug-free, it could perhaps be added somewhere in the
stdlib (in the threading module itself perhaps).
|
msg61695 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-01-25 22:59 |
(or perhaps we should provide an API to hook into PyOS_AfterFork)
|
msg69423 - (view) |
Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) *  |
Date: 2008-07-08 12:25 |
Attached patch releases the _active_limbo_lock after a fork(). It is not
a complete solution, since existing Thread objects don't correspond to
anything, but it corrects a problem in test_multiprocessing.
|
msg69437 - (view) |
Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) *  |
Date: 2008-07-08 16:19 |
A slightly better patch, with tests.
|
msg69466 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-09 12:31 |
Amaury - your latest patch doesn't seem to apply cleanly to trunk, it's
choking on the Python/ceval.c changes
|
msg69467 - (view) |
Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) *  |
Date: 2008-07-09 12:55 |
Here is a third patch with latest trunk.
Did you apply it to a clean checkout?
|
msg69468 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-09 13:19 |
I had to flip on ignore whitespace to patch:
patch -p0 -l <~/Desktop/fork-and-thread3.patch
Worked. Unfortunately, test_threading is locking up during a make test.
Here's the verbose regrtest.py output:
woot:python-trunk jesse$ ./python.exe Lib/test/regrtest.py -v
test_threading
...snip
<thread 9> done
<thread 9> is finished. 0 tasks are running
all tasks done
ok
test_join_in_forked_from_thread
(test.test_threading.ThreadJoinOnShutdown) ...
At this point it hangs (OS/X 10.5 latest)
|
msg69470 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-09 13:44 |
Amaury, it looks like it's hanging in subprocess:
> /Users/jesse/open_source/subversion/python-
trunk/Lib/test/test_threading.py(338)_run_and_join()
-> p = subprocess.Popen([sys.executable, "-c", script],
stdout=subprocess.PIPE)
(Pdb) step
...snip...
(Pdb) step
--Call--
> /Users/jesse/open_source/subversion/python-
trunk/Lib/threading.py(788)current_thread()
-> def current_thread():
(Pdb) step
> /Users/jesse/open_source/subversion/python-
trunk/Lib/threading.py(789)current_thread()
-> try:
(Pdb) step
> /Users/jesse/open_source/subversion/python-
trunk/Lib/threading.py(790)current_thread()
-> return _active[_get_ident()]
(Pdb) step
> /Users/jesse/open_source/subversion/python-
trunk/Lib/subprocess.py(1097)_execute_child()
-> data = os.read(errpipe_read, 1048576) # Exceptions limited to 1 MB
(Pdb) step
... lockup
|
msg69476 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-09 17:07 |
Here's the good news, with the patch applied to trunk, I'm not seeing
hangs in the multiprocessing test suite. I'm running it on a tight loop
excluding the threading tests to confirm.
|
msg69477 - (view) |
Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) *  |
Date: 2008-07-09 17:12 |
Well I was a bit presumptuous that my thread+fork tests would pass on
all platforms out of the box.
We should disable the tests, or have someone with better Unix expertise
examine and correct them.
At least I feel that the actual correction in threading.py goes in the
right direction.
|
msg69478 - (view) |
Author: Adam Olsen (Rhamphoryncus) |
Date: 2008-07-09 17:46 |
In general I suggest replacing the lock with a new lock, rather than
trying to release the existing one. Releasing *might* work in this
case, only because it's really a semaphore underneath, but it's still
easier to think about by just replacing.
I also suggest deleting _active and recreating it with only the current
thread.
I don't understand how test_join_on_shutdown could succeed. The main
thread shouldn't be marked as done.. well, ever. The test should hang.
I suspect test_join_in_forked_process should call os.waitpid(childpid)
so it doesn't exit early, which would cause the original Popen.wait()
call to exit before the output is produced. The same problem of
test_join_on_shutdown also applies.
Ditto for test_join_in_forked_from_thread.
|
msg69479 - (view) |
Author: Adam Olsen (Rhamphoryncus) |
Date: 2008-07-09 18:13 |
Looking over some of the other platforms for thread_*.h, I'm sure
replacing the lock is the right thing.
|
msg69492 - (view) |
Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) *  |
Date: 2008-07-09 23:59 |
A new patch:
- I replaced "_active_limbo_lock.release()" by
"_active_limbo_lock=_allocate_lock()"
- I replaced the successive deletions in _active by a re-creation with
only the current thread. There is no difference in the result, but I
agree that the intent is more clear.
- yes, the main thread is marked as done when the interpreter exits
(hence the convoluted tests with subprocesses): in Modules/main.c,
WaitForThreadShutdown() calls threading._shutdown().
Also, I hope the tests make more sense now.
|
msg69512 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-10 17:10 |
FWIW: the threading tests still hang for me with the latest patch. I'm
confirming that the patch itself fixes the hanging MP tests though
|
msg69549 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-11 12:29 |
I can confirm that this seems to clear up the test_multiprocessing hangs
on my mac, I ran make test in a loop almost all day yesterday without
hangs. I would really suggest we get this in, minus the new test_threading
tests for now.
|
msg69550 - (view) |
Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) *  |
Date: 2008-07-11 13:08 |
I agree. My attempt to describe the behaviour of fork+threads in a
platform-independent test is another issue.
Just one more thing: looking at Module/posixmodule.c, os.fork1() calls
PyOS_AfterFork() in both parent and child processes. Is there a "if (pid
== 0)" test missing, just like os.fork()?
|
msg69569 - (view) |
Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) *  |
Date: 2008-07-11 22:22 |
I am leaving for the whole next week, so anyone, feel free to commit
(part of) my patch if it helps.
|
msg69601 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-07-12 21:22 |
The existing fork-and-thread4.patch doesn't actually reset
_active_limbo_lock. Its missing a "global _active_limbo_lock" statement
in the threading._after_fork() function.
|
msg69603 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-07-12 22:22 |
and a few more bugs. a new patch is attached. With this applied,
pitrou's fork_threading.py bug demonstration script finally does the
right thing.
test_threading, including the new deadlock tests, and
test_multiprocessing both pass.
Tested on x86 MacOS X 10.4 & x86 Ubuntu 8.04.
Would someone please try this on other platforms?
(The new threading test's use of subprocess with [sys.executable, '-c',
"""long script"""] makes me slightly nervous about portability outside
of Linux and BSD.)
|
msg69607 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-07-13 06:18 |
I still don't like the _after_fork() implementation. Its O(n) where n
== number of threads the parent process had.
Very wasteful when the fork() was done in the most common case of being
followed by an exec and calling os._exit(). It won't scale nicely with
system load (forks will start taking longer and longer the more threads
exist).
Could os.fork() be extended to have an optional will_exec_or_die
parameter that determines if _after_fork() is even called at all?
Things like subprocess should pass in True. The default should be False
for compatiblity.
|
msg69696 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-15 17:16 |
I've been testing greg's latest patch and it seems to work for me - I'm
not seeing any test_multiprocessing hangs.
|
msg69702 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-07-15 18:33 |
> I still don't like the _after_fork() implementation. Its O(n) where n
> == number of threads the parent process had.
It may be O(n) but the inner loop looks very cheap. Even with n == 1000
I'm not sure it would make a difference.
However, are you sure the system thread identifier stays the same after
a fork? I see that in _after_fork() you reuse the old ident for
new_active instead of getting it from get_ident().
|
msg69784 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-16 13:25 |
Greg/Antoine - do you have any problem with me applying the latest patch
as-is today?
|
msg69793 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-07-16 16:06 |
It would be nice to test under Windows first, if you can.
Also, this bug entry should stay open until we discuss the remaining
details.
|
msg69795 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-16 16:14 |
Alas, I don't have a windows machine - I agree we should leave it open
though
|
msg69825 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-16 20:05 |
I've applied Greg's patch in 65032 on trunk.
|
msg69867 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-07-17 03:21 |
I added a Misc/NEWS note for this in r65057.
This is a good candidate for backporting to release25-maint.
To answer Antoine Pitrou's question about using the old ident vs the new
_get_ident(). I don't know if the forked process will have the same
thread id. I expect so. If not, the code as recently committed will
die on an assertion failure because current_thread() is simply an
_active[_get_ident()] dict lookup that returns a DummyThread instance if
the lookup fails.
As for Windows, Windows doesn't support os.fork and I don't see any
calls to PyOS_AfterFork outside of the Modules/posixmodule.c.
|
msg69868 - (view) |
Author: Benjamin Peterson (benjamin.peterson) *  |
Date: 2008-07-17 03:23 |
Can somebody also merge this into Py3k, please?
|
msg69878 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-07-17 09:02 |
Selon "Gregory P. Smith" <report@bugs.python.org>:
>
> To answer Antoine Pitrou's question about using the old ident vs the new
> _get_ident(). I don't know if the forked process will have the same
> thread id.
Then wouldn't it be safer to use _get_ident() rather than re-using the old
thread ID? It doesn't make the code any more complicated as far as I know :)
|
msg69888 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-17 16:50 |
I've merged the change to py3k in r65065
|
msg69889 - (view) |
Author: Benjamin Peterson (benjamin.peterson) *  |
Date: 2008-07-17 16:57 |
test_3_join_in_forked_from_thread hangs for me in Py3k.
|
msg69893 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-17 17:35 |
To add to ben's comment, under py3k the third test hangs, if you pull
out the basic script code being executed in subprocess:
if 1:
import sys, os, time, threading
# a thread, which waits for the main program to terminate
def joiningfunc(mainthread):
mainthread.join()
print('end of thread')
if 1:
main_thread = threading.current_thread()
def worker():
childpid = os.fork()
if childpid != 0:
os.waitpid(childpid, 0)
sys.exit(0)
t = threading.Thread(target=joiningfunc,
args=(main_thread,))
print('starting worker')
t.start()
print('joining worker')
t.join() # Should not block: main_thread is already stopped
w = threading.Thread(target=worker)
w.start()
You'll note it hangs promptly at the join()
|
msg69894 - (view) |
Author: Jesse Noller (jnoller) *  |
Date: 2008-07-17 17:41 |
Ben commented out the hanging test, lowering this from a release blocker
as the patch is on both trunk and 3k, and minus that third new test,
test_threading and test_multiprocessing are both passing
|
msg69928 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-07-17 23:33 |
Jesse: thanks for doing the py3k merge.
Antoine: yeah it might be safer to use _get_ident() but since the
len(_active) == 1 assert is not firing we're probably fine as is.
A change to this that I was considering making to this code has been
attached as threading-874900-improvement-gps01.diff.
-gps
|
msg70174 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-07-23 15:29 |
Greg, I'm not sure your improvement patch is right, since some code may
be holding a reference to the former _MainThread instance and expecting
it to still be part of the active threads container.
On the other hand there are things in the Thread class that may need
reinitializing after a fork (e.g. self.__block = Condition(Lock()), and
self.__ident = _get_ident() :-))... so perhaps your patch is a good
enough approximation of what is needed.
|
msg71297 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-08-17 23:01 |
backported to release25-maint in r65789.
|
msg71298 - (view) |
Author: Benjamin Peterson (benjamin.peterson) *  |
Date: 2008-08-17 23:04 |
One of tests is hanging in 3.0.
|
msg71301 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-08-17 23:34 |
specifically, test_3_join_in_forked_from_thread hangs in py3k and is
currently disabled.
|
msg71315 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-08-18 09:33 |
If you remove the print() call from joining_func(), does it stop
hanging? It may be due to differences between the io library in py3k and
the builtin file objects in 2.x.
(looking at the date of the commit disabling the test, it is not related
to the thread-safety changes to BufferedWriter, though)
|
msg71818 - (view) |
Author: Benjamin Peterson (benjamin.peterson) *  |
Date: 2008-08-23 21:40 |
This is also causing hangs in 2.5.
|
msg71824 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-08-24 01:56 |
it passes on release25-maint for me on linux. i don't see it hanging in
any of the 2.5 buildbots. looks like your r66003 change was a decent
fix for windows judging by the buildbot.
(fwiw, that test you patched in 66003 should probably use readlines()
and assertListEqual to be cross platform rather than the code thats
there now but i'm not motivated to change that unless some other
platform fails on it)
|
msg72546 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-09-04 22:55 |
Ok, with this patch the test passes under py3k.
Apart from the trivial typo (_Thread__stopped -> _stopped), I had to
change print("...") to os.write(1, b"...\n") in the tests as otherwise
subprocess wouldn't receive any output from the third test (buffering
problem? I don't know really).
I also added the ident fix I had already suggested in _after_fork(). If
you put a print statement at this point you'll see the old and the new
value are not the same.
|
msg72549 - (view) |
Author: Benjamin Peterson (benjamin.peterson) *  |
Date: 2008-09-04 23:01 |
I feel like that patch sort of avoids the problem by changing the test.
The test is hanging for some reason, so we should try to fix that, not
the test. :) I wonder if it has something to do with the various
deadlocks we are discovering in the io library.
|
msg72550 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-09-04 23:08 |
Benjamin, if you don't change the test, the deadlock problem is still
solved, it's just that the third test fails because the subprocess
stdout is empty instead of containing the desired value. It is *not*
because the subprocess doesn't print anything (if you launch an
equivalent program on the command line, everything is printed), rather
it seems that subprocess doesn't get what is printed from the child
process of the subprocess.
|
msg72551 - (view) |
Author: Benjamin Peterson (benjamin.peterson) *  |
Date: 2008-09-04 23:09 |
On Thu, Sep 4, 2008 at 6:08 PM, Antoine Pitrou <report@bugs.python.org> wrote:
>
> Antoine Pitrou <pitrou@free.fr> added the comment:
>
> Benjamin, if you don't change the test, the deadlock problem is still
> solved, it's just that the third test fails because the subprocess
> stdout is empty instead of containing the desired value. It is *not*
> because the subprocess doesn't print anything (if you launch an
> equivalent program on the command line, everything is printed), rather
> it seems that subprocess doesn't get what is printed from the child
> process of the subprocess.
Ah! My apologies for the giant misunderstanding.
|
msg72552 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-09-04 23:16 |
Instead of os.write(), it is actually sufficient to sys.stdout.flush()
at the end of the subprocess. Patch attached.
|
msg72591 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-09-05 13:29 |
Just checked that the latest patch works on Windows as well.
|
msg72716 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-09-06 22:27 |
forkthread2.patch looks good to me. to be consistent shouldn't we also
apply that fix to 2.6?
|
msg72717 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-09-06 22:34 |
Le samedi 06 septembre 2008 à 22:27 +0000, Gregory P. Smith a écrit :
> Gregory P. Smith <greg@krypto.org> added the comment:
>
> forkthread2.patch looks good to me. to be consistent shouldn't we also
> apply that fix to 2.6?
Only the ident-resetting part needs to be backported, the rest is
py3k-specific (especially _stopped vs. _Thread__stopped :-)).
|
msg72721 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2008-09-06 23:04 |
Committed in r66274, r66275. Thanks!
|
msg72727 - (view) |
Author: Gregory P. Smith (gregory.p.smith) *  |
Date: 2008-09-07 01:04 |
I backported the last bit from r66275 to release25-maint in r66279.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:56:02 | admin | set | github: 39802 |
2011-07-11 06:04:45 | nirai | set | title: malloc -> threading module can deadlock after fork |
2011-07-11 06:04:07 | nirai | set | title: threading module can deadlock after fork -> malloc |
2010-12-15 18:24:44 | bobbyi | set | nosy:
+ bobbyi
|
2009-01-27 18:39:19 | jcea | set | nosy:
+ jcea |
2008-09-07 01:04:18 | gregory.p.smith | set | messages:
+ msg72727 |
2008-09-06 23:04:57 | pitrou | set | status: open -> closed resolution: fixed messages:
+ msg72721 |
2008-09-06 22:34:13 | pitrou | set | messages:
+ msg72717 |
2008-09-06 22:27:04 | gregory.p.smith | set | messages:
+ msg72716 |
2008-09-05 13:29:34 | pitrou | set | messages:
+ msg72591 |
2008-09-04 23:17:40 | pitrou | set | files:
+ forkthread2.patch |
2008-09-04 23:16:00 | pitrou | set | messages:
+ msg72552 |
2008-09-04 23:09:53 | benjamin.peterson | set | messages:
+ msg72551 |
2008-09-04 23:08:18 | pitrou | set | messages:
+ msg72550 |
2008-09-04 23:01:57 | benjamin.peterson | set | messages:
+ msg72549 |
2008-09-04 22:55:57 | pitrou | set | keywords:
+ needs review files:
+ forkthread.patch messages:
+ msg72546 |
2008-08-24 01:56:44 | gregory.p.smith | set | priority: critical -> release blocker messages:
+ msg71824 |
2008-08-23 21:40:14 | benjamin.peterson | set | messages:
+ msg71818 |
2008-08-18 09:33:04 | pitrou | set | messages:
+ msg71315 |
2008-08-17 23:34:56 | gregory.p.smith | set | assignee: gregory.p.smith -> messages:
+ msg71301 |
2008-08-17 23:04:08 | benjamin.peterson | set | status: closed -> open resolution: fixed -> (no value) messages:
+ msg71298 versions:
+ Python 3.0, - Python 2.5 |
2008-08-17 23:01:46 | gregory.p.smith | set | status: open -> closed resolution: fixed messages:
+ msg71297 |
2008-07-23 15:29:25 | pitrou | set | messages:
+ msg70174 |
2008-07-17 23:33:46 | gregory.p.smith | set | files:
+ threading-874900-improvement-gps01.diff messages:
+ msg69928 |
2008-07-17 17:41:01 | jnoller | set | priority: release blocker -> critical messages:
+ msg69894 |
2008-07-17 17:35:04 | jnoller | set | messages:
+ msg69893 |
2008-07-17 16:57:07 | benjamin.peterson | set | messages:
+ msg69889 |
2008-07-17 16:50:33 | jnoller | set | messages:
+ msg69888 |
2008-07-17 09:02:21 | pitrou | set | messages:
+ msg69878 |
2008-07-17 03:23:42 | benjamin.peterson | set | nosy:
+ benjamin.peterson messages:
+ msg69868 |
2008-07-17 03:21:33 | gregory.p.smith | set | messages:
+ msg69867 versions:
- Python 2.6 |
2008-07-16 20:05:14 | jnoller | set | messages:
+ msg69825 |
2008-07-16 16:14:37 | jnoller | set | messages:
+ msg69795 |
2008-07-16 16:06:07 | pitrou | set | messages:
+ msg69793 |
2008-07-16 13:25:35 | jnoller | set | messages:
+ msg69784 |
2008-07-15 18:33:51 | pitrou | set | messages:
+ msg69702 |
2008-07-15 17:16:51 | jnoller | link | issue3088 dependencies |
2008-07-15 17:16:25 | jnoller | set | messages:
+ msg69696 |
2008-07-15 15:52:44 | jnoller | set | priority: high -> release blocker |
2008-07-13 06:18:03 | gregory.p.smith | set | messages:
+ msg69607 |
2008-07-12 22:23:44 | gregory.p.smith | set | files:
- fork-and-thread4.patch |
2008-07-12 22:23:32 | gregory.p.smith | set | files:
- fork-and-thread3.patch |
2008-07-12 22:23:26 | gregory.p.smith | set | files:
- fork-and-thread2.patch |
2008-07-12 22:23:20 | gregory.p.smith | set | files:
- fork-and-thread.patch |
2008-07-12 22:22:56 | gregory.p.smith | set | files:
+ fork-and-threading5-gps01.patch messages:
+ msg69603 versions:
+ Python 2.5 |
2008-07-12 21:22:01 | gregory.p.smith | set | messages:
+ msg69601 |
2008-07-12 20:28:35 | gregory.p.smith | set | assignee: gregory.p.smith nosy:
+ gregory.p.smith |
2008-07-11 22:22:10 | amaury.forgeotdarc | set | messages:
+ msg69569 |
2008-07-11 13:08:05 | amaury.forgeotdarc | set | messages:
+ msg69550 |
2008-07-11 12:29:08 | jnoller | set | messages:
+ msg69549 |
2008-07-10 17:10:30 | jnoller | set | messages:
+ msg69512 |
2008-07-09 23:59:47 | amaury.forgeotdarc | set | files:
+ fork-and-thread4.patch messages:
+ msg69492 |
2008-07-09 18:13:23 | Rhamphoryncus | set | messages:
+ msg69479 |
2008-07-09 17:46:20 | Rhamphoryncus | set | messages:
+ msg69478 |
2008-07-09 17:12:12 | amaury.forgeotdarc | set | messages:
+ msg69477 |
2008-07-09 17:07:48 | jnoller | set | messages:
+ msg69476 |
2008-07-09 13:44:19 | jnoller | set | messages:
+ msg69470 |
2008-07-09 13:19:46 | jnoller | set | messages:
+ msg69468 |
2008-07-09 12:55:52 | amaury.forgeotdarc | set | files:
+ fork-and-thread3.patch messages:
+ msg69467 |
2008-07-09 12:31:59 | jnoller | set | messages:
+ msg69466 |
2008-07-08 18:24:32 | Rhamphoryncus | set | nosy:
+ Rhamphoryncus |
2008-07-08 16:19:40 | amaury.forgeotdarc | set | files:
+ fork-and-thread2.patch messages:
+ msg69437 |
2008-07-08 12:50:30 | jnoller | set | nosy:
+ jnoller |
2008-07-08 12:25:21 | amaury.forgeotdarc | set | files:
+ fork-and-thread.patch nosy:
+ amaury.forgeotdarc messages:
+ msg69423 keywords:
+ patch |
2008-01-25 22:59:34 | pitrou | set | messages:
+ msg61695 |
2008-01-25 21:58:04 | pitrou | set | files:
+ fork_threading.py nosy:
+ pitrou messages:
+ msg61693 |
2008-01-20 19:29:53 | christian.heimes | set | priority: normal -> high type: behavior versions:
+ Python 2.6, - Python 2.3 |
2004-01-11 14:28:06 | mikemccand | create | |