* [Qemu-devel] 2 Questions
@ 2005-04-29 15:04 Mike Kronenberg
2005-05-02 11:20 ` Mike Kronenberg
0 siblings, 1 reply; 8+ messages in thread
From: Mike Kronenberg @ 2005-04-29 15:04 UTC (permalink / raw)
To: Qemu-devel
I'm workin on the GUI for cocoa.m...
I'm able to save/stop/start WMs from the GUI
- if i stop qemu, am I able to change vars like memory/images/network
and start qemu with a different VM without terminating qemu?
I'm able to change images for cdrom/floppy from the GUI
- is it possible to load a image for the cdrom/floppy, if i had none at
startup (right now it's not working in my code)
Greetings Mike
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] 2 Questions
2005-04-29 15:04 [Qemu-devel] 2 Questions Mike Kronenberg
@ 2005-05-02 11:20 ` Mike Kronenberg
2005-05-02 19:26 ` [Qemu-devel] 2 Questions [Cocoa Driver] Pierre d'Herbemont
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Mike Kronenberg @ 2005-05-02 11:20 UTC (permalink / raw)
To: qemu-devel
It seams that my first Mail got eaten:
Status on my Work for cocoasupport for qemu
- made a Toolbar with options to save VM, change Image for CD-Rom/Floppy
- made a Controlling app, to start and configure WMs (right now I'm
integrating that ap im qemu)
From an earlyer Post, in which I proposed some GUI Features:
> That would be great... Probably an RFC on this list about the Mac OS X
> interface
> would be useful.
>
> Pierre.
So here I am again :)
You find my proposal at
http://www.kberg.ch/cocoaqemu/
have fun and remember, this is a Feature Demo - expect instability :)
and a little Question:
if I load a VM, are the Arguments loaded with the VM or do I have to set
them new?
Mike
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] 2 Questions [Cocoa Driver]
2005-05-02 11:20 ` Mike Kronenberg
@ 2005-05-02 19:26 ` Pierre d'Herbemont
2005-05-03 5:34 ` Mike Kronenberg
2005-05-02 21:42 ` [Qemu-devel] 2 Questions René Korthaus
2005-05-03 11:08 ` Mike Kronenberg
2 siblings, 1 reply; 8+ messages in thread
From: Pierre d'Herbemont @ 2005-05-02 19:26 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1180 bytes --]
On 2 mai 05, at 13:20, Mike Kronenberg wrote:
> It seams that my first Mail got eaten:
>
> Status on my Work for cocoasupport for qemu
> - made a Toolbar with options to save VM, change Image for
> CD-Rom/Floppy
> - made a Controlling app, to start and configure WMs (right now I'm
> integrating that ap im qemu)
[...]
> have fun and remember, this is a Feature Demo - expect instability :)
Very nice ;) Hope you'll produce a patch, that'll get merged in cvs ;)
However when I try to launch your test app here is what I get:
iBook:~/Desktop/cocoaqemu.app/Contents steg$ ./MacOS/cocoaqemu
ZeroLink: could not load .o file:
/Users/mike/cocoaqemu/build/cocoaqemu.build/cocoaqemu.build/Objects-
normal/ppc/main.ob
ZeroLink: could not load .o file:
/Users/mike/cocoaqemu/build/cocoaqemu.build/cocoaqemu.build/Objects-
normal/ppc/qemuController.ob
ZeroLink: unknown symbol '_main'
Abort trap
I bet you use nib files and so on... In this case you'll have to bypass
the use of Xcode, by creating the appropriate Makefiles which will
build the qemu.app, I have an almost clean patch [1] that you may want
to use as a base. Tell me is you want more infos.
Pierre.
[1]
[-- Attachment #2: gui_nib.diff.txt --]
[-- Type: text/plain, Size: 1312 bytes --]
? .DS_Store
? .gdb_history
? cocoa
? cocoa.m
? linux-test
Index: Makefile.target
===================================================================
RCS file: /cvsroot/qemu/qemu/Makefile.target,v
retrieving revision 1.69
diff -u -r1.69 Makefile.target
--- Makefile.target 28 Apr 2005 21:15:08 -0000 1.69
+++ Makefile.target 2 May 2005 19:19:54 -0000
@@ -209,6 +209,10 @@
LIBS+=-lmx
endif
+ifdef CONFIG_COCOA
+PROGS+=$(QEMU_SYSTEM).app
+endif
+
#########################################################
DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
@@ -387,6 +391,16 @@
VL_LDFLAGS+=-p
endif
+# Mac OS X Application
+
+$(QEMU_SYSTEM).app: $(QEMU_SYSTEM) cocoa/Info.plist cocoa/qemu.nib
+ mkdir -p $@/Contents/MacOS
+ mkdir -p $@/Contents/Resources/English.lproj
+ echo -n "APPL????" > $@/Contents/PkgInfo
+ cp ../cocoa/Info.plist $@/Contents
+ cp -R ../cocoa/qemu.nib $@/Contents/Resources/English.lproj
+ cp $(QEMU_SYSTEM) $@/Contents/MacOS/Qemu
+
ifeq ($(ARCH),ia64)
VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
endif
@@ -459,7 +473,7 @@
$(CC) $(DEFINES) -c -o $@ $<
clean:
- rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o slirp/*.o fpu/*.o
+ rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o slirp/*.o fpu/*.o *.app
install: all
ifneq ($(PROGS),)
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] 2 Questions
2005-05-02 11:20 ` Mike Kronenberg
2005-05-02 19:26 ` [Qemu-devel] 2 Questions [Cocoa Driver] Pierre d'Herbemont
@ 2005-05-02 21:42 ` René Korthaus
2005-05-03 5:56 ` Mike Kronenberg
2005-05-03 11:08 ` Mike Kronenberg
2 siblings, 1 reply; 8+ messages in thread
From: René Korthaus @ 2005-05-02 21:42 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1996 bytes --]
Am 02.05.2005 um 13:20 schrieb Mike Kronenberg:
> It seams that my first Mail got eaten:
>
> Status on my Work for cocoasupport for qemu
> - made a Toolbar with options to save VM, change Image for CD-Rom/
> Floppy
> - made a Controlling app, to start and configure WMs (right now I'm
> integrating that ap im qemu)
>
> From an earlyer Post, in which I proposed some GUI Features:
>
>
>> That would be great... Probably an RFC on this list about the Mac
>> OS X interface
>> would be useful.
>>
>> Pierre.
>>
>
>
> So here I am again :)
>
> You find my proposal at
>
> http://www.kberg.ch/cocoaqemu/
>
> have fun and remember, this is a Feature Demo - expect instability :)
I really appreciate your work... where QemuX is now, I have to admit,
that's what my abilities end.... (expect some GUI work) ... so I
would really like to see your work on my mac, but Tiger does not like
it... When starting it disappears fastly from Dock... I used
latest cocoaqemu build
builds/cocoaqemu_20050429_2.zip
from your website... that's what the Console says:
****************************
May 2 23:31:36 rene-korthaus-ibook crashdump[610]: cocoaqemu crashed
May 2 23:31:37 rene-korthaus-ibook crashdump[610]: crash report
written to: /Users/cordney/Library/Logs/CrashReporter/
cocoaqemu.crash.log
ZeroLink: could not load .o file: /Users/mike/cocoaqemu/build/
cocoaqemu.build/cocoaqemu.build/Objects-normal/ppc/main.ob
ZeroLink: could not load .o file: /Users/mike/cocoaqemu/build/
cocoaqemu.build/cocoaqemu.build/Objects-normal/ppc/qemuController.ob
****************************
Crash log is attached.

Greetings, cordney*
>
>
> and a little Question:
> if I load a VM, are the Arguments loaded with the VM or do I have
> to set them new?
>
> Mike
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
>
[-- Attachment #2.1: Type: text/html, Size: 5300 bytes --]
[-- Attachment #2.2: cocoaqemu.crash.log --]
[-- Type: application/octet-stream, Size: 33180 bytes --]
**********
Host Name: cordney
Date/Time: 2005-05-02 23:31:29.611 +0200
OS Version: 10.4 (Build 8A428)
Report Version: 3
Command: cocoaqemu
Path: /Users/cordney/Desktop/cocoaqemu.app/Contents/MacOS/cocoaqemu
Parent: WindowServer [56]
Version: ??? (1.0)
PID: 607
Thread: 0
Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000000
Thread 0 Crashed:
0 <<00000000>> 0x00000000 0 + 0
1 dyld 0x8fe01048 _dyld_start + 60
Thread 0 crashed with PPC Thread State:
srr0: 0x00000000 srr1: 0x4000d030 vrsave: 0x00000000
cr: 0x42000422 xer: 0x00000001 lr: 0x00001b58 ctr: 0x00000000
r0: 0x00001b58 r1: 0xbffffca0 r2: 0xa0001fdc r3: 0x00000002
r4: 0xbffffd54 r5: 0xbffffd60 r6: 0x00000000 r7: 0x0000036a
r8: 0x00001ec3 r9: 0x00000000 r10: 0x90001d20 r11: 0xa0006428
r12: 0x00000000 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
r24: 0x00000000 r25: 0x00000000 r26: 0xbffffd50 r27: 0x0000000c
r28: 0x00000002 r29: 0xbffffd54 r30: 0xbffffd60 r31: 0x000019e4
Binary Images Description:
0x1000 - 0x1fff com.apple.myCocoaApp ??? (1.0) /Users/cordney/Desktop/cocoaqemu.app/Contents/MacOS/cocoaqemu
0x8fe00000 - 0x8fe50fff dyld 43 /usr/lib/dyld
0x90000000 - 0x901a6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
0x901fe000 - 0x90202fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
0x90204000 - 0x90257fff com.apple.CoreText 1.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x90284000 - 0x90335fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x90364000 - 0x9069cfff com.apple.CoreGraphics 1.256.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x90727000 - 0x90800fff com.apple.CoreFoundation 6.4 (368) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x90849000 - 0x90849fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x9084b000 - 0x9094dfff libicucore.A.dylib /usr/lib/libicucore.A.dylib
0x909a7000 - 0x90a2bfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
0x90a55000 - 0x90ac9fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90ae3000 - 0x90af5fff libauto.dylib /usr/lib/libauto.dylib
0x90afc000 - 0x90dc1fff com.apple.CoreServices.CarbonCore 10.4 (611.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90e24000 - 0x90ea4fff com.apple.CoreServices.OSServices 4.0 (4.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x90eee000 - 0x90f2efff com.apple.CFNetwork 4.0 (80) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x90f43000 - 0x90f5bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x90f6b000 - 0x90fe9fff com.apple.SearchKit 1.0.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x9102e000 - 0x91055fff com.apple.Metadata 0.1 (121) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91066000 - 0x91073fff libz.1.dylib /usr/lib/libz.1.dylib
0x91076000 - 0x91238fff com.apple.security 4.0 (221) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x9133a000 - 0x91343fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9134a000 - 0x91371fff com.apple.SystemConfiguration 1.8.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91384000 - 0x9138cfff libbsm.dylib /usr/lib/libbsm.dylib
0x91390000 - 0x9140efff com.apple.audio.CoreAudio 3.0.0 (3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x9144c000 - 0x9144cfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x9144e000 - 0x91486fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x914a1000 - 0x9156cfff com.apple.ColorSync 4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x915c1000 - 0x91654fff com.apple.print.framework.PrintCore 4.0 (172) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9169a000 - 0x91757fff com.apple.QD 3.8.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x91795000 - 0x917f3fff com.apple.HIServices 1.5.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x91821000 - 0x91844fff com.apple.LangAnalysis 1.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x91858000 - 0x9187dfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x91890000 - 0x918d0fff com.apple.LaunchServices 10.4 (118) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x918eb000 - 0x918fffff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x9190d000 - 0x91943fff com.apple.ImageIO.framework 1.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91957000 - 0x91a19fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
0x91a65000 - 0x91a7afff libcups.2.dylib /usr/lib/libcups.2.dylib
0x91a7f000 - 0x91a9bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91aa0000 - 0x91b0ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91b26000 - 0x91b2afff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x91b2c000 - 0x91b44fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
0x91b47000 - 0x91b8afff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91b91000 - 0x91baafff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91baf000 - 0x91bb2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91bb4000 - 0x91bb4fff com.apple.Accelerate 1.1 (Accelerate 1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91bb6000 - 0x91ca0fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91ca8000 - 0x91cc7fff com.apple.Accelerate.vecLib 3.1 (vecLib 3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91d33000 - 0x91d53fff libmx.A.dylib /usr/lib/libmx.A.dylib
0x91d59000 - 0x91dbefff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x91dc8000 - 0x91e5afff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x91e74000 - 0x92404fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9244c000 - 0x9275cfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92789000 - 0x92814fff com.apple.DesktopServices 1.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x92856000 - 0x92a7ffff com.apple.Foundation 6.4 (567) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92b9d000 - 0x92c7bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
0x92c9b000 - 0x92d89fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
0x92d9b000 - 0x92db9fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92dc4000 - 0x92e1efff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92e6a000 - 0x92e7afff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x930d5000 - 0x930f2fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x9311a000 - 0x93429fff com.apple.HIToolbox 1.4.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x93574000 - 0x93580fff com.apple.opengl 1.4.0 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x93612000 - 0x93612fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x93614000 - 0x93c45fff com.apple.AppKit 6.4 (824) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x93fd1000 - 0x9403bfff com.apple.CoreData 1.0 (46) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x94073000 - 0x9413dfff com.apple.audio.toolbox.AudioToolbox 1.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x94191000 - 0x94191fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x94193000 - 0x942f2fff com.apple.QuartzCore 1.4 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9433a000 - 0x94377fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
0x9437f000 - 0x943cafff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x968e1000 - 0x968e2fff com.apple.zerolink 1.2 (3) /System/Library/PrivateFrameworks/ZeroLink.framework/Versions/A/ZeroLink
**********
Host Name: cordney
Date/Time: 2005-05-02 23:31:35.782 +0200
OS Version: 10.4 (Build 8A428)
Report Version: 3
Command: cocoaqemu
Path: /Users/cordney/Desktop/cocoaqemu.app/Contents/MacOS/cocoaqemu
Parent: WindowServer [56]
Version: ??? (1.0)
PID: 609
Thread: 0
Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000000
Thread 0 Crashed:
0 <<00000000>> 0x00000000 0 + 0
1 dyld 0x8fe01048 _dyld_start + 60
Thread 0 crashed with PPC Thread State:
srr0: 0x00000000 srr1: 0x4000f030 vrsave: 0x00000000
cr: 0x42000422 xer: 0x00000001 lr: 0x00001b58 ctr: 0x00000000
r0: 0x00001b58 r1: 0xbffffca0 r2: 0xa0001fdc r3: 0x00000002
r4: 0xbffffd54 r5: 0xbffffd60 r6: 0x00000000 r7: 0x0000036a
r8: 0x00001ec3 r9: 0x00000000 r10: 0x90001d20 r11: 0xa0006428
r12: 0x00000000 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
r24: 0x00000000 r25: 0x00000000 r26: 0xbffffd50 r27: 0x0000000c
r28: 0x00000002 r29: 0xbffffd54 r30: 0xbffffd60 r31: 0x000019e4
Binary Images Description:
0x1000 - 0x1fff com.apple.myCocoaApp ??? (1.0) /Users/cordney/Desktop/cocoaqemu.app/Contents/MacOS/cocoaqemu
0x8fe00000 - 0x8fe50fff dyld 43 /usr/lib/dyld
0x90000000 - 0x901a6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
0x901fe000 - 0x90202fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
0x90204000 - 0x90257fff com.apple.CoreText 1.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x90284000 - 0x90335fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x90364000 - 0x9069cfff com.apple.CoreGraphics 1.256.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x90727000 - 0x90800fff com.apple.CoreFoundation 6.4 (368) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x90849000 - 0x90849fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x9084b000 - 0x9094dfff libicucore.A.dylib /usr/lib/libicucore.A.dylib
0x909a7000 - 0x90a2bfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
0x90a55000 - 0x90ac9fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90ae3000 - 0x90af5fff libauto.dylib /usr/lib/libauto.dylib
0x90afc000 - 0x90dc1fff com.apple.CoreServices.CarbonCore 10.4 (611.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90e24000 - 0x90ea4fff com.apple.CoreServices.OSServices 4.0 (4.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x90eee000 - 0x90f2efff com.apple.CFNetwork 4.0 (80) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x90f43000 - 0x90f5bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x90f6b000 - 0x90fe9fff com.apple.SearchKit 1.0.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x9102e000 - 0x91055fff com.apple.Metadata 0.1 (121) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91066000 - 0x91073fff libz.1.dylib /usr/lib/libz.1.dylib
0x91076000 - 0x91238fff com.apple.security 4.0 (221) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x9133a000 - 0x91343fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9134a000 - 0x91371fff com.apple.SystemConfiguration 1.8.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91384000 - 0x9138cfff libbsm.dylib /usr/lib/libbsm.dylib
0x91390000 - 0x9140efff com.apple.audio.CoreAudio 3.0.0 (3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x9144c000 - 0x9144cfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x9144e000 - 0x91486fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x914a1000 - 0x9156cfff com.apple.ColorSync 4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x915c1000 - 0x91654fff com.apple.print.framework.PrintCore 4.0 (172) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9169a000 - 0x91757fff com.apple.QD 3.8.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x91795000 - 0x917f3fff com.apple.HIServices 1.5.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x91821000 - 0x91844fff com.apple.LangAnalysis 1.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x91858000 - 0x9187dfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x91890000 - 0x918d0fff com.apple.LaunchServices 10.4 (118) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x918eb000 - 0x918fffff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x9190d000 - 0x91943fff com.apple.ImageIO.framework 1.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91957000 - 0x91a19fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
0x91a65000 - 0x91a7afff libcups.2.dylib /usr/lib/libcups.2.dylib
0x91a7f000 - 0x91a9bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91aa0000 - 0x91b0ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91b26000 - 0x91b2afff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x91b2c000 - 0x91b44fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
0x91b47000 - 0x91b8afff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91b91000 - 0x91baafff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91baf000 - 0x91bb2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91bb4000 - 0x91bb4fff com.apple.Accelerate 1.1 (Accelerate 1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91bb6000 - 0x91ca0fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91ca8000 - 0x91cc7fff com.apple.Accelerate.vecLib 3.1 (vecLib 3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91d33000 - 0x91d53fff libmx.A.dylib /usr/lib/libmx.A.dylib
0x91d59000 - 0x91dbefff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x91dc8000 - 0x91e5afff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x91e74000 - 0x92404fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9244c000 - 0x9275cfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92789000 - 0x92814fff com.apple.DesktopServices 1.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x92856000 - 0x92a7ffff com.apple.Foundation 6.4 (567) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92b9d000 - 0x92c7bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
0x92c9b000 - 0x92d89fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
0x92d9b000 - 0x92db9fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92dc4000 - 0x92e1efff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92e6a000 - 0x92e7afff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x930d5000 - 0x930f2fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x9311a000 - 0x93429fff com.apple.HIToolbox 1.4.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x93574000 - 0x93580fff com.apple.opengl 1.4.0 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x93612000 - 0x93612fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x93614000 - 0x93c45fff com.apple.AppKit 6.4 (824) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x93fd1000 - 0x9403bfff com.apple.CoreData 1.0 (46) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x94073000 - 0x9413dfff com.apple.audio.toolbox.AudioToolbox 1.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x94191000 - 0x94191fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x94193000 - 0x942f2fff com.apple.QuartzCore 1.4 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9433a000 - 0x94377fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
0x9437f000 - 0x943cafff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x968e1000 - 0x968e2fff com.apple.zerolink 1.2 (3) /System/Library/PrivateFrameworks/ZeroLink.framework/Versions/A/ZeroLink
**********
Host Name: cordney
Date/Time: 2005-05-02 23:31:42.184 +0200
OS Version: 10.4 (Build 8A428)
Report Version: 3
Command: cocoaqemu
Path: /Users/cordney/Desktop/cocoaqemu.app/Contents/MacOS/cocoaqemu
Parent: WindowServer [56]
Version: ??? (1.0)
PID: 612
Thread: 0
Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000000
Thread 0 Crashed:
0 <<00000000>> 0x00000000 0 + 0
1 dyld 0x8fe01048 _dyld_start + 60
Thread 0 crashed with PPC Thread State:
srr0: 0x00000000 srr1: 0x4000f030 vrsave: 0x00000000
cr: 0x42000422 xer: 0x00000001 lr: 0x00001b58 ctr: 0x00000000
r0: 0x00001b58 r1: 0xbffffca0 r2: 0xa0001fdc r3: 0x00000002
r4: 0xbffffd54 r5: 0xbffffd60 r6: 0x00000000 r7: 0x0000036a
r8: 0x00001ec3 r9: 0x00000000 r10: 0x90001d20 r11: 0xa0006428
r12: 0x00000000 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
r24: 0x00000000 r25: 0x00000000 r26: 0xbffffd50 r27: 0x0000000c
r28: 0x00000002 r29: 0xbffffd54 r30: 0xbffffd60 r31: 0x000019e4
Binary Images Description:
0x1000 - 0x1fff com.apple.myCocoaApp ??? (1.0) /Users/cordney/Desktop/cocoaqemu.app/Contents/MacOS/cocoaqemu
0x8fe00000 - 0x8fe50fff dyld 43 /usr/lib/dyld
0x90000000 - 0x901a6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
0x901fe000 - 0x90202fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
0x90204000 - 0x90257fff com.apple.CoreText 1.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x90284000 - 0x90335fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x90364000 - 0x9069cfff com.apple.CoreGraphics 1.256.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x90727000 - 0x90800fff com.apple.CoreFoundation 6.4 (368) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x90849000 - 0x90849fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x9084b000 - 0x9094dfff libicucore.A.dylib /usr/lib/libicucore.A.dylib
0x909a7000 - 0x90a2bfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
0x90a55000 - 0x90ac9fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90ae3000 - 0x90af5fff libauto.dylib /usr/lib/libauto.dylib
0x90afc000 - 0x90dc1fff com.apple.CoreServices.CarbonCore 10.4 (611.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90e24000 - 0x90ea4fff com.apple.CoreServices.OSServices 4.0 (4.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x90eee000 - 0x90f2efff com.apple.CFNetwork 4.0 (80) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x90f43000 - 0x90f5bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x90f6b000 - 0x90fe9fff com.apple.SearchKit 1.0.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x9102e000 - 0x91055fff com.apple.Metadata 0.1 (121) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91066000 - 0x91073fff libz.1.dylib /usr/lib/libz.1.dylib
0x91076000 - 0x91238fff com.apple.security 4.0 (221) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x9133a000 - 0x91343fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9134a000 - 0x91371fff com.apple.SystemConfiguration 1.8.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91384000 - 0x9138cfff libbsm.dylib /usr/lib/libbsm.dylib
0x91390000 - 0x9140efff com.apple.audio.CoreAudio 3.0.0 (3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x9144c000 - 0x9144cfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x9144e000 - 0x91486fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x914a1000 - 0x9156cfff com.apple.ColorSync 4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x915c1000 - 0x91654fff com.apple.print.framework.PrintCore 4.0 (172) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9169a000 - 0x91757fff com.apple.QD 3.8.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x91795000 - 0x917f3fff com.apple.HIServices 1.5.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x91821000 - 0x91844fff com.apple.LangAnalysis 1.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x91858000 - 0x9187dfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x91890000 - 0x918d0fff com.apple.LaunchServices 10.4 (118) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x918eb000 - 0x918fffff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x9190d000 - 0x91943fff com.apple.ImageIO.framework 1.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91957000 - 0x91a19fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
0x91a65000 - 0x91a7afff libcups.2.dylib /usr/lib/libcups.2.dylib
0x91a7f000 - 0x91a9bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91aa0000 - 0x91b0ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91b26000 - 0x91b2afff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x91b2c000 - 0x91b44fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
0x91b47000 - 0x91b8afff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91b91000 - 0x91baafff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91baf000 - 0x91bb2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91bb4000 - 0x91bb4fff com.apple.Accelerate 1.1 (Accelerate 1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91bb6000 - 0x91ca0fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91ca8000 - 0x91cc7fff com.apple.Accelerate.vecLib 3.1 (vecLib 3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91d33000 - 0x91d53fff libmx.A.dylib /usr/lib/libmx.A.dylib
0x91d59000 - 0x91dbefff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x91dc8000 - 0x91e5afff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x91e74000 - 0x92404fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9244c000 - 0x9275cfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92789000 - 0x92814fff com.apple.DesktopServices 1.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x92856000 - 0x92a7ffff com.apple.Foundation 6.4 (567) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92b9d000 - 0x92c7bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
0x92c9b000 - 0x92d89fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
0x92d9b000 - 0x92db9fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92dc4000 - 0x92e1efff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92e6a000 - 0x92e7afff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x930d5000 - 0x930f2fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x9311a000 - 0x93429fff com.apple.HIToolbox 1.4.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x93574000 - 0x93580fff com.apple.opengl 1.4.0 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x93612000 - 0x93612fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x93614000 - 0x93c45fff com.apple.AppKit 6.4 (824) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x93fd1000 - 0x9403bfff com.apple.CoreData 1.0 (46) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x94073000 - 0x9413dfff com.apple.audio.toolbox.AudioToolbox 1.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x94191000 - 0x94191fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x94193000 - 0x942f2fff com.apple.QuartzCore 1.4 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9433a000 - 0x94377fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
0x9437f000 - 0x943cafff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x968e1000 - 0x968e2fff com.apple.zerolink 1.2 (3) /System/Library/PrivateFrameworks/ZeroLink.framework/Versions/A/ZeroLink
[-- Attachment #2.3: Type: text/html, Size: 2313 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] 2 Questions [Cocoa Driver]
2005-05-02 19:26 ` [Qemu-devel] 2 Questions [Cocoa Driver] Pierre d'Herbemont
@ 2005-05-03 5:34 ` Mike Kronenberg
0 siblings, 0 replies; 8+ messages in thread
From: Mike Kronenberg @ 2005-05-03 5:34 UTC (permalink / raw)
To: qemu-devel
[ snip ]
Pierre d'Herbemont wrote:
> Very nice ;) Hope you'll produce a patch, that'll get merged in cvs ;)
Yes, but first, the code needs some major cleanup.
>
> However when I try to launch your test app here is what I get:
> iBook:~/Desktop/cocoaqemu.app/Contents steg$ ./MacOS/cocoaqemu
> ZeroLink: could not load .o file:
> /Users/mike/cocoaqemu/build/cocoaqemu.build/cocoaqemu.build/Objects-
> normal/ppc/main.ob
> ZeroLink: could not load .o file:
> /Users/mike/cocoaqemu/build/cocoaqemu.build/cocoaqemu.build/Objects-
> normal/ppc/qemuController.ob
> ZeroLink: unknown symbol '_main'
> Abort trap
>
> I bet you use nib files and so on... In this case you'll have to
> bypass the use of Xcode, by creating the appropriate Makefiles which
> will build the qemu.app, I have an almost clean patch [1] that you
> may want to use as a base. Tell me is you want more infos.
>
Yes, it was mainly a setup for an Interface Test, I did in Interface
Builder. I rewrote - well I wrote the real code without the nibs
yesterday. I will put a diff on my website, but I consider the code not
yet suitable for submitting.
> Pierre.
>
> [1]
[snap]
Mike
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] 2 Questions
2005-05-02 21:42 ` [Qemu-devel] 2 Questions René Korthaus
@ 2005-05-03 5:56 ` Mike Kronenberg
0 siblings, 0 replies; 8+ messages in thread
From: Mike Kronenberg @ 2005-05-03 5:56 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1741 bytes --]
[snip]
René Korthaus wrote:
> I really appreciate your work... where QemuX is now, I have to admit,
> that's what my abilities end....
I like and use QemuX alot, since it uses qemu with sdl, which has still
*alot of features which are not yet supportet in cocoa (sound and
keyboard for different countrys comes to my mind).
In cocoaqemu, the commandline is still working - so it can be
controlled/started by an app like QemuX - i think that is atm the easyer
way, having multiple qemus working at the same time.
So keep up the good work!
> (expect some GUI work) ... so I would really like to see your work on
> my mac, but Tiger does not like it... When starting it disappears
> fastly from Dock... I used
Thanks for the note! It seams I did not remove all the static links, and
I admit, I did not test it under another user. An update is in the making.
> latest cocoaqemu build
> builds/cocoaqemu_20050429_2.zip
> <http://www.kberg.ch/cocoaqemu/builds/cocoaqemu_20050429_2.zip>
> from your website... that's what the Console says:
> ****************************
> May 2 23:31:36 rene-korthaus-ibook crashdump[610]: cocoaqemu crashed
> May 2 23:31:37 rene-korthaus-ibook crashdump[610]: crash report
> written to: /Users/cordney/Library/Logs/CrashReporter/cocoaqemu.crash.log
> ZeroLink: could not load .o file:
> /Users/mike/cocoaqemu/build/cocoaqemu.build/cocoaqemu.build/Objects-normal/ppc/main.ob
> ZeroLink: could not load .o file:
> /Users/mike/cocoaqemu/build/cocoaqemu.build/cocoaqemu.build/Objects-normal/ppc/qemuController.ob
> ****************************
>
> Crash log is attached.
>
> ------------------------------------------------------------------------
>
>
> Greetings, cordney*
[snap]
Greetings Mike
[-- Attachment #2: Type: text/html, Size: 3175 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] 2 Questions
2005-05-02 11:20 ` Mike Kronenberg
2005-05-02 19:26 ` [Qemu-devel] 2 Questions [Cocoa Driver] Pierre d'Herbemont
2005-05-02 21:42 ` [Qemu-devel] 2 Questions René Korthaus
@ 2005-05-03 11:08 ` Mike Kronenberg
2005-05-04 21:21 ` René Korthaus
2 siblings, 1 reply; 8+ messages in thread
From: Mike Kronenberg @ 2005-05-03 11:08 UTC (permalink / raw)
To: qemu-devel
Mike Kronenberg wrote:
> So here I am again :)
>
> You find my proposal at
>
> http://www.kberg.ch/cocoaqemu/
That build was pretty buggy (forgot to remove some static links).
But living in a fast World: here is a new one.
Changes:
- portet the GUI from nib to cocoa.m (no extrenal files are needed
anymore - CVS friendly :) )
- removed options, which can't be changed on the fly (atm)
You find the package and the diff on my website. I'll submit the patch,
when the code is cleaner.
http://www.kberg.ch/cocoaqemu/
Greetings Mike
PS.
is it me or is the List extremely slow (are mails handselected?)
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] 2 Questions
2005-05-03 11:08 ` Mike Kronenberg
@ 2005-05-04 21:21 ` René Korthaus
0 siblings, 0 replies; 8+ messages in thread
From: René Korthaus @ 2005-05-04 21:21 UTC (permalink / raw)
To: qemu-devel
Am 03.05.2005 um 13:08 schrieb Mike Kronenberg:
> Mike Kronenberg wrote:
>
>
>> So here I am again :)
>>
>> You find my proposal at
>>
>> http://www.kberg.ch/cocoaqemu/
>>
>
> That build was pretty buggy (forgot to remove some static links).
> But living in a fast World: here is a new one.
Still the same error... maybe you forgot to set build style to
deployment in XCode??? ;-))
>
> Changes:
> - portet the GUI from nib to cocoa.m (no extrenal files are
> needed anymore - CVS friendly :) )
> - removed options, which can't be changed on the fly (atm)
>
> You find the package and the diff on my website. I'll submit the
> patch, when the code is cleaner.
>
> http://www.kberg.ch/cocoaqemu/
>
> Greetings Mike
>
> PS.
> is it me or is the List extremely slow (are mails handselected?)
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2005-05-04 21:26 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-29 15:04 [Qemu-devel] 2 Questions Mike Kronenberg
2005-05-02 11:20 ` Mike Kronenberg
2005-05-02 19:26 ` [Qemu-devel] 2 Questions [Cocoa Driver] Pierre d'Herbemont
2005-05-03 5:34 ` Mike Kronenberg
2005-05-02 21:42 ` [Qemu-devel] 2 Questions René Korthaus
2005-05-03 5:56 ` Mike Kronenberg
2005-05-03 11:08 ` Mike Kronenberg
2005-05-04 21:21 ` René Korthaus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).