Embedding and threads ?
Martin v. Löwis
loewis at informatik.hu-berlin.de
Mon Jun 3 08:19:19 EDT 2002
More information about the Python-list mailing list
Mon Jun 3 08:19:19 EDT 2002
- Previous message (by thread): Embedding and threads ?
- Next message (by thread): Embedding and threads ?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Bo Lorentsen <bl at netgroup.dk> writes: > Pseudo, is because it can't really take advantage of SMP (or the system > process scheduler), and its the software that controlles the > "scheduling". Yes, it can't make use of threads, but no, it is not (necessarily) software scheduled. Python gives up the GIL when executing byte code every so many instructions; it is the the choice of the operating system to schedule then next thread to run. If not executing byte code, each Python thread gives up the GIL when starting a long-running operation (such as a blocking OS call). So under normal conditions, on a single processor, with enough runnable Python threads: the processor will always be busy, and all threads will make progress. You can hardly ever tell the difference to free threading. Regards, Martin
- Previous message (by thread): Embedding and threads ?
- Next message (by thread): Embedding and threads ?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list