discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Apple report of GNUMail Crash


From: Dr. H. Nikolaus Schaller
Subject: Re: Apple report of GNUMail Crash
Date: Sun, 22 Jun 2014 10:55:27 +0200

Am 22.06.2014 um 07:33 schrieb Riccardo Mottola <riccardo.mottola@libero.it>:

> Hi,
> 
> I got a crasher in GNUMail. I left it running for hours, it probably lost 
> connection (I got an alert panel that the connection to my IMAP server got 
> lost). Trying to click again on my inbox showed the content, regenerated the 
> message and then I got a crash. Most probably something handles a 
> disconnection badly. Closing and reopening the application reaccesed 
> everything smoothly (I'm sending this message from GNUMail/Mac).
> 
> Out of curiosity I copy-paste the report that Apple was trying to send to 
> itself (smart, is there a way to redirect that information to another 
> address?).

Somethimes these reports are a little difficult to read.

But what I can see from it:
* there is a notification dealloc failing
* which has been autoreleased
* while firing a timer

So the location to search for are notifications sent from timer delegate 
callbacks. And it appears to be a dangling pointer (the notification object 
being already deallocated?).

Therefore, look for NSTimers and timers sending notifications (but 
unfortunately they may be sent implicitily).

What else you could do is to attach gdb from terminal.app to the process number 
and wait until it is crashing. Or just run it with the debugger from Xcode for 
hours until the crash appears.

> 
> I'd say that something got deallocated during the disconnection and that it 
> tries to be accessed causing a segfault. trying to understand where and what 
> seems hard from this, because this problem cannot be easily reporduced in a 
> debugger, it is quite occasional.
> 
> Second, I wonder, why there are 4 threads! GNUMail is single-threaded. Are 
> these threaded automatically added by Cocoa somehow?

Yes. Cocoa's AppKit runs some background threads.

One runs __CFSocketManager which I assume handles sockets (while they are 
open). The next one runs NSUIHeartBeat which I think is used to sync the Menus 
and also pings the server to know when an application is stuck. For the last 
two I have no idea.

-- hns

> 
> Riccardo
> 
> 
> Date/Time:      2014-06-22 07:20:51.381 +0200
> OS Version:     10.4.11 (Build 8S165)
> Report Version: 4
> 
> Command: GNUMail
> Path:    /Applications/GNUMail.app/Contents/MacOS/GNUMail
> Parent:  WindowServer [57]
> 
> Version: GNUMail version 1.2.1 (1.2.1)
> 
> PID:    1046
> Thread: 0
> 
> Exception:  EXC_BAD_ACCESS (0x0001)
> Codes:      KERN_INVALID_ADDRESS (0x0001) at 0xe0d863b3
> 
> Thread 0 Crashed:
> 0   <<00000000>>      0xfffeff20 objc_msgSend_rtp + 32
> 1   com.apple.Foundation              0x92c60660 -[NSConcreteNotification 
> dealloc] + 56
> 2   com.apple.Foundation              0x92bd2c68 NSPopAutoreleasePool + 536
> 3   com.apple.Foundation              0x92bf9324 __NSFireTimer + 248
> 4   com.apple.CoreFoundation          0x907f2384 __CFRunLoopDoTimer + 184
> 5   com.apple.CoreFoundation          0x907decfc __CFRunLoopRun + 1680
> 6   com.apple.CoreFoundation          0x907de2b0 CFRunLoopRunSpecific + 268
> 7   com.apple.HIToolbox               0x932bcb20 RunCurrentEventLoopInMode + 
> 264
> 8   com.apple.HIToolbox               0x932bc1b4 ReceiveNextEventCommon + 380
> 9   com.apple.HIToolbox               0x932bc020 
> BlockUntilNextEventMatchingListInMode + 96
> 10  com.apple.AppKit                  0x937e9734 _DPSNextEvent + 384
> 11  com.apple.AppKit                  0x937e93f8 -[NSApplication 
> nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
> 12  com.apple.AppKit                  0x937e593c -[NSApplication run] + 472
> 13  com.apple.AppKit                  0x938d6458 NSApplicationMain + 452
> 14  ...collaboration-world.GNUMail    0x00002cfc main + 288
> 15  ...collaboration-world.GNUMail    0x000027fc _start + 760
> 16  ...collaboration-world.GNUMail    0x00002500 start + 48
> 
> Thread 1:
> 0   libSystem.B.dylib                 0x9001f48c select + 12
> 1   com.apple.CoreFoundation          0x907f1240 __CFSocketManager + 472
> 2   libSystem.B.dylib                 0x9002b908 _pthread_body + 96
> 
> Thread 2:
> 0   libSystem.B.dylib                 0x9004a2e8 syscall_thread_switch + 8
> 1   com.apple.Foundation              0x92c0e940 +[NSThread sleepUntilDate:] 
> + 152
> 2   com.apple.AppKit                  0x93886660 -[NSUIHeartBeat 
> _heartBeatThread:] + 1100
> 3   com.apple.Foundation              0x92bf64d8 forkThreadForFunction + 108
> 4   libSystem.B.dylib                 0x9002b908 _pthread_body + 96
> 
> Thread 3:
> 0   libSystem.B.dylib                 0x9002ec8c kevent + 12
> 1   com.apple.DesktopServices         0x92b09e50 
> TFSNotificationTask::FSNotificationTaskProc(void*) + 56
> 2   ...ple.CoreServices.CarbonCore    0x90bc665c PrivateMPEntryPoint + 76
> 3   libSystem.B.dylib                 0x9002b908 _pthread_body + 96
> 
> Thread 4:
> 0   libSystem.B.dylib                 0x9002bfc8 semaphore_wait_signal_trap + 
> 8
> 1   libSystem.B.dylib                 0x90030aac pthread_cond_wait + 480
> 2   ...ple.CoreServices.CarbonCore    0x90bc684c MPWaitOnQueue + 224
> 3   com.apple.DesktopServices         0x92b0a4cc 
> TNodeSyncTask::SyncTaskProc(void*) + 116
> 4   ...ple.CoreServices.CarbonCore    0x90bc665c PrivateMPEntryPoint + 76
> 5   libSystem.B.dylib                 0x9002b908 _pthread_body + 96
> 
> Thread 0 crashed with PPC Thread State 64:
>  srr0: 0x00000000fffeff20 srr1: 0x000000000000d030                        
> vrsave: 0x0000000000000000
>    cr: 0x44028282          xer: 0x0000000000000007   lr: 0x0000000092c60660  
> ctr: 0x000000009012adf8
>    r0: 0x0000000092c60654   r1: 0x00000000bfffe1a0   r2: 0x00000000e0d863b3   
> r3: 0x000000000047aba0
>    r4: 0x0000000090aaa904   r5: 0x00000000a37e108c   r6: 0x00000000ffffffff   
> r7: 0x0000000003aef000
>    r8: 0x000000005e4e3e2c   r9: 0x0000000000000df3  r10: 0x0000000000000384  
> r11: 0x000000006f54a904
>   r12: 0x000000000678421b  r13: 0x0000000000000000  r14: 0x0000000000000001  
> r15: 0x0000000000000001
>   r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x00000000000079bf  
> r19: 0x0000000000000000
>   r20: 0x00000000073cfba1  r21: 0x000000003df16672  r22: 0x00000000004117d8  
> r23: 0x00000000004117d0
>   r24: 0x00000000004116c0  r25: 0x00000000004117d8  r26: 0x0000000000000001  
> r27: 0x00000000000000a1
>   r28: 0x000000000587ce10  r29: 0x00000000a2bf1e08  r30: 0x000000000040d8b0  
> r31: 0x0000000092c60628
> 
> Binary Images Description:
>    0x1000 -     0x2fff com.collaboration-world.GNUMail GNUMail version 1.2.1 
> (1.2.1)  /Applications/GNUMail.app/Contents/MacOS/GNUMail
>   0x15000 -    0x18fff com.apple.ink.component 1.2 (63)       
> /System/Library/Components/Ink.component/Contents/MacOS/Ink
>  0x205000 -   0x2f3fff libxml2.2.dylib        /usr/lib/libxml2.2.dylib
> 0x5087000 -  0x5126fff net.sourceforge.webcam-osx.common 0.9.2        
> /Library/QuickTime/macam.component/Contents/MacOS/macam
> 0x10000000 - 0x10038fff com.collaboration-world.Pantomime Pantomime version 
> 1.2.0 (1.2.0)     
> /Applications/GNUMail.app/Contents/Frameworks/Pantomime.framework/Versions/A/Pantomime
> 0x14000000 - 0x140a8fff GNUMail 1.2.0 
> /Applications/GNUMail.app/Contents/Frameworks/GNUMail.framework/Versions/A/GNUMail
> 0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
> 0x90000000 - 0x901bcfff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
> 0x90214000 - 0x90219fff libmathCommon.A.dylib         
> /usr/lib/system/libmathCommon.A.dylib
> 0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???)        
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
> 0x90293000 - 0x90344fff ATS   
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
> 0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.85 (???) 
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
> 0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)      
> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
> 0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)     
> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
> 0x908e0000 - 0x909e2fff libicucore.A.dylib    /usr/lib/libicucore.A.dylib
> 0x90a3c000 - 0x90ac0fff libobjc.A.dylib       /usr/lib/libobjc.A.dylib
> 0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4.1 (???) 
> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
> 0x90b72000 - 0x90b84fff libauto.dylib         /usr/lib/libauto.dylib
> 0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.19 (681.21)     
> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
> 0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 
> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
> 0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.24    
> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
> 0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0)   
> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
> 0x91011000 - 0x91092fff com.apple.SearchKit 1.0.8     
> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
> 0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36)    
> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
> 0x91112000 - 0x91120fff libz.1.dylib  /usr/lib/libz.1.dylib
> 0x91123000 - 0x912defff com.apple.security 4.6 (29770)        
> /System/Library/Frameworks/Security.framework/Versions/A/Security
> 0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2       
> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
> 0x913ed000 - 0x913f5fff libbsm.dylib  /usr/lib/libbsm.dylib
> 0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3   
> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
> 0x91434000 - 0x9143ffff libgcc_s.1.dylib      /usr/lib/libgcc_s.1.dylib
> 0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5       
> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
> 0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???)      
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
> 0x914fe000 - 0x91536fff com.apple.AE 312.2    
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
> 0x91551000 - 0x91623fff com.apple.ColorSync 4.4.13    
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
> 0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13)      
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
> 0x9174e000 - 0x91805fff com.apple.QD 3.10.28 (???)    
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
> 0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???)      
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
> 0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1  
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
> 0x91904000 - 0x91929fff com.apple.FindByContent 1.5   
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
> 0x9193c000 - 0x9197efff com.apple.LaunchServices 183.1        
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
> 0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3      
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
> 0x919bc000 - 0x91a02fff com.apple.ImageIO.framework 1.5.9     
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
> 0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib         
> /usr/lib/libcrypto.0.9.7.dylib
> 0x91b2e000 - 0x91b43fff libcups.2.dylib       /usr/lib/libcups.2.dylib
> 0x91b48000 - 0x91b66fff libJPEG.dylib         
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
> 0x91b6c000 - 0x91c23fff libJP2.dylib  
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
> 0x91c72000 - 0x91c76fff libGIF.dylib  
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
> 0x91c78000 - 0x91ce2fff libRaw.dylib  
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
> 0x91ce7000 - 0x91d02fff libPng.dylib  
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
> 0x91d07000 - 0x91d0afff libRadiance.dylib     
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
> 0x91e19000 - 0x91e57fff libTIFF.dylib         
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
> 0x91e5e000 - 0x91e5efff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) 
> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
> 0x91e60000 - 0x91f45fff com.apple.vImage 2.4  
> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
> 0x91f4d000 - 0x91f6cfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)      
> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
> 0x91fd8000 - 0x92046fff libvMisc.dylib        
> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
> 0x92051000 - 0x920e6fff libvDSP.dylib         
> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
> 0x92100000 - 0x92688fff libBLAS.dylib         
> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
> 0x926bb000 - 0x929e6fff libLAPACK.dylib       
> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
> 0x92a16000 - 0x92b04fff libiconv.2.dylib      /usr/lib/libiconv.2.dylib
> 0x92b07000 - 0x92b8ffff com.apple.DesktopServices 1.3.7       
> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
> 0x92bd0000 - 0x92e03fff com.apple.Foundation 6.4.12 (567.42)  
> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
> 0x92f36000 - 0x92f54fff libGL.dylib   
> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
> 0x92f5f000 - 0x92fb9fff libGLU.dylib  
> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
> 0x92fd7000 - 0x92fd7fff com.apple.Carbon 10.4 (???)   
> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
> 0x92fd9000 - 0x92fedfff com.apple.ImageCapture 3.0    
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
> 0x93005000 - 0x93015fff com.apple.speech.recognition.framework 3.4    
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
> 0x93021000 - 0x93036fff com.apple.securityhi 2.0 (203)        
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
> 0x93048000 - 0x930cffff com.apple.ink.framework 101.2 (69)    
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
> 0x930e3000 - 0x930eefff com.apple.help 1.0.3 (32)     
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
> 0x930f8000 - 0x93126fff com.apple.openscripting 1.2.7 (???)   
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
> 0x93140000 - 0x9314ffff com.apple.print.framework.Print 5.2 (192.4)   
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
> 0x9315b000 - 0x931c1fff com.apple.htmlrendering 1.1.2 
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
> 0x931f2000 - 0x93241fff com.apple.NavigationServices 3.4.4 (3.4.3)    
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
> 0x9326f000 - 0x9328cfff com.apple.audio.SoundManager 3.9      
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
> 0x9329e000 - 0x932abfff com.apple.CommonPanels 1.2.2 (73)     
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
> 0x932b4000 - 0x935c2fff com.apple.HIToolbox 1.4.10 (???)      
> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
> 0x93712000 - 0x9371efff com.apple.opengl 1.4.7        
> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
> 0x93723000 - 0x93743fff com.apple.DirectoryService.Framework 3.3      
> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
> 0x937b8000 - 0x937d9fff libmx.A.dylib         /usr/lib/libmx.A.dylib
> 0x937df000 - 0x937dffff com.apple.Cocoa 6.4 (???)     
> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
> 0x937e1000 - 0x93e14fff com.apple.AppKit 6.4.10 (824.48)      
> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
> 0x941a1000 - 0x94213fff com.apple.CoreData 91 (92.1)  
> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
> 0x9424c000 - 0x94311fff com.apple.audio.toolbox.AudioToolbox 1.4.7    
> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
> 0x94364000 - 0x94364fff com.apple.audio.units.AudioUnit 1.4   
> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
> 0x94366000 - 0x94526fff com.apple.QuartzCore 1.4.12   
> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
> 0x94570000 - 0x945adfff libsqlite3.0.dylib    /usr/lib/libsqlite3.0.dylib
> 0x945b5000 - 0x94605fff libGLImage.dylib      
> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
> 0x9460e000 - 0x94627fff com.apple.CoreVideo 1.4.2     
> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
> 0x947d5000 - 0x947e4fff libCGATS.A.dylib      
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
> 0x947ec000 - 0x947f9fff libCSync.A.dylib      
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
> 0x9483f000 - 0x94858fff libRIP.A.dylib        
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
> 0x9485f000 - 0x94b92fff com.apple.QuickTime 7.6.4 (1327.73)   
> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
> 0x94c7a000 - 0x94cebfff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib
> 0x94e61000 - 0x94f91fff com.apple.AddressBook.framework 4.0.6 (490)   
> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
> 0x95024000 - 0x95033fff com.apple.DSObjCWrappers.Framework 1.1        
> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
> 0x9503b000 - 0x95068fff com.apple.LDAPFramework 1.4.1 (69.0.1)        
> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
> 0x9506f000 - 0x9507ffff libsasl2.2.dylib      /usr/lib/libsasl2.2.dylib
> 0x95083000 - 0x950b2fff libssl.0.9.7.dylib    /usr/lib/libssl.0.9.7.dylib
> 0x950c2000 - 0x950dffff libresolv.9.dylib     /usr/lib/libresolv.9.dylib
> 
> Model: PowerBook5,8, BootROM 4.9.6f0, 1 processors, PowerPC G4 (1.5), 1.67 
> GHz, 1 GB
> Graphics: ATI Mobility Radeon 9700, ATY,RV360M11, AGP, 128 MB
> Memory Module: SODIMM0/J20STANDARD, 512 MB, DDR2 SDRAM, PC2-4200S-444
> Memory Module: SODIMM1/J23REVERSED, 512 MB, DDR2 SDRAM, PC2-4200U-444
> AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
> Modem: Jump, V.92, Version 1.0
> Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incoming serial ports
> Network Service: Built-in Ethernet, Ethernet, en0
> Network Service: AirPort, AirPort, en1
> PCI Card: pci106b,4318, sppci_othernetwork, SLOT-A
> PCI Card: TXN,PCIXXXX-00, cardbus, PC Card
> PCI Card: usb, usb, USB20
> PCI Card: usb, usb, USB20
> PCI Card: usb, ehci, USB20
> Parallel ATA Device: ST9808211A, 74.53 GB
> Parallel ATA Device: MATSHITADVD-R   UJ-846
> USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 
> mA
> USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 
> Mb/sec, 500 mA
> USB Device: USB OPTICAL MOUSE, PIXART, Up to 1.5 Mb/sec, 500 mA
> 
> 
> _______________________________________________
> Discuss-gnustep mailing list
> Discuss-gnustep@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnustep




reply via email to

[Prev in Thread] Current Thread [Next in Thread]