[Mono-list] Debugging Mint
Christopher Taylor
ct@CLEMSON.EDU
Sun, 19 Oct 2003 22:46:54 -0400
I'm in the process of trying to debug mint on OS X. had a couple
questions i'll cite as i step through this-a-here-gdb-output (all my
questions start with >>>):
(gdb) r
Starting program: /gentoo/bin/mint /gentoo/bin/mcs.exe Verdict.cs
** (/gentoo/bin/mcs.exe:4889): WARNING **: The handle daemon didnt
start up properly
>>> OK, what does that mean exactly?
** (/gentoo/bin/mcs.exe:4889): WARNING **: Failed to attach shared
memory! Falling back to non-shared handles
>>> this one kinda falls into the same question scope as the one i
places above
** ERROR **: file interp.c: line 297 (get_virtual_method): assertion
failed: (res)
aborting...
Program received signal SIGABRT, Aborted.
0x90042d68 in semaphore_timedwait_signal_trap ()
(gdb) where
#0 0x90042d68 in semaphore_timedwait_signal_trap ()
#1 0x9003ef94 in _pthread_cond_wait ()
#2 0x0007dd48 in _wapi_handle_wait_signal () at handles.c:1285
#3 0x000a4d88 in WaitForMultipleObjects (numobjects=1,
handles=0x10ef2b0, waitall=1, timeout=4294967295) at wait.c:410
#4 0x0005ba1c in wait_for_tids (wait=0x10ef2b0) at threads.c:967
#5 0x0005bc24 in mono_thread_manage () at threads.c:1054
#6 0x00027c50 in mono_runtime_exec_managed_code (domain=0x2a8ed8,
main_func=0x167a0 <main_thread_handler>, main_args=0xbffff980) at
object.c:1034
#7 0x00016f24 in main (argc=3, argv=0xbffffa78) at interp.c:5085
(gdb)
>>> this last error has something to do with the thread code...not suew
what is going on here could this be a GC problem i'm having?
Much thanks,
ct