I use pygame for running experiments in cognitive science, and often I have heavy I/O demands so I like to fork off these tasks to separate processes (when using a multi-core machine) to improve performance of my code. However, I encountered a scenario where some code works on my colleague's linux machine (Ubuntu LTS), but not on my mac. Below is code representing a minimal reproducible example. My mac is a 2011 Macbook Air running 10.7.2 and using the default python 2.7.1. I tried both pygame as installed via pre-built binary, and I also then tried after installing both SDL and pygame from source.

import pygame
import multiprocessing
pygame.init()

def f():
    while True:
        pygame.event.pump() #if this is replaced by pass, this code works

p = multiprocessing.Process(target=f)
p.start()

while True:
    pass

As noted in the code, it seems that the culprit is putting pygame.event.pump() in a separate process. When I run this on my mac, I first get the following printed repeatedly in terminal:

The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec().
Break on __THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_COREFOUNDATION_FUNCTIONALITY___YOU_MUST_EXEC__() to debug.

Then I get a crash report as copied to this gist.

Any suggestions for how to fix this?

link|improve this question

64% accept rate
2  
Wow, you have a minimal example and a clear, concise described phenomenon that sounds a lot like a bug. Why not report it? Seems like you'd have better luck there than SO. – Brian Cain Nov 17 '11 at 3:51
Good idea; submitted. – Mike Nov 17 '11 at 13:50
feedback

2 Answers

up vote 1 down vote accepted
+300

Maybe you should initialize the pygame (which initialize SDL-> OpenGL) in each forked (child) process like in sample:

import multiprocessing

def f():
  import pygame
  pygame.init()

  while True:
    pygame.event.pump()

if __module__ == "__main__"
  p = multiprocessing.Process(target=f)
  p.start()

  import pygame
  pygame.init()

  while True:
    pygame.event.pump()
link|improve this answer
That prevents a crash, but if I attempt to also use pygame in the main process (e.g. for drawing to the screen), I get the same behaviour as reported earlier. – Mike Nov 17 '11 at 23:11
@Mike You shuldd initialize pygame in main process only after forking children. The ideea is to avoid pygame initialization before forking! I updated the example to reflect this. – Nicolae Dascalu Nov 17 '11 at 23:16
Almost there! While the code you sent works, the idea breaks down when you actually try to collect input in the child while presenting anything fullscreen in the parent because as soon as the parent creates a fullscreen window it steals focus from the child, leaving the child unable to detect input. Any thoughts on how to solve that? – Mike Nov 18 '11 at 0:39
@Mike Delay your full screen mode, after all children are fully intialized from the pygame perspective, using a multiprocessing sinchronization objects. If you have no experince with process synchrnization objects just put a sleep(few seconds) only in main process, to see if you are on good track, google it or later I can help you with synchronization, also. – Nicolae Dascalu Nov 18 '11 at 1:02
I actually tried that earlier (gist.github.com/1375198), but no luck. – Mike Nov 18 '11 at 1:12
show 1 more comment
feedback

Have you tried using threads instead of processes? I've had issues before using the python multiprocessing module in OS X. http://docs.python.org/library/threading.html

link|improve this answer
1  
My understanding is that threads in python are still subject to the global interpreter lock, diminishing their benefit, and furthermore that SDL (on which pygame relies) has threading issues. – Mike Nov 17 '11 at 13:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.