[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] BUG: pygame 1.8 crash on osx in run_tests.py



Excellent.

I have tracked the problem down to the 

timidity/common.c 

and a bogus linked list path finder, see add_to_pathlist()

timidity is krufterific!

On Sat, Nov 11, 2006 at 06:54:24PM -0500, Noah Kantrowitz wrote:
> 
> On Nov 11, 2006, at 6:42 PM, Noah Kantrowitz wrote:
> 
> >On Nov 11, 2006, at 6:37 PM, Sean Jensen-Grey wrote:
> >
> >>I haven't been able to build a framework version of sdl_mixer on osx
> >>intel. I determined that yes it is crashing in timidity. If I  
> >>remove sdl_mixer
> >>the crashes go away.
> >>
> >>While running ktrace produces a ktrace.log
> >>
> >>ktrace -t c python run_tests.py
> >[snip]
> >>Is there a way to turn the open calls into readable strings  
> >>instead of
> >>pointers to strings?
> >
> >Try "ktrace -t ci"
> 
> Actually what you want is this:
> ktrace -t cn <blah>
> kdump | grep -C2 open
> 
> The NAMI translation is shown on the line under the open() call
> 
> --Naoh