Need some sorting Logic

Hi Guys,
             One field of my ITAB has the following values.
PN
0000001080-Z1-1 /12
0000001080-Z1-2 /12
0000001080-Z1-3 /12
0000001080-Z1-4 /12
0000001080-Z1-5 /12
0000001080-Z1-6 /12
0000001080-Z1-7 /12
0000001080-Z1-8 /12
0000001080-Z1-9 /12
0000001080-Z1-10 /12
0000001080-Z1-11 /12
0000001080-Z1-12 /12
When I am sorting this,its coming in the below way:-
PN
0000001080-Z1-1 /12
0000001080-Z1-10 /12
0000001080-Z1-11 /12
0000001080-Z1-12 /12
0000001080-Z1-2 /12
0000001080-Z1-3 /12
0000001080-Z1-4 /12
0000001080-Z1-5 /12
0000001080-Z1-6 /12
0000001080-Z1-7 /12
0000001080-Z1-8 /12
0000001080-Z1-9 /12
So I understood that its is considering only the first digit after Z1.
I want this in correct sequential order.How to do this.
Thanks,
Prasad.

0000001080-Z1-1 /12
0000001080-Z1-2 /12
0000001080-Z1-3 /12
0000001080-Z1-4 /12
0000001080-Z1-5 /12
0000001080-Z1-6 /12
0000001080-Z1-7 /12
0000001080-Z1-8 /12
0000001080-Z1-9 /12
0000001080-Z1-10 /12
0000001080-Z1-11 /12
0000001080-Z1-12 /12
create an additional numerical field in your internal table and store the last numerical part in it (the part behind Z1- )
0000001080-Z1-1 /12   1
0000001080-Z1-2 /12   2
0000001080-Z1-3 /12   3
0000001080-Z1-4 /12   4
0000001080-Z1-5 /12   5
0000001080-Z1-6 /12   6
0000001080-Z1-7 /12   7
0000001080-Z1-8 /12   8
0000001080-Z1-9 /12   9
0000001080-Z1-10 /12  10
0000001080-Z1-11 /12  11
0000001080-Z1-12 /12  12
Then sort on that field.
But best would be: split up the complete value into separate fields and include those fields in your internal table.
Example:
original                        f1                  f2    f3  f4
0000001080-Z1-1 /12    0000001080   Z1   1   /12 
Now you can sort on f1, f2, f3 and f4.
Edited by: Maen Anachronos on Apr 8, 2009 4:33 PM

Similar Messages

  • Right clicking - I need some sort of driver...

    Hello!
    Well, I recently acquired a new Logitech Wireless USB mouse, mainly for use with my Powerbook running Tiger. I currently have the USB reciever attached to my Keyboard, with I use for both the Powerbook and my 400mhz Sawtooth G4. Under OS 9, the G4 won't do a "right click" as I had assumed. I eventually realized that the reason I thought OS 9 had built-in 2 button mouse support was because I always used a 2-button Microsoft Mouse with my Macs running OS 9 - complete with the Microsoft driver. So, now I need some way to enable the right button to function as such....
    Is there any way to map modifier keys (eg, control+click) to mouse buttons under OS 9, or do I need third-party software?
    Thanks,
    -Dan

    Logitech seems to have Mac OS 9 drivers for their cordless mouse.
    http://www.logitech.com/index.cfm/428/958&cl=us,en?osid=12
    Is that the same model? I just picked one of them, so their may be others.
    And no, Mac OS 9 does not have built-in support for the "right click."

  • Need some  String Logic....!

    Hi,
    I have a String str="-a-b_-c-d" ,
    I want to rename the String by making the following changes.
    If a is -ve(ie., -a) then it should be changed to aW (ie, '-a'='aW')
    If a is +ve(ie., a) then it should be changed to  aE (ie, '-a'='aE')
    If b is -ve(ie., -b) then it should be changed to bS (ie, '-b'='bS')
    If b is +ve(ie., b) then it should be changed to bN (ie, '-b'='bN')
    Same logic of 'a' for 'c' as well.
    ie., '-c'='cW' and 'c'='cE'
    Same logic of 'b' for 'd' as well.
    ie., '-d'='dS' and 'd'='dN'
    The output of the above String str should be str2="aWbS_cWdS";
    Some examples str="a-b_-cd" == "aEbS_cWdN"
    Thanks in Advance..,
    regards
    Rao.

    I tend to agree with kamranA, but I had a few minutes and felt like being a sucker for a challenge, so I took a shot at it. BUT DON'T LET IT HAPPEN AGAIN! Anyway, not that this code is so wonderful, but all caveats apply . . . test and use at your own risk:
    public class Str2CharII {
      public static void main(String[] argv) {
        System.out.println("The result is: "+getNewString(argv[0]));
      public static String getNewString(String s) {
        StringBuffer sb    = new StringBuffer();
        char[]       chars = s.toCharArray();
        int          ind   = -2;
        for (int idx=0; idx < chars.length; idx++) {
          switch (chars[idx]) {
            case '-': {
              ind = idx;
              continue;
            case '_': {
              sb.append("_");
              continue;
            case 'a': {
              if ( idx == (ind + 1) ) { sb.append("aW"); }
              else                    { sb.append("aE"); }
              continue;
            case 'b': {
              if ( idx == (ind + 1) ) { sb.append("bS"); }
              else                    { sb.append("bN"); }
              continue;
            case 'c': {
              if ( idx == (ind + 1) ) { sb.append("cW"); }
              else                    { sb.append("cE"); }
              continue;
            case 'd': {
              if ( idx == (ind + 1) ) { sb.append("dS"); }
              else                    { sb.append("dN"); }
              continue;
        return(new String(sb));
    }~Bill

  • Help!!....I need some sort of a formula!!

    My application displays graphs from given data and I need to somehow get it to show between 8 and 12 tick marks on the x and y axis. They also have to be rational values i.e. 120.0 130.0 140.0, etc not like 120.25432 or 132.5363 or 143.94. The program can put the tick marks at regular intervals already but not rational values. I seem to need a tick mark everytime the integer part changes by 1, 2, 2.5, 5, 10, 20, 25 or 50. This sequence would repeat for hundreds: 100, 200, 250, 500, 1000, 2000, 2500, 5000 and so on for hundreds of thousands. I don't need ticks at 40, 60, 3500, etc unless these numbers fall naturally into the above sequence. This requirement also repeats for the fractional part as well: a tick every 0.1, 0.2, 0.25 or 0.5 units.
    I need to find a formula for "every XXX" depending on the level of the sequence.
    I would need between 8 and 12 ticks on a "normal" screen 800 x 600 pixels. E.g. if the graph runs horizontally between 0 and 841ms then the 1000-scale would be too rare. Same for 500, 250 and 200 scales. The 100 scale would be ok as this would display 8 ticks, but the 50, 25, 20, 10 scales, etc, would be too dense. I need a formula to automatically make the decision that the 100 scale would be the one to use.
    The program also knows how to adjust the "base number" of ticks on the axis so that the labels don't run into each other. Possibly assume that base number of regular ticks plus/minus 20% of that number. E.g. 8 to 12 ticks become 10 ticks +/- (20% of 10 == 2) == 10 +/- 2 ticks. If user reduces the window, the base number may become 5 or 4. In that case the scale will be 5 +/- 1 tick or 4 +/- 1 tick (20% of 4 == 0.8 approx 1).
    Your help would be really, really appreciated as this needs to be sorted in the next week or two and I'm really stuck with this one!!
    Thanks!!

    To determine which scale to use first find the span of your axis Sx = Xmax-Xmin. You need to find which increment, when multiplied by the number of ticks N you wish to display, will cover this span.
    The pattern of numbers that you specify (1,2,2.5...) is not a regular pattern and therefore cannot be elegantly implemented with a simple formula. You need to create a lookup array that contains these values, then create your series by scaling that array by powers of ten.
    Start at an arbitrary scale, say, dx = 1 and find out if N * dx > Sx. If so, reduce dx to the next lowest increment in your series and repeat until N * dx > Sx is no longer true.
    If N * dx < Sx you need to increase dx and repeat until you achieve N * dx > Sx. Your previous value of dx will be your "magic increment".
    Hope this helps. Good luck!

  • Home media server for mac, that you can also get to remotely.  Any ideas?  I am out of space on my macbook pro hard drive and appletv.  Need some sort of media server for delivery to macs, ipods, ipads, etc.  Any suggestions?

    Hi,
    I have been using my macbook pro as a home media server, hosting most content on the macbook with ipod touch, ipads, and appletv streaming/sharing content.  I have run out of space on both the macbook pro and the apple tv and am looking to moving the content to a home media server.  Any thoughts/suggestions?  I'd like something that I can access remotely too.  I have an old slingbox and also have a static IP address.
    Any thoughts/suggestions would be most welcome!

    Don't worry I've sorted it! I just had to turn off Reminders as well in iCloud. Calendar then worked fine, even when I turned Calendar and Reminders back on.

  • Need some help logic keeps crashing

    here is my error report i would really like to keep working on this project as its weeks worth of time ive spent on it
    any help will be appreciated
    my problem first started when i hit the reorganize memory button in song information, it told me i had a bad block and did i want to repair it which i click on repair now this below is happening when i start the project.
    thanks
    Date/Time: 2007-03-23 21:29:39.923 +0000
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: Logic Pro
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Parent: WindowServer [71]
    Version: 7.2.3 (961.9)
    Build Version: 14
    Project Name: Logic
    Source Version: 9610900
    PID: 469
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000002e
    Thread 0 Crashed:
    0 ...ple.CoreServices.CarbonCore 0x90ba849c CSMemDisposeHandle + 36
    1 ...ple.CoreServices.CarbonCore 0x90ba8464 DisposeHandle + 20
    2 com.apple.logic.pro 0x00495148 0x1000 + 4800840
    3 com.apple.logic.pro 0x00035814 0x1000 + 215060
    4 com.apple.logic.pro 0x0004f3b0 0x1000 + 320432
    5 com.apple.logic.pro 0x0032b298 0x1000 + 3318424
    6 com.apple.logic.pro 0x0000fad8 0x1000 + 60120
    7 com.apple.logic.pro 0x001e6a98 0x1000 + 1989272
    8 com.apple.logic.pro 0x001f1188 0x1000 + 2032008
    9 com.apple.logic.pro 0x00008ba8 0x1000 + 31656
    10 com.apple.logic.pro 0x001eec48 0x1000 + 2022472
    11 com.apple.logic.pro 0x001f10d4 0x1000 + 2031828
    12 com.apple.logic.pro 0x001f4f88 0x1000 + 2047880
    13 com.apple.logic.pro 0x00485350 0x1000 + 4735824
    14 com.apple.HIToolbox 0x9329a934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    15 com.apple.HIToolbox 0x9329a08c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    16 com.apple.HIToolbox 0x932a0e90 SendEventToEventTarget + 40
    17 com.apple.HIToolbox 0x933197e8 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 380
    18 com.apple.HIToolbox 0x93349694 SendMenuItemSelectedEvent + 136
    19 com.apple.HIToolbox 0x9334959c FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 144
    20 com.apple.HIToolbox 0x93330a48 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 404
    21 com.apple.HIToolbox 0x93330530 MenuSelect + 100
    22 com.apple.HIToolbox 0x9332c7a4 HandleMouseEvent(OpaqueEventRef*) + 84
    23 com.apple.HIToolbox 0x933304b8 StandardMenuBarEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 56
    24 com.apple.HIToolbox 0x9329a934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    25 com.apple.HIToolbox 0x9329a08c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    26 com.apple.HIToolbox 0x932a0e90 SendEventToEventTarget + 40
    27 com.apple.HIToolbox 0x934903f0 HandleMouseEvent(OpaqueEventRef*) + 388
    28 com.apple.HIToolbox 0x932a11fc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    29 com.apple.HIToolbox 0x9329ab84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    30 com.apple.HIToolbox 0x9329a08c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    31 com.apple.HIToolbox 0x932a0e90 SendEventToEventTarget + 40
    32 com.apple.HIToolbox 0x932e1c04 ToolboxEventDispatcher + 92
    33 com.apple.HIToolbox 0x932e1b90 HLTBEventDispatcher + 16
    34 com.apple.HIToolbox 0x932e0148 RunApplicationEventLoop + 148
    35 com.apple.logic.pro 0x001e98bc 0x1000 + 2001084
    36 com.apple.logic.pro 0x0000b974 0x1000 + 43380
    37 com.apple.logic.pro 0x00003224 0x1000 + 8740
    38 com.apple.logic.pro 0x000030cc 0x1000 + 8396
    Thread 1:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907ed90c CFRunLoopRun + 52
    5 com.apple.logic.pro 0x00067c10 0x1000 + 420880
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x9145763c HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914573dc CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 com.apple.logic.pro 0x00592df8 0x1000 + 5840376
    3 com.apple.logic.pro 0x00592ebc 0x1000 + 5840572
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 com.apple.logic.pro 0x00592df8 0x1000 + 5840376
    3 com.apple.logic.pro 0x00592ebc 0x1000 + 5840572
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 com.apple.logic.pro 0x0058f30c 0x1000 + 5825292
    3 com.apple.logic.pro 0x0058f3d0 0x1000 + 5825488
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 com.apple.logic.pro 0x0058f30c 0x1000 + 5825292
    3 com.apple.logic.pro 0x0058f3d0 0x1000 + 5825488
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 com.apple.audio.CoreAudio 0x91468794 CAGuard::WaitFor(unsigned long long) + 204
    3 com.apple.audio.CoreAudio 0x914686a4 CAGuard::WaitUntil(unsigned long long) + 304
    4 com.apple.audio.CoreAudio 0x914668e8 HP_IOThread::WorkLoop() + 852
    5 com.apple.audio.CoreAudio 0x91466580 HPIOThread::ThreadEntry(HPIOThread*) + 16
    6 com.apple.audio.CoreAudio 0x914573dc CAPThread::Entry(CAPThread*) + 96
    7 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x900412f8 machwaituntil + 8
    1 ...ple.CoreServices.CarbonCore 0x90bfbea4 MPDelayUntil + 60
    2 ...ple.CoreServices.CarbonCore 0x90bfbcec Delay + 124
    3 ...opellerheads.rewire.library 0x1f30d4b0 RWPUnregisterDeviceImp + 3096
    4 ...opellerheads.rewire.library 0x1f345a08 RWPUnregisterDeviceImp + 233840
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002c638 semaphorewaittrap + 8
    1 com.ableton.live-engine 0x2020d954 RWDEFGetDeviceNameAndVersion + 10888
    2 com.ableton.live-engine 0x20215b98 RWDEFGetDeviceNameAndVersion + 44236
    3 com.ableton.live-engine 0x203b746c RWDEFGetDeviceNameAndVersion + 1754528
    4 com.ableton.live-engine 0x2020e0c8 RWDEFGetDeviceNameAndVersion + 12796
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907ed90c CFRunLoopRun + 52
    5 0x20574328 GNMessagePortLoop__FPv + 280
    6 0x20539780 GNThreadHandler__FPv + 204
    7 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x900c8370 sem_wait + 12
    1 0x20578684 GNsem_wait_FPi + 64
    2 0x20574edc waitForSignal__11GNConditionFv + 120
    3 0x204ec8d8 workerThreadFunction__24GNReWire2AudioDeviceHostFPv + 188
    4 0x20539780 GNThreadHandler__FPv + 204
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 12:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf748c TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bff428 TimerThread + 60
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 13:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 com.apple.logic.pro 0x0010ce64 0x1000 + 1097316
    3 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 14:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 com.apple.logic.pro 0x0010cd84 0x1000 + 1097092
    3 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 15:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.audio.midi.CoreMIDI 0x96b7dac8 XServerMachPort::ReceiveMessage(int&, void*, int&) + 84
    3 com.apple.audio.midi.CoreMIDI 0x96b70c80 MIDIInPortThread::Run() + 64
    4 com.apple.audio.midi.CoreMIDI 0x96b74f44 XThread::RunHelper(void*) + 28
    5 com.apple.audio.midi.CoreMIDI 0x96b7e87c CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 16:
    0 libSystem.B.dylib 0x9004a828 syscallthreadswitch + 8
    1 com.apple.Foundation 0x92bfb5dc +[NSThread sleepUntilDate:] + 152
    2 com.apple.AppKit 0x9381da10 -[NSUIHeartBeat _heartBeatThread:] + 1100
    3 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 17:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf748c TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x98c96224 ReadSchedulerThreadEntryPoint + 5300
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 18:
    0 libSystem.B.dylib 0x9002c638 semaphorewaittrap + 8
    1 libSystem.B.dylib 0x90031050 pthreadcondwait + 516
    2 com.apple.logic.pro 0x001147b0 0x1000 + 1128368
    3 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 19:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf748c TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bf72e0 AsyncFileThread(void*) + 56
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 20:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf748c TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c02f9c DeferredTaskThread + 56
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 21:
    0 libSystem.B.dylib 0x900412f8 machwaituntil + 8
    1 libSystem.B.dylib 0x900410c4 nanosleep + 388
    2 libSystem.B.dylib 0x90044898 usleep + 88
    3 Massive.MusicDevice.component 0x37e6420c NI::SND::PresetManagerDB::scanForBackground(CppSQLite3DB&) + 4716 (bundle1.s:283)
    4 Massive.MusicDevice.component 0x37e66d60 NI::SND::PresetManagerDB::run() + 320 (bundle1.s:283)
    5 Massive.MusicDevice.component 0x37f74158 NI::GP::Thread::execute(void*) + 72 (bundle1.s:283)
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 22:
    0 libSystem.B.dylib 0x900412f8 machwaituntil + 8
    1 libSystem.B.dylib 0x900410c4 nanosleep + 388
    2 libSystem.B.dylib 0x90044898 usleep + 88
    3 Massive.MusicDevice.component 0x37e6420c NI::SND::PresetManagerDB::scanForBackground(CppSQLite3DB&) + 4716 (bundle1.s:283)
    4 Massive.MusicDevice.component 0x37e66d60 NI::SND::PresetManagerDB::run() + 320 (bundle1.s:283)
    5 Massive.MusicDevice.component 0x37f74158 NI::GP::Thread::execute(void*) + 72 (bundle1.s:283)
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000090ba849c srr1: 0x100000000200f930 vrsave: 0x000000008000208e
    cr: 0x44022484 xer: 0x0000000020000000 lr: 0x0000000090ba8464 ctr: 0x0000000090ba8450
    r0: 0x0000000090ba8464 r1: 0x00000000bfffeab0 r2: 0x0000000000000000 r3: 0x000000000000002e
    r4: 0x00000000011f5d18 r5: 0x0000000000000018 r6: 0x0000000000000000 r7: 0x0000000000000001
    r8: 0x0000000029361000 r9: 0x0000000000000010 r10: 0x00000000011f0000 r11: 0x00000000011f01cc
    r12: 0x0000000090ba8450 r13: 0x0000000000000002 r14: 0x0000000000000000 r15: 0x00000000a329a698
    r16: 0x0000000024f8ab30 r17: 0x00000000bffff080 r18: 0x00000000636d6473 r19: 0x0000000000000001
    r20: 0x00000000178ee710 r21: 0x00000000ffffd96e r22: 0x0000000000000000 r23: 0x00000000bffff1d0
    r24: 0x00000000011f3ff8 r25: 0x00000000000357d8 r26: 0x000000004d454449 r27: 0x000000002e657873
    r28: 0x00000000294861f0 r29: 0x0000000000000000 r30: 0x000000000000002e r31: 0x000000000000002c
    Binary Images Description:
    0x1000 - 0xd8efff com.apple.logic.pro 7.2.3 (961.9) /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x141a000 - 0x146dfff com.apple.LogicLoopBrowser 7.2 (16.3) /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x1497000 - 0x14a2fff libaafintp.dylib /Applications/Logic Pro.app/Contents/Frameworks/libaafintp.dylib
    0x14b1000 - 0x14c2fff com.apple.EHardwareSupport 1.0.0 (21.8) /Applications/Logic Pro.app/Contents/Frameworks/EHardwareSupport.framework/Versions/A/EHardwareSupp ort
    0x1605000 - 0x16a4fff com.apple.eloop 3.1.0 (24.8) /Applications/Logic Pro.app/Contents/Frameworks/ELoop.framework/Versions/A/ELoop
    0x1736000 - 0x178efff libaafpgapi.dylib /Applications/Logic Pro.app/Contents/Frameworks/libaafpgapi.dylib
    0x2008000 - 0x2268fff libcom-api.dylib /Applications/Logic Pro.app/Contents/Frameworks/libcom-api.dylib
    0x25d4000 - 0x2638fff com.apple.ecore 1.1.0 (44.4) /Applications/Logic Pro.app/Contents/Frameworks/ECore.framework/Versions/A/ECore
    0x279a000 - 0x27a1fff com.unsanity.smartcrashreports Smart Crash Reports version 1.0.3 (1.0.3b1) /Users/mark/Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x27af000 - 0x27ccfff com.apple.prokit.TigerPanels 3.1 (589) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/TigerPa nels.bundle/Contents/MacOS/TigerPanels
    0x16e1e000 - 0x16e1ffff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x16e2b000 - 0x16e2cfff com.CASIO.EXLIM.component CASIO AVI Importer Version 1.0 (1.0) /Library/QuickTime/CASIO AVI Importer.component/Contents/MacOS/CASIO AVI Importer
    0x191cc000 - 0x191dafff com.apple.iokit.IOUSBLib 2.5.9 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x192b2000 - 0x19332fff ch.rafz.naegeli.christoph.xvid_codec 0.x.x /Library/QuickTime/XviDCodec.component/Contents/MacOS/XviDCodec
    0x193ce000 - 0x19436fff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x19443000 - 0x195b2fff ch.rafz.naegeli.christoph.ffaviimporter 1.0 (0.0) /Library/QuickTime/AviImporter.component/Contents/MacOS/AviImporter
    0x19a19000 - 0x19a92fff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x1a2c9000 - 0x1a2cdfff com.apple.gal_anvil 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x1a3c6000 - 0x1a3cbfff com.apple.gal_efx 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x1a967000 - 0x1a969fff com.apple.gal_egt 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x1a999000 - 0x1a99bfff com.apple.gal_emx 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x1aa66000 - 0x1aa68fff com.apple.gal_es1 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x1aac9000 - 0x1aacbfff com.apple.gal_es2 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x1ab59000 - 0x1ab5bfff com.apple.gal_esu 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/esu.res/Contents/MacOS/esu
    0x1abad000 - 0x1abaffff com.apple.gal_evb3 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x1ac3d000 - 0x1ac3ffff com.apple.gal_evd6 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x1aca7000 - 0x1aca9fff com.apple.gal_evoc 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x1ad9b000 - 0x1ad9dfff com.apple.gal_evp88 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x1aeed000 - 0x1aeeffff com.apple.gal_exs24 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x1af66000 - 0x1af69fff com.apple.gal_revolver 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x1b0bc000 - 0x1b0befff com.apple.gal_sphere 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x1c55a000 - 0x1c55cfff com.apple.MIDIDevicePlugIn.CS-32 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x1d3f4000 - 0x1d3f90f9 PEF binary:
    0x1d848850 - 0x1d848902 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x1f305000 - 0x1f371fff se.propellerheads.rewire.library 1.7 /Users/mark/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x1f38e000 - 0x1f3dd3c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x1f4037f0 - 0x1f403867 CFMPriv_System PEF binary: CFMPriv_System
    0x1f403ae0 - 0x1f403bb0 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x1f403c20 - 0x1f403cf3 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x1f403dc0 - 0x1f403e7b CFMPriv_Help PEF binary: CFMPriv_Help
    0x1f403e80 - 0x1f403f4a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x1f403fc0 - 0x1f404096 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x1f404100 - 0x1f4041d3 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x1f404250 - 0x1f404335 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x1f4043a0 - 0x1f404476 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x1f404540 - 0x1f4045fe CFMPriv_Print PEF binary: CFMPriv_Print
    0x1f404610 - 0x1f4046dd CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x1f404750 - 0x1f404832 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x1f4048a0 - 0x1f404973 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x1f4049e0 - 0x1f404ab3 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x1f404b80 - 0x1f404c42 CFMPriv_AE PEF binary: CFMPriv_AE
    0x1f404c50 - 0x1f404d15 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x1f404d90 - 0x1f404e67 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x1f404ef0 - 0x1f404fd3 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x1f405050 - 0x1f40512a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x1f4051a0 - 0x1f405280 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x1f405310 - 0x1f4053f6 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x1f4054d0 - 0x1f4055a7 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x1f4055b0 - 0x1f405672 CFMPriv_QD PEF binary: CFMPriv_QD
    0x1f405770 - 0x1f405859 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x1f706000 - 0x1f772fff se.propellerheads.rewire.library 1.7 /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x20209000 - 0x203d8fff com.ableton.live-engine 6.0.5 /Applications/Live 6.0.5 OS X/Live.app/Contents/Resources/Ableton Live Engine.bundle/Contents/MacOS/Ableton Live Engine
    0x204e9000 - 0x20589c53 PEF binary:
    0x21e7d000 - 0x21e97fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x21e9d000 - 0x22028fff com.spectrasonics.StyM 1.5.1c /Library/Audio/Plug-Ins/Components/StylusRMX.component/Contents/MacOS/StylusRMX
    0x24e05000 - 0x24e44fff com.apple.QuickTimeFireWireDV.component 7.1.5 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x2556d000 - 0x255e6fff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x2575c000 - 0x2575ffff com.apple.MIDIDevicePlugIn.FW-1884 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
    0x25774000 - 0x25778fff com.apple.MIDIDevicePlugIn.HUI 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
    0x257c2000 - 0x257c3fff com.apple.MIDIDevicePlugIn.iControl 1.0.1 (9.10) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
    0x257cd000 - 0x257cffff com.apple.MIDIDevicePlugIn.microKONTROL 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
    0x257dc000 - 0x257defff com.apple.MIDIDevicePlugIn.TranzPort 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
    0x257e7000 - 0x257e9fff com.apple.MIDIDevicePlugIn.US-2400 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
    0x287f8000 - 0x2898ffff com.reFX.Nexus 1.0.9 /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    0x29307000 - 0x2930efff com.apple.MIDIDevicePlugIn.Logic Control 1.0.1 (9.10) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
    0x29347000 - 0x29348fff com.apple.MIDIDevicePlugIn.US-428 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-428.bundle/Contents/MacOS/US-428
    0x33792000 - 0x33845fff com.camelaudio.CamelPhat 3.30 /Library/Audio/Plug-Ins/Components/CamelPhat.component/Contents/MacOS/CamelPhat
    0x33e4f000 - 0x33f04fff com.camelaudio.CamelSpace 1.30 /Library/Audio/Plug-Ins/Components/CamelSpace.component/Contents/MacOS/CamelSpa ce
    0x35ded000 - 0x35e47fff com.reFX.Vanguard 1.6.1 /Library/Audio/Plug-Ins/Components/Vanguard.component/Contents/MacOS/Vanguard
    0x37d05000 - 0x38413fff Massive.MusicDevice.component 1.1.1.002 (1.1.1, Copyright © 2006 Native-Instruments) /Library/Audio/Plug-Ins/Components/Massive.component/Contents/MacOS/Massive
    0x3da56000 - 0x3db30fff com.Spectrasonics.Trilogy Trilogy (1.0) /Library/Audio/Plug-Ins/Components/Trilogy AU.component/Contents/MacOS/Trilogy AU
    0x4a549000 - 0x4a800fff Pro-53.MusicDevice.component 3.0.3.007 (3.0.3, Copyright © 2007 Native Instruments) /Library/Audio/Plug-Ins/Components/Pro-53.component/Contents/MacOS/Pro-53
    0x4c69c000 - 0x4c6d4fff com.pspaudioware.musiceffects.pspnitro ??? (1.1.0) /Library/Audio/Plug-Ins/Components/PSP Nitro.component/Contents/MacOS/PSP Nitro
    0x4c715000 - 0x4c7d9fff com.pspaudioware.plugins.pspnitro 1.1.0 /Library/Audio/Plug-Ins/Components/PSP Nitro.component/Contents/Resources/PSPNitro.vst/Contents/MacOS/PSPNitro
    0x4cf22000 - 0x4cf55fff com.pspaudioware.musiceffects.psp84 ??? (1.5.0) /Library/Audio/Plug-Ins/Components/PSP 84.component/Contents/MacOS/PSP 84
    0x4cf9b000 - 0x4cfeefff com.pspaudioware.plugins.psp84 1.5.0 /Library/Audio/Plug-Ins/Components/PSP 84.component/Contents/Resources/PSP84.vst/Contents/MacOS/PSP84
    0x70000000 - 0x700fcfff com.apple.audio.units.Components 1.4.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90215000 - 0x9021afff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021c000 - 0x90269fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90294000 - 0x90345fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90374000 - 0x9072ffff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bc000 - 0x90895fff com.apple.CoreFoundation 6.4.7 (368.28) /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 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.9 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd1fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x91413fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91426000 - 0x91431fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91436000 - 0x9143efff libbsm.dylib /usr/lib/libbsm.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918f1fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91905000 - 0x9192afff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193d000 - 0x9197ffff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199b000 - 0x919affff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bd000 - 0x91a03fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1a000 - 0x91ae1fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2f000 - 0x91b44fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b49000 - 0x91b67fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6d000 - 0x91c24fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c73000 - 0x91c77fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c79000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d43fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d48000 - 0x91d4bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4d000 - 0x91e2bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4b000 - 0x91e4bfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4d000 - 0x91f32fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3a000 - 0x91f59fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc5000 - 0x92033fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203e000 - 0x920d3fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ed000 - 0x92675fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a8000 - 0x929d3fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a03000 - 0x92af1fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af4000 - 0x92b7cfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbd000 - 0x92de8fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f15000 - 0x92f33fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3e000 - 0x92f98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb6000 - 0x92fb6fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb8000 - 0x92fccfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe4000 - 0x92ff4fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93000000 - 0x93015fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93027000 - 0x930aefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c2000 - 0x930cdfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d7000 - 0x93104fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311e000 - 0x9312efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93776000 - 0x93776fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93778000 - 0x93dabfff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94138000 - 0x941aafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e3000 - 0x942a7fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f9000 - 0x942f9fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fb000 - 0x944bbfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94505000 - 0x94542fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454a000 - 0x9459afff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a3000 - 0x945b7fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945fc000 - 0x94641fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94760000 - 0x9476ffff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94777000 - 0x94783fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947c9000 - 0x947e1fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947e8000 - 0x94abdfff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b81000 - 0x94bf2fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94c65000 - 0x94c86fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94d8e000 - 0x94ebefff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f50000 - 0x94f5ffff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94f67000 - 0x94f94fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94f9b000 - 0x94fabfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94faf000 - 0x94fdefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94fee000 - 0x9500bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x953fd000 - 0x953fdfff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x953ff000 - 0x95482fff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954af000 - 0x954f5fff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95fc6000 - 0x95fc8fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x96375000 - 0x96447fff com.apple.prokit 3.1 (589) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x96b70000 - 0x96baffff com.apple.audio.midi.CoreMIDI 1.5 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x96f97000 - 0x96fb6fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x977bc000 - 0x977c9fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98c7e000 - 0x9982bfff com.apple.QuickTimeComponents.component 7.1.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99a93000 - 0x99a97fff com.apple.QuickTimeH264.component 7.1.5 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99a99000 - 0x99b7ffff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x99ccf000 - 0x99d98fff com.apple.QuickTimeMPEG4.component 7.1.5 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9a6d9000 - 0x9a6f7fff com.apple.OpenTransport 2.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.1), 2.3 GHz, 2 GB
    Graphics: NVIDIA GeForce 6600, GeForce 6600, PCI, 256 MB
    Memory Module: DIMM0/J6700, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 1 GB, DDR2 SDRAM, PC2-4200U-444
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Bluetooth: Version 1.7.14f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en2
    PCI Card: GeForce 6600, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: Maxtor 6L250M0, 233.76 GB
    Serial ATA Device: Maxtor 6V250F0, 233.76 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: Hub, Up to 480 Mb/sec, 500 mA
    USB Device: USB2.0 Hub, Up to 480 Mb/sec, 500 mA
    USB Device: USB2.0 Hub, Up to 480 Mb/sec, 500 mA
    USB Device: XSKey, Emagic GmbH, Up to 1.5 Mb/sec, 500 mA
    USB Device: Apple Cinema Display, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    FireWire Device: unknown_device, unknown_value, Unknown
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    right i can get into it the project on a G5 where i have done most of the work. when i save as project and try and move it to a macbookpro it wont start up logic crashes on start up and here is the error fille for the macbook
    p.s so for all the cutting and paste but i dont understand what the error report says
    Date/Time: 2007-03-23 21:38:55.266 +0000
    OS Version: 10.4.9 (Build 8P2137)
    Report Version: 4
    Command: Logic Pro
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Parent: WindowServer [68]
    Version: 7.2.3 (961.9)
    Build Version: 14
    Project Name: Logic
    Source Version: 9610900
    PID: 318
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x2d015000
    Thread 0 Crashed:
    0 com.apple.ecore 0x016e5da3 IntelSwap(void*, int) + 141
    1 com.apple.ecore 0x016e5e81 IntelSwap(void*, int) + 363
    2 com.apple.ecore 0x016e60fc LimitTabIntelSwap(void*, unsigned char*, void*) + 168
    3 com.apple.ecore 0x016e6144 TabIntelSwap(void*, unsigned char*) + 32
    4 com.apple.logic.pro 0x002d921a 0x1000 + 2982426
    5 com.apple.logic.pro 0x002db5c6 0x1000 + 2991558
    6 com.apple.logic.pro 0x002dbd53 0x1000 + 2993491
    7 com.apple.logic.pro 0x002e5355 0x1000 + 3031893
    8 com.apple.logic.pro 0x0000e070 0x1000 + 53360
    9 com.apple.logic.pro 0x001b040b 0x1000 + 1766411
    10 com.apple.logic.pro 0x001b8226 0x1000 + 1798694
    11 com.apple.logic.pro 0x001b829f 0x1000 + 1798815
    12 com.apple.logic.pro 0x001ba299 0x1000 + 1807001
    13 com.apple.logic.pro 0x001be848 0x1000 + 1824840
    14 com.apple.logic.pro 0x004263d5 0x1000 + 4346837
    15 com.apple.HIToolbox 0x92dd8537 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1093
    16 com.apple.HIToolbox 0x92dd7bdc SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    17 com.apple.HIToolbox 0x92ddefbc SendEventToEventTarget + 56
    18 com.apple.HIToolbox 0x92e5fabd SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 405
    19 com.apple.HIToolbox 0x92e938e6 ProcessHICommandWithContextAndModifiers + 60
    20 com.apple.HIToolbox 0x92e93884 SendMenuItemSelectedEvent + 128
    21 com.apple.HIToolbox 0x92e9379c FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 122
    22 com.apple.HIToolbox 0x92e78505 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 515
    23 com.apple.HIToolbox 0x92e77fa6 MenuSelect + 100
    24 com.apple.HIToolbox 0x92e77f10 StandardMenuBarEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 104
    25 com.apple.HIToolbox 0x92dd8537 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1093
    26 com.apple.HIToolbox 0x92dd7bdc SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    27 com.apple.HIToolbox 0x92ddefbc SendEventToEventTarget + 56
    28 com.apple.HIToolbox 0x92ddf9d9 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2587
    29 com.apple.HIToolbox 0x92dd88ee DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2044
    30 com.apple.HIToolbox 0x92dd7bdc SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    31 com.apple.HIToolbox 0x92ddefbc SendEventToEventTarget + 56
    32 com.apple.HIToolbox 0x92e22eb3 ToolboxEventDispatcher + 81
    33 com.apple.HIToolbox 0x92e218cb RunApplicationEventLoop + 165
    34 com.apple.logic.pro 0x001b3007 0x1000 + 1777671
    35 com.apple.logic.pro 0x00008d4f 0x1000 + 32079
    36 com.apple.logic.pro 0x000036ae 0x1000 + 9902
    37 com.apple.logic.pro 0x000035c9 0x1000 + 9673
    Thread 1:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083f188 CFRunLoopRun + 60
    3 com.apple.logic.pro 0x0005c7cb 0x1000 + 374731
    4 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x9146141e HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x91461239 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 com.apple.logic.pro 0x0050304e 0x1000 + 5251150
    2 com.apple.logic.pro 0x0050310b 0x1000 + 5251339
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 com.apple.logic.pro 0x0050304e 0x1000 + 5251150
    2 com.apple.logic.pro 0x0050310b 0x1000 + 5251339
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 com.apple.logic.pro 0x004ff33e 0x1000 + 5235518
    2 com.apple.logic.pro 0x004ff3fb 0x1000 + 5235707
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 com.apple.logic.pro 0x004ff33e 0x1000 + 5235518
    2 com.apple.logic.pro 0x004ff3fb 0x1000 + 5235707
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 com.apple.audio.CoreAudio 0x9146e65c CAGuard::WaitFor(unsigned long long) + 212
    2 com.apple.audio.CoreAudio 0x9146e57e CAGuard::WaitUntil(unsigned long long) + 66
    3 com.apple.audio.CoreAudio 0x9146cefa HP_IOThread::WorkLoop() + 690
    4 com.apple.audio.CoreAudio 0x9146cc43 HPIOThread::ThreadEntry(HPIOThread*) + 17
    5 com.apple.audio.CoreAudio 0x91461239 CAPThread::Entry(CAPThread*) + 93
    6 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x90037a57 machwaituntil + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce6625 Delay + 118
    2 ...opellerheads.rewire.library 0x1f0417e8 RWPUnregisterDeviceImp + 21574
    3 ...opellerheads.rewire.library 0x1f05ca5c RWPUnregisterDeviceImp + 132794
    4 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x9002485f semaphorewaittrap + 7
    1 com.ableton.live-engine 0x1f1ba33f OValueProcessor::SetValue(float) + 1967
    2 com.ableton.live-engine 0x1f31b48a TThread::Start() + 288
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce20b7 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90ce909d TimerThread + 87
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 11:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 com.apple.logic.pro 0x000f09e2 0x1000 + 981474
    2 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 12:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 com.apple.logic.pro 0x000f0917 0x1000 + 981271
    2 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 13:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.audio.midi.CoreMIDI 0x96077adf XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    2 com.apple.audio.midi.CoreMIDI 0x9607003b MIDIInPortThread::Run() + 113
    3 com.apple.audio.midi.CoreMIDI 0x96070d1b XThread::RunHelper(void*) + 17
    4 com.apple.audio.midi.CoreMIDI 0x96078617 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 14:
    0 libSystem.B.dylib 0x9003f5ff syscallthreadswitch + 7
    1 com.apple.AppKit 0x9333666e -[NSUIHeartBeat _heartBeatThread:] + 1399
    2 com.apple.Foundation 0x927e72e0 forkThreadForFunction + 123
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x2d015000 ebx: 0x016e5d24 ecx: 0x2d014ffc edx: 0x0000002f
    edi: 0x00000007 esi: 0x2d015000 ebp: 0xbfffebe8 esp: 0xbfffebb0
    ss: 0x0000001f efl: 0x00010216 eip: 0x016e5da3 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0xcf2fff com.apple.logic.pro 7.2.3 (961.9) /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x1373000 - 0x13cbfff com.apple.LogicLoopBrowser 7.2 (16.3) /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x1505000 - 0x159cfff com.apple.eloop 3.1.0 (24.8) /Applications/Logic Pro.app/Contents/Frameworks/ELoop.framework/Versions/A/ELoop
    0x162d000 - 0x1637fff libaafintp.dylib /Applications/Logic Pro.app/Contents/Frameworks/libaafintp.dylib
    0x1646000 - 0x1697fff libaafpgapi.dylib /Applications/Logic Pro.app/Contents/Frameworks/libaafpgapi.dylib
    0x16ca000 - 0x1730fff com.apple.ecore 1.1.0 (44.4) /Applications/Logic Pro.app/Contents/Frameworks/ECore.framework/Versions/A/ECore
    0x177a000 - 0x178efff com.apple.EHardwareSupport 1.0.0 (21.8) /Applications/Logic Pro.app/Contents/Frameworks/EHardwareSupport.framework/Versions/A/EHardwareSupp ort
    0x2008000 - 0x220cfff libcom-api.dylib /Applications/Logic Pro.app/Contents/Frameworks/libcom-api.dylib
    0x25ce000 - 0x25cefff com.ksuther.chaxloader ??? (1.4.7) /Users/mark/Library/InputManagers/Chax/Chax.bundle/Contents/MacOS/Chax
    0x277f000 - 0x27a2fff com.apple.prokit.TigerPanels 3.1.1 (591) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/TigerPa nels.bundle/Contents/MacOS/TigerPanels
    0x18e8c000 - 0x18e94fff com.apple.iokit.IOUSBLib 2.6.0 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x19080000 - 0x190d0fff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x19172000 - 0x19177fff com.apple.audio.AppleHDAHALPlugIn 1.2.9 (1.2.9a4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1917b000 - 0x19192fff com.motu.driver.FWA.HALPlugin ??? (1.2) /System/Library/Extensions/MOTUFireWireAudio.kext/Contents/PlugIns/HALPlugin.bu ndle/Contents/MacOS/HALPlugin
    0x19995000 - 0x19999fff com.apple.gal_anvil 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x19a94000 - 0x19a9afff com.apple.gal_efx 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x1a038000 - 0x1a03afff com.apple.gal_egt 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x1a06b000 - 0x1a06dfff com.apple.gal_emx 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x1a139000 - 0x1a13bfff com.apple.gal_es1 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x1a19e000 - 0x1a1a0fff com.apple.gal_es2 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x1a22f000 - 0x1a230fff com.apple.gal_esu 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/esu.res/Contents/MacOS/esu
    0x1a282000 - 0x1a284fff com.apple.gal_evb3 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x1a314000 - 0x1a316fff com.apple.gal_evd6 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x1a37f000 - 0x1a381fff com.apple.gal_evoc 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x1a474000 - 0x1a476fff com.apple.gal_evp88 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x1a5c7000 - 0x1a5c9fff com.apple.gal_exs24 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x1a641000 - 0x1a645fff com.apple.gal_revolver 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x1a799000 - 0x1a79bfff com.apple.gal_sphere 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x1f036000 - 0x1f095fff se.propellerheads.rewire.library 1.7 /Users/mark/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x1f0b4000 - 0x1f113fff se.propellerheads.rewire.library 1.7 /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x1f132000 - 0x1f3eafff com.ableton.live-engine 6.0.5 /Applications/Live 6.0.5 OS X/Live.app/Contents/Resources/Ableton Live Engine.bundle/Contents/MacOS/Ableton Live Engine
    0x21bf8000 - 0x21c02fff com.apple.iokit.IOHIDLib 1.4.9 /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x22305000 - 0x2247afff com.spectrasonics.StyM 1.6b08 (1.6.0b08) /Library/Audio/Plug-Ins/Components/StylusRMX.component/Contents/MacOS/StylusRMX
    0x2af5d000 - 0x2af99fff com.apple.QuickTimeFireWireDV.component 7.1.5 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x2afa5000 - 0x2afbefff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x2afc3000 - 0x2afdcfff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x2bf8c000 - 0x2c17ffff net.telestream.wmv.import 2.1.0.33 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x2c5d6000 - 0x2c5d8fff com.apple.MIDIDevicePlugIn.CS-32 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x2c5e4000 - 0x2c5e7fff com.apple.MIDIDevicePlugIn.FW-1884 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
    0x2c5fe000 - 0x2c602fff com.apple.MIDIDevicePlugIn.HUI 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
    0x2c64d000 - 0x2c64efff com.apple.MIDIDevicePlugIn.iControl 1.0.1 (9.10) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
    0x2c659000 - 0x2c65ffff com.apple.MIDIDevicePlugIn.Logic Control 1.0.1 (9.10) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
    0x2c699000 - 0x2c69bfff com.apple.MIDIDevicePlugIn.microKONTROL 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
    0x2c6a9000 - 0x2c6abfff com.apple.MIDIDevicePlugIn.TranzPort 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
    0x2c6b5000 - 0x2c6b7fff com.apple.MIDIDevicePlugIn.US-2400 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
    0x2c6c2000 - 0x2c6c3fff com.apple.MIDIDevicePlugIn.US-428 1.0 (9) /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-428.bundle/Contents/MacOS/US-428
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x90172fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c2000 - 0x901c4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c6000 - 0x90203fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9022a000 - 0x90300fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90320000 - 0x90775fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080c000 - 0x908d4fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90912000 - 0x90912fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90914000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91007000 - 0x91045fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91058000 - 0x91068fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91073000 - 0x910f1fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91126000 - 0x91144fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91150000 - 0x9115efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91161000 - 0x91300fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913fe000 - 0x91406fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9140d000 - 0x91433fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91445000 - 0x9144cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91450000 - 0x914c6fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91517000 - 0x91517fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91519000 - 0x91544fff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91557000 - 0x9162bfff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91666000 - 0x916d9fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91707000 - 0x917b0fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917d6000 - 0x91821fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91840000 - 0x91856fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91862000 - 0x9187cfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91886000 - 0x918c3fff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918d7000 - 0x918e3fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918ea000 - 0x91929fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193c000 - 0x919eefff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a34000 - 0x91a4afff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a4f000 - 0x91a6dfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a72000 - 0x91ad1fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae3000 - 0x91ae7fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ae9000 - 0x91b6dfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b71000 - 0x91baefff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bb4000 - 0x91bcefff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bd3000 - 0x91bd5fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bd7000 - 0x91cb5fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cd2000 - 0x91cd2fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cd4000 - 0x91d62fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d69000 - 0x91d69fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d6b000 - 0x91dc4fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dcd000 - 0x91df1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91df9000 - 0x92202fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9223c000 - 0x925f0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9261d000 - 0x9270afff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9270c000 - 0x92789fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927ca000 - 0x929fafff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b14000 - 0x92b2bfff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b36000 - 0x92b8efff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ba2000 - 0x92ba2fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92ba4000 - 0x92bb4fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bc3000 - 0x92bcbfff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bd1000 - 0x92bd6fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bdc000 - 0x92c6dfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c81000 - 0x92c84fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c87000 - 0x92ca5fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cb7000 - 0x92cbdfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cc3000 - 0x92d26fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d4a000 - 0x92d8bfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92db2000 - 0x92dbffff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dc6000 - 0x92dcbfff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dd0000 - 0x930c5fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931cb000 - 0x931d6fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931db000 - 0x931f6fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93246000 - 0x93246fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93248000 - 0x938fefff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c7f000 - 0x93cfafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d33000 - 0x93dedfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e30000 - 0x93e30fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e32000 - 0x93ff3fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94039000 - 0x9407afff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94082000 - 0x940bcfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940c1000 - 0x940d2fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94116000 - 0x9415efff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94263000 - 0x94272fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94279000 - 0x94284fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942d0000 - 0x942eafff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942f0000 - 0x945aefff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94712000 - 0x94858fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948e4000 - 0x948f3fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x948fa000 - 0x94923fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94929000 - 0x94938fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9493c000 - 0x94961fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9496d000 - 0x9498afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a2f000 - 0x94a2ffff com.apple.DiscRecording 3.1.6 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94a31000 - 0x94aaffff com.apple.DiscRecordingEngine 3.1.6 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x94adf000 - 0x94b21fff com.apple.DiscRecordingContent 3.1.6 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x954ff000 - 0x95501fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x95889000 - 0x9595dfff com.apple.prokit 3.1.1 (591) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x9606b000 - 0x960a1fff com.apple.audio.midi.CoreMIDI 1.5.1 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x96468000 - 0x96468fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ad3000 - 0x96ad8fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97ddb000 - 0x98aa9fff com.apple.QuickTimeComponents.component 7.1.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98cf3000 - 0x98cf5fff com.apple.QuickTimeH264.component 7.1.5 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98cf7000 - 0x98ea2fff QuickTimeH264.scalar /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x98f12000 - 0x98fd5fff com.apple.QuickTimeMPEG4.component 7.1.5 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x997e1000 - 0x997fefff com.apple.OpenTransport 3.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    Model: MacBookPro1,1, BootROM MBP11.0055.B08, 2 processors, Intel Core Duo, 2.16 GHz, 2 GB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x86), 0.1.31.1
    Bluetooth: Version 1.7.14f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST910021AS, 93.16 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: LaCie HD Drive, LaCie, Up to 480 Mb/sec, 500 mA
    USB Device: XSKey, Emagic GmbH, Up to 1.5 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    FireWire Device: 0x100800, 0x1F2, Up to 400 Mb/sec

  • I am making a commercial for a contest. Can I use the iMovie music "Acoustic Sunrise" for free, or do I need some sort of permission?

    I just need a clear, understadable answer on this in lamens terms. I am putting together a short video to be entered into a commercial contest. If picked as a winner, it would be used as an online commercial. Can I use one of the iMovie songs "Acoustic Sunrise" without having to pay a fee, or asking for permission? Are all the songs/sound effects that come with iMovie mine to use without a fee/permission?
    I can't seem to find a clear answer on this. I tried reading the agreement, but forgive me, I am still not 100% sure what I can and can't do.
    Thanks to all help!

    Yes you can - maybe.
    These are all free to use, as clearly stated in section 2.C of the iLife Software License Agreement:
    “You may use the Apple and third party audio content (“Audio Content”) contained in or otherwise included with the Apple software, on a royalty-free basis, to create your own original soundtracks for your video and audio projects. You may broadcast and/or distribute your own soundtracks that were created using the Audio Content, however, individual samples, sound sets, or audio content may not be commercially or otherwise distributed on a standalone basis, nor may they be repackaged in whole or in part as audio samples, sound files, sound effects or music beds.”
    http://images.apple.com/legal/sla/docs/ilife09.pdf
    You may need to contact Apple Legal:
    http://www.apple.com/legal

  • Need some sort of SQL Server error log parser?

    I have over 100 MSSQL instances - ranging from SQL2000 - SQL2012.
    Currently, I'm querying using EXEC SP_ERRORLOG to read the log files. With the querying method, I cannot always be on top of things as I like. And frankly, I just check once a day for a period of 24 hours or so.
    I'm wondering if there's an utility / software / solutions out there that does the following:
    1) constantly monitors the error logs of all instances
    2) present the log files in an orderly manner for each instances as needed.
    3) email out a group of people for certain error / severity / state number. 
    Putting this in SQL Server Security because I'm mainly interested in errors like 18456 Login failed either from reboot or actual login failed.
    Thanks

    You can try that using Powershell
    srvr.txt should contain a list of servers, I would prefer same SQL version.
    Save the content to ReadingErrorlog.PS1
    param
    [String] $infile,
    [DateTime] $date,
    [int] $last,
    [String] $OutFile
    function getUNCPath($infile)
    $qualifier = Split-Path $infile -qualifier
    $drive = $qualifier.substring(0,1)
    $noqualifier = Split-Path $infile -noQualifier
    "$drive`$$noqualifier"
    $srvr=get-content c:\DBAScripts\srvr.txt
    foreach($svr in $srvr)
    $UNC=getUNCPath($infile)
    $readbuffer=get-content -path \\$svr\$UNC -encoding unicode | select-object -last $last
    $i=0
    [Datetime] $date
    [String] $Outbuffer
    $outbuffer=""
    foreach($line in $readbuffer)
    $i++;
    $mydate=$line.substring(0,22)
    Write-host $Mydate
    if ($line -ne "")
    if($mydate -ge $date)
    if ($line -like "*Error:*")
    write-output "$i: $line"
    $outbuffer=$outbuffer+$line
    add-content -path $outfile -value $outbuffer
    sample call
    PS:\>.\ReadingErrorlog.PS1  "f:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\errorlog"
     "2012-05-01 12:00:00.00"
     10  c:\DBAScripts\output.txt
    You may need to re-work on the code here and there.
    --Prashanth

  • I need some sort of a Timer ..

    How are you doing ... I'm making a game for my gr 12 class, Target Practice crap, very simple. I don't know how to get the target to stay up for a certain amount of time, and then dissapear at a next random spot, OR dissapear if it's clicked on ... if you helped me, I would really appreciate it .. here's my code: (If anyone feels like ripping it off, I'd be honored :) )
    import java.applet.*;
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
    import java.util.*;
    public class GameVersion2 extends Applet implements Runnable
    //Initial crap
    private Image dbImage, top;
    private int xPosition = 0, yPosition = 0;
    private Random rand = new Random ();
    private int scoreCount = 0, otherCounts = 0;
    private int count = 0;
    Date startTime;
    Date clickTime;
    public void start ()
    Thread th = new Thread (this);
    th.start ();
    Thread th2 = new Thread (this);
    th2.start (); // Stop thread for 20 milliseconds
    public void init ()
    dbImage = getImage (getCodeBase (), "warning.gif");
    top = getImage (getCodeBase (), "Top.gif");
    public void run ()
    this.getXYPositions ();
    public void getXYPositions ()
    xPosition = 10 + (Math.abs (rand.nextInt ()) % 750); //determines where the picture will appear x wise; 10<x<760
    yPosition = 120 + (Math.abs (rand.nextInt ()) % 340); //determines where the picture will appear y wise; 120<x<460
    startTime = new Date ();
    public void paint (Graphics g)
    g.setColor (Color.blue);
    g.drawRect (10, 120, 780, 370);
    g.drawImage (top, 78, 2, this);
    g.drawImage (dbImage, xPosition, yPosition, this);
    g.drawString ("Your Score is: " + scoreCount, 20, 510);
    g.drawString ("The time is " + startTime, 20, 580);
    showStatus ("TargetPractice");
    try
    Thread.sleep (820);
    catch (InterruptedException ex)
    // do nothing
    public boolean mouseDown (Event e, int x, int y)
    if (((xPosition + 30) > x && x > xPosition) && ((yPosition + 30) > y && y > yPosition))
    scoreCount++;
    this.getXYPositions ();
    repaint ();
    else
    this.getXYPositions ();
    repaint ();
    return true;

    Hmmm,
    looking at the comments above I'm not sure how much of this is your own code ... oh well, I've rewritten your Thread part so that you image now jumps around a bit. ActionEvents with a boolean are deprecated and you Date() method could be seriously improved too. Please look these up, do a search at the 'new to' forum or 'java programming' forum and try and implement them yourself (much more fun).
    Ce la vie - and in good faith!import java.applet.*;
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
    import java.util.*;
    public class junk extends Applet implements Runnable{
         //Initial crap
         private Image dbImage, top;
         private int xPosition = 0, yPosition = 0;
         private Random rand = new Random ();
         private int scoreCount = 0, missCount = 0;
         private int count = 0;
         Date startTime;
         Date clickTime;
       Thread picture = null;
       boolean started = true;
         public void init(){
              dbImage = getImage (getCodeBase (), "A.gif");
              top = getImage (getCodeBase (), "B.gif");
         public void start(){
          if(picture == null) {
             picture = new Thread(this, "junk");
             picture.start();
         public void run(){
          Thread thread = Thread.currentThread();
          while (picture == thread){
                   try{
                while(started){
                           Thread.sleep (1000);
                   getXYPositions();
                   repaint();
                   catch (InterruptedException ex){}
         public void getXYPositions(){
              xPosition = 10 + (Math.abs (rand.nextInt ()) % 750);
              yPosition = 120 + (Math.abs (rand.nextInt ()) % 340);
         public void paint(Graphics g){
              g.setColor (Color.blue);
              g.drawRect (10, 120, 780, 370);
              g.drawImage (top, 78, 2, this);
              g.drawString ("Your Score is: " + scoreCount, 20, 510);
              g.drawString ("Misses: " + missCount, 220, 510);
              g.drawString ("The time is " + startTime, 20, 580);
              showStatus ("TargetPractice");
              g.drawImage (dbImage, xPosition, yPosition, this);
         public boolean mouseDown(Event e, int x, int y){
              if (((xPosition + 30) > x && x > xPosition) &&
             ((yPosition + 30) > y && y > yPosition))    {
                   scoreCount++;
                   this.getXYPositions ();
                   repaint ();
              else{
                   this.getXYPositions ();
             missCount++;
                   repaint ();
         return true;
    }

  • Need some sort of help: Solaris 9 (intel)

    After numerous attempts to install Video drivers etc. and by recomended instruction "press F2 for the test" I have got the freezing system. After reboot I have got:
    System is ready.
    Console Login:
    Starting Desktop login on Display 0:...
    Wait for desktop login screen before loggin in
    and freeze again... nothing happens; I cannot type login, etc.
    How I can resolve this problem at lease make this CDE disabled if I cannot login. :(
    One most radical solution -- reinstall I know :)
    Alex.
    PS my video card is TSENG LABS ET4000/W32P

    I built initpcic (XIGSpcic) packages that install on Solaris 10 x86, however it still doesn't plumb the underlying 3c589 card.
    The packages are available at
    ftp://ftp.sun.drydog.com/ftp/pub/solaris
    ftp://ftp.sun.drydog.com/ftp/pub/solaris/initpcic-1.7-sol10.pkg
    ftp://ftp.sun.drydog.com/ftp/pub/solaris/initpcic-1.7-sol10.src.tar.
    Has anyone figured out how to configure it? The DCA (Device Configuration Assistant) is no longer available with Solaris 10 (Solaris 10 06/06 and 12/06).

  • INaviX marine navigation on ipad2.  Need some sort of anti-glare screen

    I am running iNaviX marine navigation software on my iPad2.  I can't see the charts due to the glare.  Does someone have an anti-glare screen that will allow me to see the screen?

    There are many anti-glare screen products available, ranging from "pricey" US$30 or more to "inexpensive" under US$10.
    If you're in a hurry, major electronics chains and Apple Stores usually have the pricey ones in stock. I found a high quality anti-glare screen online from www.handhelditems.com for well under $10. In two months of moderate daily use, it is not wearing or coming loose.  But I'm not in a marine environment.
    HHI offers several kinds, sold singly and in multiples.  Search for "HHI Crystal Clear Screen Protector For iPad 2 and iPad 1"
    This is the one I purchased: http://www.handhelditems.com/ipad-antifingerprint-antiglare-matte-finishing-scre en-protector-free-handhelditems-stylus-p-161160.html
    Since you are in a marine environment, I suggest that you investigate whether accident protection insurance coverage would be worthwhile. If it's personal use, you might be able to add coverage via homeowners insurance.

  • Require some complex logic scenario in message mapping

    Hi all,
                 I need some complex logic scenarios for practice in message mapping . Kindly forward some links for message mapping logic scenarios.
    Thank you so much in advance.

    always search sdn first....
    http://wiki.sdn.sap.com/wiki/display/XI/MappingConceptsinSAPXI

  • We Need Some Developer Recognition Here

    Forgive me if I missed something of this sort, but it seems to me that we need some sort of "About the Developers" page. Looking around, I have very little idea of who the devs are anymore, and I think they need more recognition for their work. Just throwing this out there, it's a feeling I've had for a while.

    Gah, I've been proven an idiot within 10 minutes. Oh well, it's happened before.
    EDIT: LOL, now I get the joke behind Iphitus' avatar.
    Last edited by arew264 (2008-08-17 17:03:56)

  • Create some sort of blurring

    Hi!
    i think that indesign need some sort of blurring, and it's pain in *** if i need to open photoshop for every image and apply filter to get some sort of blurring...

    http://en.wikipedia.org/wiki/List_of_sc … ware#Linux
    Oh sorry I didn't see the part where you wanted it as a webcam for Skype. I didn't know such a thing exists unless one of the above listed programs have that feature.
    Last edited by sand_man (2009-06-25 11:17:30)

  • I am moving to Alice Springs, Australia, this summer from the U.S. I would like to get the new iPad. How can I found out if I will be able to access all the functionality in Alice? Will I need to purchase a local plan of some sort?

    I am moving to Alice Springs, Australia, this summer from the U.S. I would like to get the new iPad to use while traveling back and forth from the U.S. to Australia, and within Australia. How can I found out if I will be able to access all the functionality of the iPad in Alice? Will I need to purchase a local plan of some sort? I have never owned an Apple product before -- I'm a newby!

    Aside form the limitation of LTE to the 700MHz and 2.1GHz bands (which rules out LTE in Europe I gather, at least as it stands now) the new iPad should let you use a GSM 3g/2g/edge network anywhere.  The CDMA Verizon model will only be able to use it's native CDMA radio band in the USA (that radio will be locked to Verizon), but it's international GSM radio is the same as the AT&T model.
    Keep in mind though that by far the cheapest option when abroad is to take advantage of free wifi as much as possible (well, that is always the cheapest option, since it is free).  I know several people who have taken their wifi-only iPads and iPad2s to Europe and said they did not find the lack of 3G really inconvenient at all as most towns had plenty of free or cheap wifi access all over the place.
    And in 3 years, your iPad will be at least 2-3 generations behind, LTE will have already been replaced by 5G or whatever the next new generation of cellular ends up being named (and the "young" kids will be wondering what the heck 3G even means or meant - dang that stuff was from the olden days!), and you can pitch that ancient piece of technology and start things all over again 

Maybe you are looking for

  • Pathetic Apple TV - no home sharing possible? Can connect mac but not ipad or iphone?

    Pathetic apple tv cannot do mirror airplay with iphone and ipad , which was possible before ??? Miserable apple tv is not able to do home sharing and has frustrated me millions of times with turn on already on home sharing?? And some of times it will

  • IPhone 2.0 doesn't work with my exchange server

    My tech support guys have been working on my iPhone for an entire day and couldn't get it to work with the server. They are telling me that the phone isn't compatible with the exchange server and it would require an entire overhaul of our server and

  • Force safari to display pdf in browser instead of downloading

    Most of times, my computer displays pdf within Safari browser window, which is my preferred way of viewing online pdf's. But sometimes it downloads it to the "Download" folder. I don't really understand the difference. Is there a way to stop Safari f

  • How to avoid exception when setting a date in an Edit control?

    I'm have made a Coded UI Test with VS 2012 for a web application of a colleague. In that web application is a table with some entry fields of type Edit. In one of these fields (called "DatumAb") i can enter a date in format "dd.mm.yyyy" (day, month a

  • No Mass Storage/Media Transfer for OS X users...

    Yesterday i purchased Nokia 808 PureView I'm really happy to have this piece of pure technology everyday ( from now on) with me But i am OS X user. And guess what? My 808 with Belle FP1 won't connect to my mac mini in mass storage or media transfer m