IPhone SDK Memory Management

Hi,
I have following code:
(void) DismissWelcomeMessage: (UIAlertView *) view
[view dismissWithClickedButtonIndex:0 animated:YES];
(void) ShowWelcomeMessage
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Blah" message:@"Blah Blah" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[self performSelector:@selector (DismissWelcomeMessage:) withObject: alert afterDelay: WELCOMEMESSAGEDELAY];
[alert release];
ShowWelcomeMessage is called first.
Why DissmissWelcomeMessage works fine and does not crash even though alert object is released?
Is it because Dismiss function uses copy of the object passed on stack as a parameter to function? But even then would not it be just a copy of the pointer pointed to the now deallocated object?
Or [alert release] just decriment reference counting and does not really do the same as delete in C++?

[[alert release]] just decrements the release count. dealloc is called on alert, like on any object, when its reference count raise 0.
The message [self performSelector:@selector (DismissWelcomeMessage:) withObject: alert afterDelay: WELCOMEMESSAGEDELAY]; queues an event which retains both self and alert. The Event Manager will release both after sending the message (after the delay).
The comments below traces the retain count of alert
(void) ShowWelcomeMessage {
UIAlertView *alert = [UIAlertView alloc] initWithTitle:@"Blah" message:@"Blah Blah" delegate:self
cancelButtonTitle:@"OK" otherButtonTitles:nil; // retain count = 1
alert show;
self performSelector:@selector (DismissWelcomeMessage:) withObject: alert
afterDelay: WELCOMEMESSAGEDELAY; // retain count = 2
alert release; // retain count = 1
An advice: don't use uppercase method name. Only Class names should be uppercased
(void) DismissWelcomeMessage: (UIAlertView *) view // should be "dismissWelcomeMessage"
(void) ShowWelcomeMessage // should be "showWelcomeMessage"

Similar Messages

  • IPhone SDK - Download manager sample

    I need a download manager in my app. I want to have it download a bunch of files in a different thread so that user can keep working. Once the downloads are done the caller gets notified. Since the app cannot run in the background, the download should be restartable.
    Does anyone know if there is already something out there?
    Thanks in advance.
    -TRS

    Another victim here. Happily started downloading iphone SDK just after purchasing my new MacBook and it always stops at 2.1 GB. And of course it is corrupted.
    For those who are thinking about OS or firewalls, here are my trials:
    1. From my MacBook at home
    2. From my HP laptop at home
    3. From my desktop at home
    4. From my HP laptop at work
    5. From my Ubuntu at home
    6. From my Ubuntu virtual machine at work.
    Do you think it is still a client problem? Or the version on the server is corrupted?

  • After Effect SDK memory managing

    Hello, guys!
    I'm new at AE SDK, so..
    I have, for example, such in sequence memory handle:
    struct
         char* a1;
         char* a2;
    } MyData;
    During sequence setup, i ask host to allocate memory for it:
        PF_Handle    seq_dataH =    suites.HandleSuite1()->host_new_handle(sizeof(MyData));
        if (seq_dataH){
            MyData    *myData = static_cast<MyData*>(suites.HandleSuite1()->host_lock_handle(seq_dataH));
            if (seqP){
                PF_Handle a1_handle    =    suites.HandleSuite1()->host_new_handle(255);
                PF_Handle a2_handle    =    suites.HandleSuite1()->host_new_handle(255);
                myData->a1 = static_cast<char*>(suites.HandleSuite1()->host_lock_handle(a1_handle));
                myData->a2 = static_cast<char*>(suites.HandleSuite1()->host_lock_handle(a2_handle));
                out_data->sequence_data = seq_dataH;
    The question is: how can i release memory for MyData.a1 and MyData.a during SequeceSetdown if i have not appropriate PF_handle's at this moment (i have only sequence_data)? Is next code release ALL my sequence memory (including a1 and a2)
         suites.HandleSuite1()->host_dispose_handle(in_data->sequence_data)
    In general i want to ask if should i keep all memory handles for locking, unlocking, disposing, resizing etc...
    Thx.

    er...
    none of that strikes me as correct... at least in some respects.
    the sequence data is used for two purposes:
    1. storing data that lasts session long for this particular instance of your effect.
    2. storing data with the project, that will be retrieved on the next session, again, for this particular instance.
    so from what i gather from your code (and i may be wrong), it works for the first reason and not the second.
    you define your data structure like so:
    struct
         char* a1;
         char* a2;
    } MyData;
    that means that your data is 2 pointers.
    NOT the content of these points, but the pointers THEMSELVES.
    so when the project is saved and re-loaded, you'll have two pointers that point to a no longer valid piece of memory.
    if you defined:
    struct
         char a1[256];
         char a2[256];
    } MyData;
    and then:
    out_data->sequence_data = PF_NEW_HANDLE(sizeof(MyData));
    then you would now have a handle that stores the content of two 256 char arrays, and not just pointer to such arrays.
    if you do it this way, the content of the two arrays will be stored with the project, and retrieved on the next session.
    what you did is not wrong, it just works for a different purpose.
    and another thing:
    there is the handle_suite, and the memory_suite.
    these should be used for different things. (though they can be interchangeable)
    the handle suite is used for handles provided to you by AE. (i.e. the global_data, sequence_data and frame_data)
    these handles are locked and unlocked for you, whenever AE is calling your plug-in.
    the memory suite is used to manage pieces of memory that are not the 3 handles given by AE.
    that allocated memory is up to you lock, unlock, move and free.
    consider this mixed solution:
    struct
         char a1[256];
         char a2[256];
         char* a3;
         AEGP_MemHandle a3H;
    } MyData;
    out_data->sequence_data = PF_NEW_HANDLE(sizeof(MyData));//allocating the memory
    MyData *myData;//creating a local instance of the structure to work with
    myData = *(MyData**)out_data->sequence_data;//connecting the local structure to the global handle.
    so now the sequence_data handle points to a structure of two ready to use arrays (a1, a2), and one pointer that points to nothing (a3), and a mem handle, to be used soon.
    to associate a chunk of memory to the a3 pointer you should use the memory suite.
    ERR(suites.MemorySuite1()->AEGP_NewMemHandle( NULL,
                                                                                    "a string to be displayed in case of an error",
                                                                                    666, //size of chuck in bytes
                                                                                    AEGP_MemFlag_CLEAR,//use this flag to get a zeroed out chunk
                                                                                    &myData->a3H));
    ERR(suites.MemorySuite1()->AEGP_LockMemHandle(myData->a3H, reinterpret_cast<void**>(&myData->a3)));
    this is it.
    a3 is now the proud owner of 666 bytes.
    all of which will be available until the a3H handle is freed.
    it is now up to you to free that memory.
    you could do that at any time but most likely you'd want to free it during sequence_setdown
    so first you should free a3H. why? because it's handle is stored with with the sequence_data handle, and if you free the sequence_data handle first, you won't have that a3H handle available to free it.
    if(myData->a3H)
    { ERR2(suites.MemorySuite1()->AEGP_UnlockMemHandle(myData->a3H));
      ERR2(suites.MemorySuite1()->AEGP_FreeMemHandle(myData->a3H)); }
    and now you can dispose of the sequence_data:
    PF_DISPOSE_HANDLE(in_data->sequence_data);
    that's it.
    that last thing you should do is lookup PF_Cmd_SEQUENCE_FLATTEN on the SDK guide.
    apart from that, we've made a round trip.

  • [iphone sdk] memory allocations and application sandboxing

    folks,
    does the os automatically de-allocate any memory allocated when my app exists? reason i ask is the phone seems to get slower and slower over time with more crashes. a hard restart seems to fix the problem.
    i'm guessing that it is because i'm not cleaning things up on exit or something, but maybe there is something else wrong.
    john

    The academic answer is: It shouldn't matter how much memory you leak in your app after the app has been closed. I can't speak to how the device functions cause I can't test on one yet! But it's UNIX under the hood and that means each process is assigned it's own address space. Any memory allocated to a process is completely reclaimed when the process exits.
    I'm not sure what changes Apple made to the VM kernel subsystem for the iPhone. Unix is already tried and tested in this arena -- so if it's the default Darwin VM I would be very surprised if this is a bug. But since this is embedded they may have added some "shortcuts" for performance and efficiency... hard to say. Since you have the device, are you able to do any system level diagnostics? does the device lose free memory the more your start/stop your app?
    Also -- the device has 128MB of RAM. The 8 or 16GB is storage, which isn't used for RAM. The specs are hard to find, but I think I found the answer through Google on the amount of RAM in the iPhone and iPod Touch.
    Cheers,
    George

  • [iPhone SDK] Memory leak - NSPlaceholderString

    I'm having an issue with my app where using the Instruments tool I see that a NSPlaceholderString isn't releasing 16bytes of data.
    The 'Responsible Caller' text reads:
    -[NSPlaceholderString initWithFormat:locale:arguments:]
    All my getters use:
    return [[[[NSString alloc] initWithFormat:@"%@someformating",someObject] retain] autorelease];
    Does anyone have any clues as to what I should be looking out for?

    The history actually relates to an accessor method. I seemed to have misunderstood the documentation ("Accessor Methods"), the retain shouldn't be there.
    I'll give it ago without retain and see what happens.

  • Release memory in iPhone SDK

    Hi,
    1. I want to release previous memory before I redraw the screen. Is this the right way to do it using iPhone SDK?
    [self.securityCodeView release];
    self.securityCodeView = [[SecurityCodeView alloc] initWithFrame:Frame];
    [self addSubview:securityCodeView];
    [\b]
    2. How do I refresh the screen without having to ALLOC memeory again? For example, I draw the screen ([self addSubview:securityCodeView]) and after one second, the screen needs to be redrawn (what statement to use?).
    3. How do you retain some UIViews without redrawing since they don't need to be redrawn again (what statement to use)? For example, backgroundView needs not to be redrawn.
    Thank you.

    I would suggest you read the docs on Memory Management on Obj-C. Basically anything you allocate explicitly will remain allocated (with a ref count of 1) until you explicitly do a release:
    [myView release];
    When you add a view to another view's subview, that view's ref count is incremented. So you can safely release the added view and yet use the references to the object throughout the code (as long as the parent view is not released/deallocated).

  • IPhone SDK 2.2 memory corruption

    Hello. I'm working on an application for iPhone SDK 2.2 and seem to be having weird memory corruption problems. Not necessarily leaks because using Instruments shows my memory stamp never going above about 1.8 megs. The nature of the app is a database of animals so I'm constantly loading and unloading sounds and images. None of the objects are very large (at most I'll have 4 800k pngs loaded at once) and I've checked and rechecked my alloc/retain/release and everything is in order (hence no memory usage increase). However...after using the application for a while I'll notice strange behavior. For example:
    1) we have a UILabel as the title for each page. After a while the font size of this will change.
    2) I have several screens with a subclassed UIScrollView where images are loaded and then added to. The problem shows itself here by the images not showing up. there's no crash, stepping through the debugger shows that the image loads up fine, it's just that the image is not there.
    3) I have a UILabel at the top of an animal description screen, which in the nib file is called "Animal Name" by default. This will change to show "Animal Name" at the top.
    I've removed all audio in our latest build so that isn't the problem. What I'm starting to suspect is that altering anything defined in a nib file will cause corruption. For example, the UIScrollView is defined in the nib file, and I constantly am reassigning the contents of that with a UIImageView. This UIImageView is handled within the subview class like :
    UIImageView *imgView = [[UIImageView alloc] initWithImage: [ UIImage imageWithContentsOfFile:[[NSBundle mainBundle ] pathForResource:imageToLoad ofType:@"png" ]] ];
    imgView.tag = 50;
    [self addSubview:imgView ];
    [ imgView release ];
    Then later when moving away from the screen I'll find that view's tag and remove it from the superview (since addSubView increases the retain count, the alloc+addSubView is cancelled by release+removeFromSuperView)
    I can't explain why titles that are never changed would be affected, but it must somehow be related. What I'm wondering is: are there any known issues involving modification of the contents of objects defined in Nib files? Perhaps the memory allocated when initWithNibName is restrained, then any modification of objects allocated within it can cause corruption. I'm starting to think I should just alloc and free anything modified in code and skip using nib files altogether (I reset the text on buttons for example). If this is a known issue please let me know. I'll give you more information if I can.
    Thank you

    Just download the huge SDK package and install. No need to uninstall the old SDK.

  • IPhone: Memory Management / Tracking Tools

    I am new to Mac/iPhone programming but have 20+ years in Windows. I am not familiar with the tools but MS Dev Studio will show memory leaks as the app shuts down. Is there a similar switch to turn on for xcode? I am having trouble with the gestalt of memory management on this platform. For example, I know this is bad code style but is there a leak here?
    myLabel.text = [@"Hello, World. " stringByAppendingString: myTextField.text];
    Thanks,
    Todd

    I found section four of this document incredibly useful.
    Broadly speaking, if you create an object using "alloc" you need to manually clean up afterwards, otherwise it will be autoreleased and you won't get a memory leak.
    XCode comes with Instruments which allows you to track down leaks (among other things).
    Cheers,
    --> Stephen

  • IPhone SDK on PPC

    Hi,
    I am fully aware that the iPhone SDK is NOT supported on PowerPC based macs.
    I have read several tutorials on how to make it work (including http://3by9.com/85/), but I have found something quite annoying.
    All of the tutorials refer to a package named "Aspen Simulator", but it is NOT in my "Packages" folder of the SDK I downloaded. Also, tutorials say the install is about 5 gig, mine was four gig.
    My best guess is that the tutorials were made for the beta versions of the iPhone SDK.
    How can I develop iPhone Apps on a PPC based mac? I do NOT want to put them on the App Store, I am just eager to experiment.
    Thank you.

    Thanks! I managed to get the simulator running!
    Just need to clarify one last thing:
    To test on my iTouch, I need to pay the $99 fee right?

  • IPhone SDK: unrecognized selector

    I'm relatively new to Objective-C/iPhone SDK development. I have an issue that really seems to produce random (or at least nondeterministic) errors, all of which are "unrecognized selector" errors.
    I have a UITableViewController that is populated with table names from a MySQL database. When I select a table name, a second UITableViewController is created to display detailed data. I thought this was working just fine, but I discovered I have problems when I select a certain table name, (detailed results are displayed in second UITableViewController), go back, select the same table name, (...), go back, and select the same table name a third time. The Simulator explodes and gives me an error like:
    * -[UICGColor length]: unrecognized selector sent to instance 0x1050810
    Sometimes it's related to UICGColor, sometimes it's related to CALayerArray. Sometimes it doesn't produce any error at all and just terminates.
    What's also weird is that only some of the table names cause this to happen. Also, if I cycle through several table names (i.e., not select the same table over and over), the app is fine. I would tend to think that maybe something is wrong with my database or MySQL C API usage, but the fact that things are perfectly fine the first and second (and third and fourth and ... and nth for some tables) time baffles me. I'm not using any dynamic method calling either -- just straight
    [ object method: ] syntax, so I'm not sure how it suddenly can "lose" the selector reference that it was perfectly happy to use earlier. As far as I can tell, I'm releasing memory as necessary.
    Any clues why this seems to be so weird and unpredictable? I can provide source if it would help.

    Ugh. Problem solved. I was tampering with autorelease, and it got me into trouble. I had this:
    query = [ [ [ NSString alloc ] initWithFormat:@"...%@", [ [ tableView cellForRowAtIndexPath:indexPath ] text ] ] autorelease ];
    I thought that I should autorelease the "anonymous" object I created. It made sense at the time, but upon thinking about retain/release more closely, it's so clear now.

  • IPHONE SDK FOR DEVELOPERS.

    Hi Mates,
    After many trials, I managed to download the iPhone SDK. I have the following folders :
    AccelerometerGraph,
    BubbleLevel,
    CryptoExercise,
    HelloWorld,
    PVRTextureLoader,
    SpeakHere,
    TouchCells,
    UICatalogue.
    I am not sure if all the folders were downloaded well.
    I have some problems to start. I have Windows Vista. Can the iPHone SDK run under Vista or does it require Mac OS.
    Thanks to help.
    Judex.

    Thanks for the "friendly" note, but as a "friendly" reminder to you - this is a user to user help forum that is primarily composed of "average joe" users of the iPhone. And what I mean by that is, this is not a computer programmer's forum.
    Nothing personal against the OP for this thread, but he missed the minimum system requirements for the SDK provided at Apple's website where the SDK can be downloaded. Based on this alone, and I could very well be wrong, but I venture to say that he is not a computer programmer, or is not a programmer by profession.
    I certainly could have worded my reply differently to be 100% accurate in regards to technical details for the computer programmer and anal retentive type, which I venture to say these discussions are not primarily composed of.
    I included the part about the iPhone running an optimized version of OS X in regards to Apple's minimum system requirements for the SDK primarily to keep it simple since I expected - "why doesn't Apple utilize resources to support Windows with the SDK?"
    Most people who ask that question are not computer programmers as a hobby or by profession either.
    To keep it simple for what is likely the majority here, which probably does not include many computer programmers by profession - Apple could port the SDK to Windows, but since Apple sells computers and other hardware including iPods and the iPhone, along with their own software, Apple chose to support an Intel Mac running Leopard only for the iPhone and iPod Touch SDK - with both the iPhone and the iPod Touch running an optimized version of OS X.
    Thanks for the note and clarification.

  • IPhone SDK - trouble working with iPod Touch 2G

    Hello, new Macbook OSX 10.5.4, new iPod Touch running iPhone OS 2.1. Just downloaded and installed xcode 3.1.1 and newest iPhone SDK.
    I read the iPhone OS Pre-Installation Advisory document found here:
    http://developer.apple.com/iphone/download.action?path=/iphone/iphoneos_software_preinstallation_advisory/iphone_os_2.1_preinstallationadvisory.pdf
    I created shortcut:
    .../iPhoneOS.platform/DeviceSupport/2.1.1/
    pointed to:
    .../iPhoneOS.platform/DeviceSupport/2.1/
    Checked the shortcut, it works.
    Start xcode, open Window->Orgnizer. "Xcode cannot find the software image to install this version" is showing up just below the "Software Version" line. Software version has a value of 2.1.1 (5F138).
    If I ignore this and continue to build, sign and try the application. I will receive an error message "Your mobile device has encountered an unexpected error (0xE800003A) during the install phase: Verifying application" I tried disconnect the iPod Touch, power off, power on. Same problem.
    I tried to make a complete copy in (not a shortcut):
    .../iPhoneOS.platform/DeviceSupport/2.1.1/
    Same problem.
    What should I do to trace this issue?

    I wanted to compile and upload the sample app Accelerometer Graph onto my brand new ipod touch 16.
    I got the notorious error (0xE800003A) during the install phase, verifying.
    i checked all the product id#'s which i just copied/pasted when creating the certificates etc.... so i don't know what's wrong... so what IS wrong?
    here's the logs:
    ==== Attached at 2008-09-25 17:04:27 -0400 ====
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: urn IOSDIOController::enumerateSlot(UInt8, bool): Found SDIO I/O device. Function count(2), memory(0)
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: IOReturn IOSDIOIoCardDevice::parseCIS(): Device manufacturer Id(4d50), Product Id(4d48)
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::init(): Starting with debug level: 4, debug flags: 00000000
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::start()
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::initHardware(): BCM4325 revision D0
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: read new style signature 0x43313131 (line:281)
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] VSVFL Register [OK]
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] VFL Init [OK]
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: detected HBPP. driver will be kept alive
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: enabled power, scheduled bootloading
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: BCM4325 Firmware Version: wl0: Sep 1 2008 14:42:30 version 4.173.4.0
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::initFirmware(): successful initialization
    Thu Sep 25 17:04:17 unknown com.apple.launchd[1] <Notice>: Bug: launchd.c:228 (23506):19: mount("fdesc", "/dev", MNT_UNION, NULL) != -1
    Thu Sep 25 17:04:18 unknown com.apple.launchctl.System[2] <Notice>: Bug: launchctl.c:2907 (23614):2: sysctl(nbmib, 2, &nb, &nbsz, NULL, 0) == 0
    Thu Sep 25 17:04:18 unknown com.apple.launchctl.System[2] <Notice>: /dev/disk0s1 on / (hfs, local, read-only, noatime)
    Thu Sep 25 17:04:18 unknown com.apple.launchctl.System[2] <Notice>: /dev/disk0s2 on /private/var (hfs, local, nodev, nosuid, noatime)
    Thu Sep 25 17:04:18 unknown com.apple.launchctl.System[2] <Notice>: launchctl: Couldn't stat("/etc/mach_init.d"): No such file or directory
    Thu Sep 25 17:04:19 unknown com.apple.launchd[1] <Warning>: open("/var/logs/BTServer/stdout", ...): No such file or directory
    Thu Sep 25 17:04:19 unknown com.apple.launchd[1] <Warning>: open("/var/logs/BTServer/stderr", ...): No such file or directory
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325: Ethernet address 00:22:41:c3:88:2c
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::setPowerStateGated() : Powering On
    Thu Sep 25 17:04:19 unknown mDNSResponder mDNSResponder-178.2 (Aug 10 2008 22:56:13)[17] <Error>: starting
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: downloaded 128 bytes of prox calibration data ("built-in")
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: downloaded 256 bytes of calibration data ("built-in")
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleD1759PMUPowerSource: AppleUSBCableDetect 1
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleSynopsysOTG2::handleUSBCableConnect cable connected, but don't have device configuration yet
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: downloaded 48612 bytes of firmware data ("0x0051.bin") in 149ms.
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleS5L8720XFMSS::_fmssInitCmdsAndCEMaskCtrl: VendorSpecific: VSCMDSIMPLE
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] VFL_Open [OK]
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] YAFTL Register [OK]
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] FTL_Open [OK]
    Thu Sep 25 17:04:19 unknown /usr/sbin/fairplayd[20] <Notice>: Vroum
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: Got boot device = IOService:/AppleARMPE/arm-io/AppleS5L8720XIO/flash-controller0@A00000/AppleS5L8 720XFMSS/disk@FF/AppleNANDFTL/IOFlashBlockDevice/IOBlockStorageDriver/unknown vendor unknown product Media/IOFDiskPartitionScheme/Untitled 1@1
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: BSD root: disk0s1, major 14, minor 1
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: Jettisoning kernel linker.
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: mDNSResponder[17] syscallbuiltinprofile: mDNSResponder (seatbelt)
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: mDNSResponder[17] Builtin profile: mDNSResponder (seatbelt)
    Thu Sep 25 17:04:20 unknown com.apple.BTServer[26] <Notice>: BTServer 1.2 () Modified on
    Thu Sep 25 17:04:20 unknown com.apple.BTServer[26] <Notice>: com.apple.server.bluetooth: Bluetooth Super Server Robot Destroyer
    Thu Sep 25 17:04:20 unknown com.apple.BTServer[26] <Notice>: com.apple.server.bluetooth: Got local-mac-address: 00:22:41:c1:42:29
    Thu Sep 25 17:04:20 unknown com.apple.BTServer[26] <Notice>: machport is com.apple.server.bluetooth
    Thu Sep 25 17:04:20 unknown lockdownd[15] <Error>: (0x3941d6d0) lookupimei: Could not get matching service for baseband
    Thu Sep 25 17:04:21 unknown mDNSResponder[17] <Error>: Note: SetDomainSecrets: no keychain support
    Thu Sep 25 17:04:21 unknown com.apple.BTServer[26] <Notice>: Cannot read termcap database;
    Thu Sep 25 17:04:21 unknown com.apple.BTServer[26] <Notice>: using dumb terminal settings.
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: Opening /dev/cu.bluetooth @ 115200 baud.
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: bluetooth wake is now ON
    Thu Sep 25 17:04:22 unknown com.apple.itunesstored[18] <Notice>: Couldn't open shared capabilities memory GSCapabilities (No such file or directory)
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: bluetooth reset was pulsed 100 ms
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: Issued HCI Reset
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: Sending UpdateUART_BaudRate
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: Setting local baud rate
    Thu Sep 25 17:04:23 unknown configd[21] <Notice>: CLTM: No thermal sensors detected, not registering for notifications
    Thu Sep 25 17:04:24 unknown kernel[0] <Debug>: en0: setting diversity to: -1
    Thu Sep 25 17:04:24 unknown lockbot[30] <Error>: copy_preference: Could not ssetgid to 501: Operation not permitted
    Thu Sep 25 17:04:24 unknown kernel[0] <Debug>: en0: setting tx antenna: -1
    Thu Sep 25 17:04:24 unknown lockbot[31] <Error>: copy_preference: Could not ssetgid to 501: Operation not permitted
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) sanitizedevicename: Could not convert device name into buffer
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80cc00) calculateapplicationusage: Calculating the application usage
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) ping_configd: Could not sanitize device name
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) load_systemversion: Could not lookup release type
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) extract_recordidentifier: Could not extract ICCID from account token
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) loadactivationrecords: Could not extract ICCID from record
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) loadactivationrecords: This is the iPod activation record
    Thu Sep 25 17:04:24 unknown configd[21] <Notice>: setting hostname to "iPod"
    Thu Sep 25 17:04:25 unknown lockdownd[15] <Error>: (0x80be00) determineactivationstate: The original activation state is Activated
    Thu Sep 25 17:04:25 unknown lockdownd[15] <Error>: (0x80be00) determineactivationstate: SIM status: kCTSIMSupportSIMStatusReady
    Thu Sep 25 17:04:25 unknown lockdownd[15] <Error>: (0x80be00) determineactivationstate: The activation state has not changed.
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 - Configuration: PTP
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: PTP
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 - Configuration: iPod USB Interface
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: USBAudioControl
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: USBAudioStreaming
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: IapOverUsbHid
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 - Configuration: PTP + Apple Mobile Device
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: AppleUSBMux
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function USBAudioControl
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: IOAccessoryPortUSB::start
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function IapOverUsbHid
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: virtual bool AppleUSBDeviceMux::start(IOService*) build: Aug 10 2008 22:34:20
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: init_waste
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function USBAudioStreaming
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function AppleUSBMux
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function PTP
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction all functions registered- we are ready to start usb stack
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::handleUSBReset
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Current Device: UART - /dev/cu.bluetooth
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Setting speed to 115200
    Thu Sep 25 17:04:26 unknown /usr/libexec/ptpd[12] <Notice>: PTP interface bas been activated at high speed.
    Thu Sep 25 17:04:26 unknown SpringBoard[22] <Warning>: Not monitoring for AOS notifications since they are not enabled by user defaults.
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Sending UpdateUART_BaudRate
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Setting local baud rate
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Using env variable: BTDEVICEADDRESS = 00:22:41:c1:42:29
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Sending WriteBDADDR
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Using host name: iPod
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Sending WriteLocalName: iPod
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Sending SetSleepmodeParam
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: com.apple.server.bluetooth: Server attached, going into msg loop.
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: Cannot read termcap database;
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: using dumb terminal settings.
    Thu Sep 25 17:04:27 unknown afcd[35] <Error>: user mobile has uid 501
    Thu Sep 25 17:04:27 unknown afcd[35] <Error>: mode is 0x41e8
    Thu Sep 25 17:04:27 unknown configd[21] <Notice>: WiFi: Currently not associated. Beginning auto join sequence.
    Thu Sep 25 17:04:27 unknown configd[21] <Notice>: WiFi: External power source attached
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: Opening /dev/cu.bluetooth @ 2400000 baud.
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: bluetooth wake is now ON
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: Issued HCI Reset
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: Sending SetSleepmodeParam
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: bluetooth wake is now OFF
    Thu Sep 25 17:04:28 unknown lockdownd[15] <Error>: (0x81c200) set_timezone: Setting the time zone to /usr/share/zoneinfo/US/Eastern
    Thu Sep 25 17:04:28 unknown com.apple.mediaserverd[16] <Notice>: mediaserverd: 17:04:28.136 StreamUSBAspen.cpp[163]: GetCurrentPhysicalFormat(): ERROR: No HAL stream format corresponding to the current iAP digital audio sample rate 0 Hz
    Thu Sep 25 17:04:32 unknown itunesstored[18] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x10c620>. posting local notification for distributed notification: com.apple.itunes-mobdev.syncWillStart
    Thu Sep 25 17:04:32 unknown iapd[19] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x20b290>. posting local notification for distributed notification: com.apple.itunes-mobdev.syncWillStart
    Thu Sep 25 17:04:32 unknown afcd[56] <Error>: user mobile has uid 501
    Thu Sep 25 17:04:32 unknown afcd[56] <Error>: mode is 0x41e8
    Thu Sep 25 17:04:34 unknown SpringBoard[22] <Warning>: lockdown says the device is: [Activated], state is 3
    Thu Sep 25 17:04:34 unknown /System/Library/CoreServices/SpringBoard.app/SpringBoard[22] <Notice>: CLTM: initial thermal level is 0
    Thu Sep 25 17:04:35 unknown securityd[32] <Error>: misagent[60] SecItemCopyMatching: missing entitlement
    Thu Sep 25 17:04:36 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. posting local notification for distributed notification: com.apple.itunes-mobdev.syncWillStart
    Thu Sep 25 17:04:36 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. auto-generating notification 'com.apple.itunes-mobdev.syncWillStart' for (
    <SBSyncController: 0x2ad960>
    Thu Sep 25 17:04:36 unknown itunesstored[18] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x10c620>. posting local notification for distributed notification: com.apple.springboard.syncingUnblocked
    Thu Sep 25 17:04:36 unknown iapd[19] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x20b290>. posting local notification for distributed notification: com.apple.springboard.syncingUnblocked
    Thu Sep 25 17:04:37 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. posting local notification for distributed notification: com.apple.springboard.syncingUnblocked
    Thu Sep 25 17:04:37 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. auto-generating notification 'com.apple.itunes-mobdev.syncWillStart' for (
    <ABRingtoneManager: 0x2c5660>,
    <SBVODController: 0x2c5d70>
    Thu Sep 25 17:04:37 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. posting local notification for distributed notification: com.apple.itunes-mobdev.syncWillStart
    Thu Sep 25 17:04:37 unknown securityd[32] <Error>: mobileimagemou[54] SecItemCopyMatching: missing entitlement

  • Problems downloading iPhone SDK

    I just recently signed up for an Apple Developer account and am trying to download the iPhone SDK. When I start the download it never actually downloads and eventually times out. My problem is also described in these threads:
    http://discussions.apple.com/thread.jspa?messageID=11033796&#11033796
    http://discussions.apple.com/thread.jspa?messageID=11000681&#11000681
    In those threads I have tried the fixes and still been unable to accomplish the download.
    I have tried on computers running Vista and Windows 7 and on my Mac running Snow Leopard.
    On Windows (either one) after clicking on the link it comes up with the file information, I click save, and then the file download dialog opens. No transfer rate ever appears and neither does any indicator that I have downloaded any of the file. Eventually it times out.
    On the Mac I tried downloading with Safari. Safari gets 1.1kb of the file and then tells me it will be many, many years before the download completes and eventually errors out that the server has not responded.
    I currently have a 7 mb DSL connection. I am able to download any other file in the developer release section including X-Code and the Mac SDKs. In fact I have installed both X-Code and the Mac SDKs already and they were fine.
    Other things I have tried:
    1. Multiple browsers on Windows (Firefox, Chrome) with similar errors.
    2. Hooking straight into the modem (normally hooked into wireless N router)
    3. Disabling the modem firewall and Windows Firewall (Macs firewall is off by default. Is that normal?)
    4. using the trick from the other threads of changing http to https. For me it makes no difference.
    5. My work computers (with the same ISP) have no problems downloading the file. However with no disc drive, and with the USB ports disabled that doesn't really help me much. I only tried to see if they would work with my login since another thread suggested some users were being cut off.
    Something else I do not understand is why I have to download the SDK with X-Code. Since I already have the latest version installed it seems like Apple could be saving on bandwidth there. No big deal but just kind of strange.
    Any help anyone could give me would be appreciated.

    Alright it turns out it was actually the DSL modem. Apparently the last major firmware update causes it to have problems downloading specifically from Apple servers. Both iTunes HD content and large downloads from Apple servers are unable to be downloaded. SD content, music, and downloads under roughly 1 gb are unaffected.
    The modem is the 2Wire 2701. I actually managed to find an older modem that worked and downloaded the SDK fine. At this point I am looking around for a new modem just so in the future I will be able to download updates etc.
    Also after a lot of searching it turns out that Qwest doesn't cap their service at all. Even the one report with a limit I turned up turns out that it was either true only back then or was part of a trial that ended. At this point Qwest does not cap at all.
    Take a hint if you are going to respond to a post try to be helpful. If you are not actually going to help troubleshoot don't both.
    But you did use an emoticon. So at least you were useless . . . with style.

  • All music disappears from iPhone 5 when managing manually

    I have an iPhone 5 running iOS 8.2, and a MacBook Pro running Yosemite 10.10.2, iTunes version 12.1.50.
    I have my iPhone configured to manage my music manually.  Recently, while moving an album from my iTunes library onto my iPhone (phone physically connected to the computer), all the music stored on my iPhone disappeared.  Surprised and frustrated, I began the task of moving the albums I wanted over to my phone.  The music transferred fine up to a point, and then all music on my iPhone disappeared again (i.e., nothing shows up in the Music app).  I also noticed that the "other" category in the memory usage bar was suddenly very large... many GBs.
    Things I've tried so far:
    Uninstalling and re-installing iTunes
    Restoring iPhone to factory settings and then restoring apps from iCloud backup.
    After doing the above, I still get the same behavior:  after transferring 4-5 GB of music, it suddenly ceases to be visible to the Music app on my iPhone, and the "other" memory category is huge.  The only way I've found to reduce the "other" category back to a normal size is to restore my phone to factory settings, which is frustrating.
    I'd love to once more be able to move as much music as I want onto my phone without it all disappearing on me.  Any thoughts would be much appreciated.

    I'm going crazy here! I open my iPhone and all my music is gone! It's showing up as if it's there but when I go to play it the music is gone. I tried to reload everything and it will show up but then for some reason it starts to delete on it's own. Have all the recent updates.

  • IPhoto Memory Management Issue?!

    I've been having an issue with trying to import Photos with iPhoto 9.21 for some time now and finally decided to try to figure out what's going on. Config: Mac Pro 1.1, 5 gigs RAM, 250 Gig, 500 Gig x 2 (RAID 1) where iTunes and iPhoto reside, 160 Gig for Time Machine, OSX Lion.
    I believe this issue is due to a lack of memory management. Our iPhoto library is approximately 40 gigabytes and will crash when trying to import even small quantities of images/video. I've run disk permissions, deleted plists, etc. I have noticed that iphoto will use all of the available RAM on the computer when it's running.
    I figured I'd try rebuilding the library using iPhoto Library Manager and while that was running, I was watching memory usage while the rebuild process was going and over time more memory was getting used. The rebuilt library hit around 27.5 gigs when I ran out of free memory and iPhoto quit.
    The next step was to create a new library and try importing photos and videos again. Started with a mix of files from my iphone 4S and then RAW and jpeg files from a Canon (18 megapixel) and they all imported without issue. The same files would crash iphoto in the original library.
    Adding another 4 gigs of RAM to the computer to see if that rectifies the problem assuming it doesn't get sucked dry on a 40 gig library! I'll update the post after I get the RAM installed and can try importing into the main library.
    John

    Finished rebuilding the library per Fix #1. Tried to import 48 RAW files and it crashed while in process. Again, the RAM Free RAM was gone! Here's the crash report:
    Process:         iPhoto [706]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2.1 (9.2.1)
    Build Info:      iPhotoProject-628000000000000~1
    App Item ID:     408981381
    App External ID: 4641130
    Code Type:       X86 (Native)
    Parent Process:  launchd [152]
    Date/Time:       2012-01-28 15:52:26.203 -0800
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          182337 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  21333 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      F900FBFC-BDD3-4299-ADFF-5CC409100C51
    Crashed Thread:  44  Import thread 1
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000001568b2
    VM Regions Near 0x1568b2:
        shared memory          0000000000002000-0000000000003000 [    4K] rw-/rw- SM=SHM 
    -->
        MALLOC_SMALL           0000000004458000-0000000004800000 [ 3744K] rw-/rwx SM=PRV 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9abbf0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9abc8214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9abc78ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9abc7798 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x9b863a7f RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x9b86ad9b ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x9b86ac0a BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x901bc040 _DPSNextEvent + 678
    10  com.apple.AppKit                        0x901bb8ab -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.AppKit                        0x901b7c22 -[NSApplication run] + 911
    12  com.apple.AppKit                        0x9044c18a NSApplicationMain + 1054
    13  ???                                     0x0001159a 0 + 71066
    14  ???                                     0x00010a29 0 + 68137
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9b7d2b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x938e6b11 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x938e56a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9abbf0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9abc8214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9abc78ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9abc7798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9c674607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   ???                                     0x0175aaed 0 + 24488685
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9abbf0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9abc8214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9abc78ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9abc7798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9c674607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   ???                                     0x0175aaed 0 + 24488685
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9abbf0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9abc8214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9abc78ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9abc7798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9c674607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   ???                                     0x0175aaed 0 + 24488685
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   ???                                     0x0184bf41 0 + 25476929
    3   ???                                     0x0184bdc9 0 + 25476553
    4   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   ???                                     0x0184bf41 0 + 25476929
    3   ???                                     0x0184bdc9 0 + 25476553
    4   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01d35ac1 0 + 30628545
    7   com.apple.CoreFoundation                0x9ac2f53a -[NSObject performSelector:] + 58
    8   ???                                     0x01763626 0 + 24524326
    9   com.apple.CoreFoundation                0x9ac27091 -[NSObject performSelector:withObject:] + 65
    10  ???                                     0x0175acb5 0 + 24489141
    11  ???                                     0x0175a406 0 + 24486918
    12  ???                                     0x01759f55 0 + 24485717
    13  ???                                     0x017586c6 0 + 24479430
    14  com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    15  com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    16  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x944385a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x94438319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9443812a TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x91abade6 0x914ce000 + 6213094
    7   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9bc2c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x9c6c9d40 -[NSCondition wait] + 304
    4   ???                                     0x0005c66a 0 + 378474
    5   ???                                     0x0005c5c2 0 + 378306
    6   com.apple.CoreFoundation                0x9ac29e1d __invoking___ + 29
    7   com.apple.CoreFoundation                0x9ac29d59 -[NSInvocation invoke] + 137
    8   ???                                     0x01d57e61 0 + 30768737
    9   ???                                     0x01d696c4 0 + 30840516
    10  com.apple.CoreFoundation                0x9ac27091 -[NSObject performSelector:withObject:] + 65
    11  ???                                     0x01763626 0 + 24524326
    12  com.apple.CoreFoundation                0x9ac27091 -[NSObject performSelector:withObject:] + 65
    13  ???                                     0x0175acb5 0 + 24489141
    14  ???                                     0x0175a406 0 + 24486918
    15  ???                                     0x01759f55 0 + 24485717
    16  ???                                     0x017586c6 0 + 24479430
    17  com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    18  com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    19  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    20  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9c6fa507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9c6c092a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9c6c07fe -[NSConditionLock lockWhenCondition:] + 69
    6   ???                                     0x01759702 0 + 24483586
    7   ???                                     0x017586b0 0 + 24479408
    8   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 30:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9abbf0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9abc8214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9abc78ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9abc7798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9c6d421c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    8   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 31:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x9b7d2b42 __select + 10
    1   com.apple.CoreFoundation                0x9ac16195 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 32:
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   ???                                     0x0184bf41 0 + 25476929
    3   ???                                     0x0184bdc9 0 + 25476553
    4   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 33:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9bc2c3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x92ce09dc ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    4   com.apple.JavaScriptCore                0x92ed4f03 JSC::Heap::blockFreeingThreadMain() + 323
    5   com.apple.JavaScriptCore                0x92ed4f3f JSC::Heap::blockFreeingThreadStartFunc(void*) + 15
    6   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 34:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc2382a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x91bdccc9 0x914ce000 + 7400649
    4   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 35:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc2382a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x91bdccc9 0x914ce000 + 7400649
    4   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 36:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc2382a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x91bdccc9 0x914ce000 + 7400649
    4   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 37:
    0   libsystem_kernel.dylib                  0x9b7d302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9bc79ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9bc7b6fe start_wqthread + 30
    Thread 38:
    0   libsystem_kernel.dylib                  0x9b7d2b0a __rename + 10
    1   libsystem_kernel.dylib                  0x9b7d1c53 rename + 25
    2   com.apple.CoreFoundation                0x9ac151bc -[CFXPreferencesPropertyListSourceSynchronizer writePlistToDisk] + 1052
    3   com.apple.CoreFoundation                0x9abd9ab3 -[CFXPreferencesPropertyListSourceSynchronizer synchronizeAlreadyFlocked] + 595
    4   com.apple.CoreFoundation                0x9abd981e -[CFXPreferencesPropertyListSourceSynchronizer synchronize] + 526
    5   com.apple.CoreFoundation                0x9ac1c88a __-[CFXPreferencesPropertyListSource synchronizeInBackgroundWithCompletionBlock:]_block_invoke_1 + 122
    6   libdispatch.dylib                       0x938e4e11 _dispatch_call_block_and_release + 15
    7   libdispatch.dylib                       0x938e6797 _dispatch_queue_drain + 224
    8   libdispatch.dylib                       0x938e663c _dispatch_queue_invoke + 47
    9   libdispatch.dylib                       0x938e5e44 _dispatch_worker_thread2 + 187
    10  libsystem_c.dylib                       0x9bc79b24 _pthread_wqthread + 346
    11  libsystem_c.dylib                       0x9bc7b6fe start_wqthread + 30
    Thread 39:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9bc7bf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x953f92e8 CVDisplayLink::waitUntil(unsigned long long) + 306
    4   com.apple.CoreVideo                     0x953f843a CVDisplayLink::runIOThread() + 706
    5   com.apple.CoreVideo                     0x953f8161 _ZL13startIOThreadPv + 160
    6   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 40:
    0   libsystem_kernel.dylib                  0x9b7d302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9bc79ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9bc7b6fe start_wqthread + 30
    Thread 41:
    0   libsystem_kernel.dylib                  0x9b7d302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9bc79ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9bc7b6fe start_wqthread + 30
    Thread 42:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x9b7d2bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9bc2c7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x9bc2c558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x90403be2 -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x9c6c7f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9c6c7f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 43:: Import thread 0
    0   libsystem_kernel.dylib                  0x9b7d0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b7d01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9abbf0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9abc8214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9abc78ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9abc7798 CFRunLoopRunInMode + 120
    6   com.apple.AE                            0x9367024f AESendMessage + 4116
    7   com.apple.ImageCapture                  0x93e8c462 ICAAESendMessage + 192
    8   com.apple.ImageCapture                  0x93e8c112 ICACommand::SendSync() + 62
    9   com.apple.ImageCapture                  0x93e8c00e ICACommand::ProcessCommand() + 74
    10  com.apple.ImageCapture                  0x93e8def3 ICADownloadFile + 819
    11  ???                                     0x0029a2fb 0 + 2728699
    12  ???                                     0x006831de 0 + 6828510
    13  ???                                     0x00150aeb 0 + 1379051
    14  ???                                     0x001508ef 0 + 1378543
    15  libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    16  libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 44 Crashed:: Import thread 1
    0   ???                                     0x001568b2 0 + 1403058
    1   libobjc.A.dylib                         0x9369754e _objc_rootRelease + 47
    2   ???                                     0x0067b2de 0 + 6795998
    3   ???                                     0x001512a0 0 + 1381024
    4   ???                                     0x001508ef 0 + 1378543
    5   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 45:: Import thread 2
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9bc2c42c pthread_cond_wait$UNIX2003 + 71
    3   ???                                     0x0068446c 0 + 6833260
    4   ???                                     0x00683178 0 + 6828408
    5   ???                                     0x00150aeb 0 + 1379051
    6   ???                                     0x001508ef 0 + 1378543
    7   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 46:: Import thread 3
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9bc2c42c pthread_cond_wait$UNIX2003 + 71
    3   ???                                     0x0068446c 0 + 6833260
    4   ???                                     0x00683178 0 + 6828408
    5   ???                                     0x00150aeb 0 + 1379051
    6   ???                                     0x001508ef 0 + 1378543
    7   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 47:: Import thread 4
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9bc2c42c pthread_cond_wait$UNIX2003 + 71
    3   ???                                     0x0068446c 0 + 6833260
    4   ???                                     0x00683178 0 + 6828408
    5   ???                                     0x00150aeb 0 + 1379051
    6   ???                                     0x001508ef 0 + 1378543
    7   libsystem_c.dylib                       0x9bc77ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9bc7b6de thread_start + 34
    Thread 48:: Import thread 5
    0   libsystem_kernel.dylib                  0x9b7d283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9bc7be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9bc2c42c pthread_cond_wait$UNIX2003 + 71
    3   ???                                     0x0068446c 0 + 6833260
    4   ???                                 

Maybe you are looking for