<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Thank you for taking a look. In a way, I’m glad it’s not just me.<div class="">Arthur</div><div class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Aug 16, 2016, at 7:52 PM, R. Matthew Emerson <<a href="mailto:rme@clozure.com" class="">rme@clozure.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">I looked at it for a few minutes.<div class=""><br class=""></div><div class="">If you put (#_NSLog #@"pane = %@" :id pane) at the top of the function gui::make-scrolling-textview-for-pane and then do (require 'cocoa), it will crash into the lisp kernel debugger there.  You can then start lldb and attach to the crashed ccl by typing "attach 123" where the "123" is the process ID of the crashed lisp.  The kernel debugger helpfully prints the pid in the prompt.  That is, in</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">[5887] Clozure CL kernel debugger:</span></div></div><div class=""><br class=""></div><div class="">the 5887 is the pid of the lisp.  So, after typing "attach 5887", type "cont", and then type "p" at the kernel debugger prompt.  The lldb will then catch the exception that caused the crash, and you can type "bt" to get a backtrace, and use other debugger commands at that point.</div><div class=""><br class=""></div><div class="">After attaching lldb, it shows:</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">* thread #1: tid = 0x2d4716, 0x94dabcac libobjc.A.dylib`objc_msgSend + 28, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x2)</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">  * frame #0: 0x94dabcac libobjc.A.dylib`objc_msgSend + 28</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">    frame #1: 0x9532f9e8 Foundation`_NSDescriptionWithStringProxyFunc + 49</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">    frame #2: 0x9cee5442 CoreFoundation`__CFStringAppendFormatCore + 10066</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">    frame #3: 0x9cee2cc7 CoreFoundation`_CFStringCreateWithFormatAndArgumentsAux2 + 247</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">    frame #4: 0x9cf8339c CoreFoundation`_CFLogvEx2 + 124</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">    frame #5: 0x9cf9da80 CoreFoundation`_CFLogvEx3 + 144</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">    frame #6: 0x953d689e Foundation`_NSLogv + 171</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">    frame #7: 0x953bfa32 Foundation`NSLog + 26</span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div><div class=""><div class="">So, it appears to me that it died when it was trying to do the equivalent of [pane description] in order to print it out.  That leads me to suspect that pane is not a valid Objective-C object at that point, but I don't know why.</div><div class=""><br class=""></div><div class="">Obviously, it would be nice if this worked. At some point, I hope that I will be able to spend the time to debug and fix it, but I'd certainly love to get a patch from someone who is interested in figuring it out sooner.</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><div class=""><blockquote type="cite" class=""><div class="">On Aug 16, 2016, at 6:15 AM, Arthur Cater <<a href="mailto:arthur.cater@ucd.ie" class="">arthur.cater@ucd.ie</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi, I’ve just obtained a fresh CCL 1.11-r16635 from <a href="http://ccl.clozure.com/ftp/pub/release/1.11" class="">http://ccl.clozure.com/ftp/pub/release/1.11</a> and tried to start up the 32-bit version. I run into problems when (require “COCOA”).<div class=""><br class=""></div><div class="">I ran into the same problem when using CCL1.10-r16196, which was what provoked me into upgrading to CCL1-11.</div><div class=""><br class=""></div><div class="">I’m using a mid-2015 Macbook Pro with OS 10.11.5.</div><div class=""><br class=""></div><div class="">(It’s not a crucial issue for me because I just wanted from curiosity to find out if 32-bit would be faster than 64-bit for my application (because eg better cache behavior)).</div><div class=""><br class=""></div><div class="">Here is what happens: in both CCL 1.10xxx and CCL1.11-r16635 using ./dx86cl64 works fine but</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Last login: Mon Aug 15 20:47:36 on ttys000</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">ArthursSSD:~ arthur$ cd ccl11/ccl</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">ArthursSSD:ccl arthur$ ./dx86cl --no-init</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Welcome to Clozure Common Lisp Version 1.11-r16635  (DarwinX8632)!</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco; min-height: 14px;" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""></span><br class=""></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">CCL is developed and maintained by Clozure Associates. For more information</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">about CCL visit <a href="http://ccl.clozure.com/" class="">http://ccl.clozure.com</a>.  To enquire about Clozure's Common Lisp</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">consulting services e-mail <a href="mailto:info@clozure.com" class="">info@clozure.com</a> or visit <a href="http://www.clozure.com/" class="">http://www.clozure.com</a>.</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco; min-height: 14px;" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""></span><br class=""></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">? (require "COCOA")</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:mac-ui;fasls;cf-utils.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:mac-ui;fasls;libdispatch.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:mac-ui;fasls;ccl-application.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:mac-ui;fasls;event-process.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:mac-ui;fasls;cg.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;constants.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;ide-application.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-utils.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-defaults.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-typeout.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;console-window.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;console-log.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-window.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-doc.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;compile-hemlock.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;hemlock.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;;; Compiling Hemlock ...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/package.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;package.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/hemlock-ext.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;hemlock-ext.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/decls.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;decls.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/struct.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;struct.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/charmacs.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;charmacs.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/key-event.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;key-event.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/keysym-defs.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;keysym-defs.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/cocoa-hemlock.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;cocoa-hemlock.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/rompsite.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;rompsite.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/macros.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;macros.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/views.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;views.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/line.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;line.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/ring.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;ring.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/vars.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;vars.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/interp.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;interp.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/syntax.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;syntax.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/htext1.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;htext1.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/buffer.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;buffer.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/charprops.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;charprops.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/htext2.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;htext2.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/htext3.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;htext3.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/htext4.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;htext4.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/files.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;files.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/search1.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;search1.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/search2.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;search2.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/table.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;table.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/modeline.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;modeline.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/pop-up-stream.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;pop-up-stream.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/font.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;font.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/streams.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;streams.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/main.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;main.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/echo.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;echo.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/echocoms.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;echocoms.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/command.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;command.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/indent.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;indent.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/morecoms.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;morecoms.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/undo.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;undo.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/killcoms.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;killcoms.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/searchcoms.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;searchcoms.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/isearchcoms.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;isearchcoms.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/filecoms.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;filecoms.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/doccoms.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;doccoms.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/fill.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;fill.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/text.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;text.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/lispmode.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;lispmode.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/listener.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;listener.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/comments.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;comments.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/defsyn.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;defsyn.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/edit-defs.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;edit-defs.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/register.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;register.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/completion.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;completion.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/symbol-completion.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;symbol-completion.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/bindings.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;bindings.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Compiling "/Users/arthur/ccl11/ccl/cocoa-ide/hemlock/src/display.lisp"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;hemlock;bin;openmcl;display.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-editor.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-listener.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-grep.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-backtrace.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;inspector.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;project.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;cocoa-remote-lisp.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;preferences-views.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;preferences.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;processes-window.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;apropos-window.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;xapropos.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;hemlock-commands.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;file-dialogs.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;menus.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;app-delegate.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;ide-self-update.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;search-files.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;start.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">;Loading #P"ccl:cocoa-ide;fasls;xinspector.dx32fsl.newest"...</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">"COCOA"</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">("IDE-BUNDLE" "OBJC-PACKAGE" "SEQUENCE-UTILS" "NAME-TRANSLATION" "OBJC-CLOS" "OBJC-RUNTIME" "BRIDGE" "OBJC-SUPPORT" "COMPILE-HEMLOCK" "HEMLOCK" "uiop" "UIOP" "asdf" "ASDF" "COCOA")</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">? Unhandled exception 10 at 0x9b0a0438, context->regs at #xbfffdd5c</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Exception occurred while executing foreign code</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""> at _class_initialize + 5</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">received signal 10; faulting address: 0xbf7ffffc</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">? for help</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">[5244] Clozure CL kernel debugger: b</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">current thread: tcr = 0x101230, native thread ID = 0x50b, interrupts enabled</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco; min-height: 14px;" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""></span><br class=""></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco; min-height: 14px;" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""></span><br class=""></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBCA0) #x0C8290F5 : #<Anonymous Function #x0C828F5E> + 407</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBCB4) #x0CE8E6AD : #<Function (:OBJC-DISPATCH addSubview:) #x0CE8E2DE> + 975</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBCEC) #x0D573335 : #<Function MAKE-SCROLLING-TEXTVIEW-FOR-PANE #x0D572DA6> + 1423</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBD14) #x0D589EFD : #<Function TEXTPANE-FOR-TEXTSTORAGE #x0D589E16> + 231</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBD44) #x0D59210D : #<Function %HEMLOCK-FRAME-FOR-TEXTSTORAGE #x0D5920B6> + 87</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBD68) #x0D633B05 : #<Function -[HemlockListenerDocument makeWindowControllers] #x0D633866> + 671</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBD98) #x041A05FD : #<Function %PASCAL-FUNCTIONS% #x041A04A6> + 343</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBDE0) #x0C6FAB6D : #<Anonymous Function #x0C6FA976> + 503</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBDF8) #x0DD10D25 : #<Function (:OBJC-DISPATCH openUntitledDocumentOfType:display:) #x0DD10956> + 975</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBE30) #x0DD0C3F5 : #<Function -[IDEApplicationDelegate newListener:] #x0DD0C176> + 639</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBE60) #x041A05FD : #<Function %PASCAL-FUNCTIONS% #x041A04A6> + 343</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBEA8) #x0C8290F5 : #<Anonymous Function #x0C828F5E> + 407</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBEBC) #x0DD0C95D : #<Function (:OBJC-DISPATCH newListener:) #x0DD0C58E> + 975</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBEF4) #x0DD1DE45 : #<Function -[IDEApplicationDelegate applicationOpenUntitledFile:] #x0DD1DB66> + 735</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBF24) #x041A05FD : #<Function %PASCAL-FUNCTIONS% #x041A04A6> + 343</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBF6C) #x0C704C15 : #<Anonymous Function #x0C704B56> + 191</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBF7C) #x0CEF147D : #<Function (:OBJC-DISPATCH run) #x0CEF10AE> + 975</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBFB4) #x0CEEEEFD : #<Function EVENT-LOOP #x0CEEED86> + 375</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(#x005CBFDC) #x0CEF04DD : #<Function (:INTERNAL COCOA-STARTUP START-COCOA-IDE) #x0CEEFF6E> + 1391</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">[5244] Clozure CL kernel debugger: ?</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(G)  Set specified GPR to new value</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(R)  Show raw GPR/SPR register values</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(L)  Show Lisp values of tagged registers</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(F)  Show FPU registers</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(S)  Find and describe symbol matching specified name</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(B)  Show backtrace</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(T)  Show info about current thread</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(M)  Show memory areas</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(X)  Exit from this debugger, asserting that any exception was handled</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(P)  Propagate the exception to another handler (debugger or OS)</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(K)  Kill Clozure CL process</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(V)  Show Subversion revision information</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">(?)  Show this help</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">[5244] Clozure CL kernel debugger: K</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Killed: 9</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">ArthursSSD:ccl arthur$ </span></div></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div><div class=""><br class=""></div><div class="">Thanks for any advice. Anything useful I can do with the kernel debugger?</div><div class=""><br class=""></div><div class="">Arthur</div><div class="">You’ll note that </div></div>_______________________________________________<br class="">Openmcl-devel mailing list<br class=""><a href="mailto:Openmcl-devel@clozure.com" class="">Openmcl-devel@clozure.com</a><br class=""><a href="https://lists.clozure.com/mailman/listinfo/openmcl-devel" class="">https://lists.clozure.com/mailman/listinfo/openmcl-devel</a><br class=""></div></blockquote></div><br class=""></div></div></div></div></div></blockquote></div><br class=""></div></body></html>