App crashes when launched from finder, but not when launched from debugger or command line
App crashes when launched from finder, but not when launched from debugger or command line
- Subject: App crashes when launched from finder, but not when launched from debugger or command line
- From: Rick Mann <email@hidden>
- Date: Mon, 17 Nov 2008 02:10:21 -0800
I have a Carbon app that exhibits a crash when launched either by
double-clicking it in the Finder, or clicking on its dock icon. But if
I launch it from within Xcode (with debugger), or by executing the
Contents/MacOS/<executable>, or by using the "open" command-line tool,
it works fine.
The crash occurs when bringing up a utility window. It always happens
in the same place, a Nano framework method called NHIWindow::Select().
This method is straightforward:
void NHIWindow::Select(bool makeVisible)
{
// Select the window
SelectWindow(mWindow);
if (makeVisible)
SetVisible(true);
}
I call this method successfully on other windows in my app without
trouble. The window that causes the crash is a floating utility
window. When I look at the values of things like this and mWindow,
they look sane. I tried printf-ing their values in this method, but
nothing prints in the crash. I've included a crash report.
Any ideas? What's different about the four different ways of launching
the file?
TIA,
Rick
Process: SatTrackX [4891]
Path: /Users/rmann/LZRepo/SatTrackX/branches/
CarbonNanoVersion/xcode/build/Debug/SatTrackX.app/Contents/MacOS/
SatTrackX
Identifier: com.latencyzero.SatTrackX
Version: 1.0d5 (1.0d5)
Code Type: X86 (Native)
Parent Process: launchd [90]
Date/Time: 2008-11-16 22:51:45.673 -0800
OS Version: Mac OS X 10.5.5 (9F33)
Report Version: 6
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000037
Crashed Thread: 0
Thread 0 Crashed:
0 com.latencyzero.SatTrackX 0x000f91e9 NHIWindow::Select(bool)
+ 49
1 com.latencyzero.SatTrackX 0x00002ae8
CApplication::showTimeWindow() + 248 (CApplication.cpp:472)
2 com.latencyzero.SatTrackX 0x00006a45
CApplication::DoEventCommandProcess(NCarbonEvent&) + 279
(CApplication.cpp:396)
3 com.latencyzero.SatTrackX 0x000ac073
NCarbonEventHandler::DispatchEvent(NCarbonEvent&,
OpaqueEventHandlerCallRef*) + 2515
4 com.latencyzero.SatTrackX 0x000b11cb
NCarbonEventHandler::EventHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 187
5 com.apple.HIToolbox 0x9534e303
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 1181
6 com.apple.HIToolbox 0x9534d73d
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 405
7 com.apple.HIToolbox 0x9536a092 SendEventToEventTarget +
52
8 com.apple.HIToolbox 0x9539e31d
SendHICommandEvent(unsigned long, HICommand const*, unsigned long,
unsigned long, unsigned char, OpaqueEventTargetRef*,
OpaqueEventTargetRef*, OpaqueEventRef**) + 411
9 com.apple.HIToolbox 0x953c4b6f
SendMenuCommandWithContextAndModifiers + 59
10 com.apple.HIToolbox 0x953c4b2c
SendMenuItemSelectedEvent + 134
11 com.apple.HIToolbox 0x953c4a3e
FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*,
unsigned long, unsigned long, unsigned long, unsigned char) + 162
12 com.apple.HIToolbox 0x953a15cc
MenuSelectCore(MenuData*, Point, double, unsigned long,
OpaqueMenuRef**, unsigned short*) + 640
13 com.apple.HIToolbox 0x95430248 MenuSelect + 104
14 com.apple.HIToolbox 0x954301b8
HIMenuBar::HandleMouseEvent(OpaqueEventRef*) + 92
15 com.apple.HIToolbox 0x9534e811
HIObject::EventHook(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*) + 173
16 com.apple.HIToolbox 0x9534e303
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 1181
17 com.apple.HIToolbox 0x9534d73d
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 405
18 com.apple.HIToolbox 0x9536a092 SendEventToEventTarget +
52
19 com.apple.HIToolbox 0x9537c7c3
ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 2579
20 com.apple.HIToolbox 0x9534e6bc
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 2134
21 com.apple.HIToolbox 0x9534d73d
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 405
22 com.apple.HIToolbox 0x9536a092 SendEventToEventTarget +
52
23 com.apple.HIToolbox 0x953d6c60 ToolboxEventDispatcher +
86
24 com.apple.HIToolbox 0x953d34ba RunApplicationEventLoop
+ 222
25 com.latencyzero.SatTrackX 0x0004a68c NApplication::Run() + 172
26 com.latencyzero.SatTrackX 0x00002f8a NMain() + 44
27 com.latencyzero.SatTrackX 0x00002fe3 main + 17
(CApplication.cpp:62)
28 com.latencyzero.SatTrackX 0x000022ee start + 54
Thread 1:
0 libSystem.B.dylib 0x960ef68e __semwait_signal + 10
1 libSystem.B.dylib 0x9611a36d pthread_cond_wait
$UNIX2003 + 73
2 com.apple.ColorSync 0x9338d45c
pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
3 com.apple.ColorSync 0x9339fd8e CMMConvTask(void*) + 54
4 libSystem.B.dylib 0x961196f5 _pthread_start + 321
5 libSystem.B.dylib 0x961195b2 thread_start + 34
Thread 2:
0 libSystem.B.dylib 0x961385e2 select$DARWIN_EXTSN + 10
1 libSystem.B.dylib 0x961196f5 _pthread_start + 321
2 libSystem.B.dylib 0x961195b2 thread_start + 34
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x00000007 ebx: 0x000f91ca ecx: 0x00000000 edx: 0x00000000
edi: 0x00000000 esi: 0x00647060 ebp: 0xbfffe298 esp: 0xbfffe270
ss: 0x0000001f efl: 0x00010246 eip: 0x000f91e9 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0x00000037
Binary Images:
0x1000 - 0x22bfff +com.latencyzero.SatTrackX 1.0d5 (1.0d5)
<e3aed3034a41a8bb7158e40ebfb83a14> /Users/rmann/LZRepo/SatTrackX/
branches/CarbonNanoVersion/xcode/build/Debug/SatTrackX.app/Contents/
MacOS/SatTrackX
0x711000 - 0x712fff +com.ecamm.pluginloader Ecamm Plugin Loader
v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/
Contents/MacOS/Ecamm Plugin Loader
0x15776000 - 0x1595efff com.apple.RawCamera.bundle 2.0.11 (410)
<7704cc57f7daceb81672bfdc4434da40> /System/Library/CoreServices/
RawCamera.bundle/Contents/MacOS/RawCamera
0x8fe00000 - 0x8fe2da53 dyld 96.2 (???)
<5013f43c4d2c33c9619011f103ec3238> /usr/lib/dyld
0x90021000 - 0x9005ffff libGLImage.dylib ??? (???)
<f0fe2252f6b1ca341bc7837fe2dcf11a> /System/Library/Frameworks/
OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x90060000 - 0x900bdffb libstdc++.6.dylib ??? (???)
<6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc++.6.dylib
0x900be000 - 0x90170ffb libcrypto.0.9.7.dylib ??? (???)
<69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
0x902aa000 - 0x902baffc com.apple.LangAnalysis 1.6.4 (1.6.4)
<8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
LangAnalysis.framework/Versions/A/LangAnalysis
0x902bb000 - 0x9033ffe3 com.apple.CFNetwork 339.5 (339.5)
<c6565c13b0356e1d4bb99a68398d558b> /System/Library/Frameworks/
CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/
Versions/A/CFNetwork
0x90340000 - 0x9035efff libresolv.9.dylib ??? (???)
<a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
0x904ad000 - 0x904b8fe7 libCSync.A.dylib ??? (???)
<86d2f2e167ba6f74f45a186f5c7f8980> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x904b9000 - 0x90580ff2 com.apple.vImage 3.0 (3.0) /System/Library/
Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/
Versions/A/vImage
0x90581000 - 0x90662ff7 libxml2.2.dylib ??? (???)
<1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
0x906b4000 - 0x906b4ffd com.apple.Accelerate 1.4.2 (Accelerate
1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/
Accelerate
0x906b5000 - 0x906d0ffb libPng.dylib ??? (???)
<4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libPng.dylib
0x906d1000 - 0x906f0ffa libJPEG.dylib ??? (???)
<e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libJPEG.dylib
0x906f7000 - 0x906f7ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib
3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/
Frameworks/vecLib.framework/Versions/A/vecLib
0x906f8000 - 0x90708fff com.apple.speech.synthesis.framework 3.7.1
(3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x90709000 - 0x90790ff7 libsqlite3.0.dylib ??? (???)
<11311084bc4be9d4555dfac74fe7218a> /usr/lib/libsqlite3.0.dylib
0x90794000 - 0x907a0ff9 com.apple.helpdata 1.0.1 (14.2) /System/
Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x907a1000 - 0x907cefeb libvDSP.dylib ??? (???)
<2ee4eb005babc90eaa352b33eb09226e> /System/Library/Frameworks/
Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
libvDSP.dylib
0x907cf000 - 0x90889fe3 com.apple.CoreServices.OSServices 226.5
(226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/
CoreServices.framework/Versions/A/Frameworks/OSServices.framework/
Versions/A/OSServices
0x9088a000 - 0x9088efff libGIF.dylib ??? (???)
<572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libGIF.dylib
0x9088f000 - 0x90f2bfff com.apple.CoreGraphics 1.351.33 (???)
<481a77e81d9e53589a05e80cfa90bbb5> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/CoreGraphics
0x90f2c000 - 0x90f2efff com.apple.securityhi 3.0 (30817)
<dc95af76e8e2db99907708472ef434bf> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/
SecurityHI
0x91215000 - 0x91215ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/
Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x91216000 - 0x91224ffd libz.1.dylib ??? (???)
<545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
0x91225000 - 0x9122bfff com.apple.print.framework.Print 218.0.2
(220.1) <2979f3be4e7e8adc875bf21658e9be94> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x91353000 - 0x9139cfef com.apple.Metadata 10.5.2 (398.22)
<a6b676925dd832780daf991e79adfebd> /System/Library/Frameworks/
CoreServices.framework/Versions/A/Frameworks/Metadata.framework/
Versions/A/Metadata
0x9139d000 - 0x913edff7 com.apple.HIServices 1.7.0 (???)
<f83f0cb838a646c69f08fd38a31265f3> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
HIServices.framework/Versions/A/HIServices
0x913ee000 - 0x916c8ff3 com.apple.CoreServices.CarbonCore 786.6
(786.6) <5682aae1e2cf5ae750d5a4dea98c084c> /System/Library/Frameworks/
CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/
Versions/A/CarbonCore
0x916c9000 - 0x916d0ff7 libCGATS.A.dylib ??? (???)
<973c01cc14f3d673270e269ccfaec660> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x916d1000 - 0x916f9ff7 com.apple.shortcut 1 (1.0)
<5b57f8f162f77a1739b436900517d672> /System/Library/PrivateFrameworks/
Shortcut.framework/Versions/A/Shortcut
0x926b0000 - 0x9287efff com.apple.security 5.0.4 (34102)
<f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/
Security.framework/Versions/A/Security
0x9289d000 - 0x92cadfef libBLAS.dylib ??? (???) /System/Library/
Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/
Versions/A/libBLAS.dylib
0x92cae000 - 0x92cc4fe7 com.apple.CoreVideo 1.5.1 (1.5.1)
<001910004257f1386724398f584b30b5> /System/Library/Frameworks/
CoreVideo.framework/Versions/A/CoreVideo
0x92cc5000 - 0x92d50fff com.apple.framework.IOKit 1.5.1 (???)
<324526f69e1443f2f9fb722cc88a23ec> /System/Library/Frameworks/
IOKit.framework/Versions/A/IOKit
0x92d51000 - 0x92dadff7 com.apple.htmlrendering 68 (1.1.3)
<a9f65fa1c4668dc7c49af5bf7d5287ad> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/
Versions/A/HTMLRendering
0x92f13000 - 0x92f90fef libvMisc.dylib ??? (???) /System/Library/
Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/
Versions/A/libvMisc.dylib
0x9300d000 - 0x9300dffc com.apple.audio.units.AudioUnit 1.5 (1.5) /
System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x9300e000 - 0x930a1ff3 com.apple.ApplicationServices.ATS 3.4 (???)
<a96cd91dabc68545183c11de8f92c7e4> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
Versions/A/ATS
0x930a7000 - 0x9318cff3 com.apple.CoreData 100.1 (186)
<9187380c86061cb4c37b6bec8abeae75> /System/Library/Frameworks/
CoreData.framework/Versions/A/CoreData
0x9318d000 - 0x932b1fe3 com.apple.audio.toolbox.AudioToolbox 1.5.1
(1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/
AudioToolbox
0x932fb000 - 0x93307ffe libGL.dylib ??? (???) /System/Library/
Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x93315000 - 0x93357fef com.apple.NavigationServices 3.5.2 (163)
<91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/
Versions/A/NavigationServices
0x93358000 - 0x93358ff8 com.apple.ApplicationServices 34 (34)
<e9cd7c823062c4382d89e3c9997f4739> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/ApplicationServices
0x93359000 - 0x93359ff8 com.apple.Cocoa 6.5 (???)
<e9318c93615b27231498bbe585b8da98> /System/Library/Frameworks/
Cocoa.framework/Versions/A/Cocoa
0x9335a000 - 0x93425fff com.apple.ColorSync 4.5.1 (4.5.1) /System/
Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
ColorSync.framework/Versions/A/ColorSync
0x93494000 - 0x93544fff edu.mit.Kerberos 6.0.12 (6.0.12)
<da7253e3fb7e47e46cb46d47ed320ffc> /System/Library/Frameworks/
Kerberos.framework/Versions/A/Kerberos
0x93545000 - 0x9354afff com.apple.CommonPanels 1.2.4 (85)
<3b64ef0de184d09c6f99a1a7e77e42be> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/
A/CommonPanels
0x938ac000 - 0x938dbfe3 com.apple.AE 402.2 (402.2)
<d0da935e781446faa4563e7a9c587cce> /System/Library/Frameworks/
CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x9394f000 - 0x939a8ff7 libGLU.dylib ??? (???) /System/Library/
Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x93a1c000 - 0x93ac3feb com.apple.QD 3.11.54 (???)
<b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/QD.framework/
Versions/A/QD
0x93ac4000 - 0x93f95f3e libGLProgrammability.dylib ??? (???)
<fe1a33d4919c121aab831ad516da6a89> /System/Library/Frameworks/
OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x93fa6000 - 0x93faafff libmathCommon.A.dylib ??? (???) /usr/lib/
system/libmathCommon.A.dylib
0x93ffa000 - 0x94054ff7 com.apple.CoreText 2.0.3 (???)
<1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/
Versions/A/CoreText
0x94055000 - 0x940d4ff5 com.apple.SearchKit 1.2.1 (1.2.1)
<3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/
CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/
Versions/A/SearchKit
0x9416b000 - 0x9416cffc libffi.dylib ??? (???)
<596e0dbf626b211741cecaa9698f271b> /usr/lib/libffi.dylib
0x9416d000 - 0x9423bff3 com.apple.JavaScriptCore 5525.18 (5525.18)
<672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/
JavaScriptCore.framework/Versions/A/JavaScriptCore
0x9423c000 - 0x944b7fe7 com.apple.Foundation 6.5.6 (677.21)
<5cfa0aa8b9b43193955d601ba6c2591a> /System/Library/Frameworks/
Foundation.framework/Versions/C/Foundation
0x944b8000 - 0x944c0fff com.apple.DiskArbitration 2.2.1 (2.2.1)
<42908e7ecc17a83cec4afef2850ec79e> /System/Library/Frameworks/
DiskArbitration.framework/Versions/A/DiskArbitration
0x944c1000 - 0x944d9fff com.apple.openscripting 1.2.8 (???)
<572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/
Versions/A/OpenScripting
0x944da000 - 0x94554ff8 com.apple.print.framework.PrintCore 5.5.3
(245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
PrintCore.framework/Versions/A/PrintCore
0x94555000 - 0x948f2fe7 com.apple.QuartzCore 1.5.5 (1.5.5)
<82435993614a3fff1236be18f82188bf> /System/Library/Frameworks/
QuartzCore.framework/Versions/A/QuartzCore
0x94981000 - 0x9498efe7 com.apple.opengl 1.5.7 (1.5.7)
<db835aeb1ffca9f5b5647dd0829a5b2c> /System/Library/Frameworks/
OpenGL.framework/Versions/A/OpenGL
0x9498f000 - 0x9518cfef com.apple.AppKit 6.5.3 (949.34)
<4c7af9b12c894d4a528fda29377f143b> /System/Library/Frameworks/
AppKit.framework/Versions/C/AppKit
0x9518d000 - 0x951cefe7 libRIP.A.dylib ??? (???)
<1f09316e876fe813271bdfb9eb5b229e> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x951cf000 - 0x951e3ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/
Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
ImageCapture.framework/Versions/A/ImageCapture
0x951ec000 - 0x952ccfff libobjc.A.dylib ??? (???)
<7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
0x95307000 - 0x95346fef libTIFF.dylib ??? (???)
<3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libTIFF.dylib
0x95347000 - 0x9564efff com.apple.HIToolbox 1.5.4 (???)
<5e2af960b53059c648af4adb99471032> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/
HIToolbox
0x9564f000 - 0x95c9ffff com.apple.WebCore 5525.18.1 (5525.18.1)
<9fcf69305c5b48dd8a5cb77107f66c7a> /System/Library/Frameworks/
WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/
WebCore
0x95ca0000 - 0x95cd7fff com.apple.SystemConfiguration 1.9.2 (1.9.2)
<8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/
SystemConfiguration.framework/Versions/A/SystemConfiguration
0x95d0f000 - 0x95d16fe9 libgcc_s.1.dylib ??? (???)
<28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib
0x95de1000 - 0x95df7fff com.apple.DictionaryServices 1.0.0 (1.0.0)
<7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/
CoreServices.framework/Versions/A/Frameworks/
DictionaryServices.framework/Versions/A/DictionaryServices
0x95df8000 - 0x95e32fe7 com.apple.coreui 1.2 (62) /System/Library/
PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x95e33000 - 0x95e57fff libxslt.1.dylib ??? (???)
<ea5c8d349a3934ecc2b936f9cdfaba04> /usr/lib/libxslt.1.dylib
0x95e58000 - 0x95e61fff com.apple.speech.recognition.framework 3.7.24
(3.7.24) <6a6518b392d3d41ace3dcea69d6809d9> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/
Versions/A/SpeechRecognition
0x95e62000 - 0x95ef5fff com.apple.ink.framework 101.3 (86)
<dfa9debcd7537849d228021d1d9c0f63> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x95ef6000 - 0x95f21fe7 libauto.dylib ??? (???)
<2072d673706bbe463ed2426af57a28d7> /usr/lib/libauto.dylib
0x95f23000 - 0x96069ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4)
<6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/ImageIO
0x9606a000 - 0x960e6feb com.apple.audio.CoreAudio 3.1.0 (3.1)
<be7120e91df91425e904d5327b4338b7> /System/Library/Frameworks/
CoreAudio.framework/Versions/A/CoreAudio
0x960e7000 - 0x96247ff3 libSystem.B.dylib ??? (???)
<a12f397abf2285077b89bd726bff5b18> /usr/lib/libSystem.B.dylib
0x963ce000 - 0x9648bfff com.apple.WebKit 5525.18 (5525.18)
<7e41e38368974ed048c2f027a961dbd4> /System/Library/Frameworks/
WebKit.framework/Versions/A/WebKit
0x96581000 - 0x965a9fff libcups.2.dylib ??? (???)
<1031ca5b692b80a9568e57a342b60157> /usr/lib/libcups.2.dylib
0x965aa000 - 0x965acff5 libRadiance.dylib ??? (???)
<8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libRadiance.dylib
0x965ad000 - 0x965adffa com.apple.CoreServices 32 (32)
<2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/
CoreServices.framework/Versions/A/CoreServices
0x965ae000 - 0x966e6ff7 libicucore.A.dylib ??? (???)
<3d8fdaf51c2664ab620f1688203caf26> /usr/lib/libicucore.A.dylib
0x9670c000 - 0x9670ffff com.apple.help 1.1 (36)
<175489f8adf287b3ebd259362b0292c0> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x96710000 - 0x96a32fe2 com.apple.QuickTime 7.5.5 (990.7)
<87077cec43c7e9b02c8ee80e50b8b81f> /System/Library/Frameworks/
QuickTime.framework/Versions/A/QuickTime
0x96a68000 - 0x96a6fffe libbsm.dylib ??? (???)
<5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
0x96a70000 - 0x96a70fff com.apple.Carbon 136 (136)
<ec1d4184925e652dbe1b9200a5a552ec> /System/Library/Frameworks/
Carbon.framework/Versions/A/Carbon
0x96a71000 - 0x96ba3fff com.apple.CoreFoundation 6.5.4 (476.15)
<e2869ad6dc1dd289f21b305b0bea9158> /System/Library/Frameworks/
CoreFoundation.framework/Versions/A/CoreFoundation
0x96baa000 - 0x96c36ff7 com.apple.LaunchServices 290 (290)
<61af37aac50984d220dd176f777e3b72> /System/Library/Frameworks/
CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/
Versions/A/LaunchServices
0x96c37000 - 0x96c41feb com.apple.audio.SoundManager 3.9.2 (3.9.2)
<caa41909dcb5a18a94bc68cd13999bd5> /System/Library/Frameworks/
Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/
A/CarbonSound
0x96c42000 - 0x97000fea libLAPACK.dylib ??? (???) /System/Library/
Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/
Versions/A/libLAPACK.dylib
0x97001000 - 0x9708bfe3 com.apple.DesktopServices 1.4.7 (1.4.7)
<d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/
DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x9708c000 - 0x9708cffb com.apple.installserver.framework 1.0 (8) /
System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/
InstallServer
0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/
libobjc.A.dylib
0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/
libSystem.B.dylib
--
Rick
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden