App crashing when going back to previous view

I've got my app. which has several views. in my 3rd view, i have a list of questions with yes/no answers the answers to which I'm saving to a plist. it was working all good. but then i added a first view with a table which has 4 options, clicking on either of these rows go to the same view but each of them change the value of the variable in my singleton class, which then decides which questions are added to the 3rd view. so this helps me to jus have one view but the variable controls the different questions. Now my problem is that if i change something in my 3rd view, for eg, i choose yes/no , then when i am going back to the main viw , my app crashes. I am not sure why this happens.How does it work anyway-the inherent back button on the navigation bar? im guessing it calls the viewdidload function for the first/second view when going back to them from the first view, i dont undrstand why it crashes, coz the viewdidloads of these views seem okay to me.
thanks

write the piece of code causing the crash or paste the output on the console to get to know what actually cause your application to be crashed.

Similar Messages

  • In IPhone Apps crash when press back buton . When press back back button Last class is appeared slightly slighly ash, with no error or warning .

    Hi,
    I am developing apps on for 4.1 and on Xcode3.2. My Apps crash when press back buton . When press back back button Last class is appeared slightly than crash, with no error or warning ....Here are the code....crash on Back Funtion
    #import "TransactionSummaryDetailViewController.h"
    #import "TransactionSummaryData.h"
    #import "Constant.h"
    #import "DataBase.h";
    #import "Common.h"
    #import "YPCardHolderServiceService.h"
    #import "SelectionScreenViewController.h"
    @implementation TransactionSummaryDetailViewController
    @synthesize table,cardReference;
    @synthesize waitIndicator,transactionsummary,keyArray,valueArray,isSummaryAvailable;
    @synthesize startDate,endDate;
    // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
        if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
            // Custom initialization
        return self;
    -(void)getrowcount{
        if(transactionsummary.cardholdernmae !=nil){
            [keyArray addObject:@"Card Holder Name: "];
            [valueArray addObject:transactionsummary.cardholdernmae];
        if(transactionsummary.cardnumber!=nil){
            [keyArray addObject:@"Card Number: "];
            [valueArray addObject:transactionsummary.cardnumber];
        if(transactionsummary.debittransactioncount != nil){
            [keyArray addObject:@"Debit Tx. Count: "];
            [valueArray addObject:transactionsummary.debittransactioncount];
        if(transactionsummary.debittransactionvalue!=nil){
            [keyArray addObject:@"Debit Tx. Value"];
            [valueArray addObject:transactionsummary.debittransactionvalue];
        if(transactionsummary.credittransactioncount!=nil){
            [keyArray addObject:@"Credit Tx. Count: "];
            [valueArray addObject:transactionsummary.credittransactioncount];
        if(transactionsummary.credittransactionvalue!=nil){
            [keyArray addObject:@"Credit Tx. Value: "];
            [valueArray addObject:transactionsummary.credittransactionvalue];
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad {
        appDelegate = [[UIApplication sharedApplication]delegate];
        keyArray = [[NSMutableArray alloc]init];
        valueArray = [[NSMutableArray alloc]init];
        [self getrowcount];
        NSLog(@"Key Array Count is %d",[keyArray count]);
        [table setBackgroundColor:[UIColor clearColor]];
        [table setSeparatorColor:TableViewCellSeperatorColor];
        [waitIndicator setHidden:YES];
        [self setTitle:@"Summary Details"];
        UIButton *button =  [UIButton buttonWithType:UIButtonTypeCustom];
        [button setImage:[UIImage imageNamed:@"list.png"] forState:UIControlStateNormal];
        [button addTarget:self action:@selector(BacktoView) forControlEvents:UIControlEventTouchUpInside];
        [button setFrame:CGRectMake(0, 0, 76, 44)];
        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
        if(!isSummaryAvailable)
            if([Common isNetworkAvailable])
                [waitIndicator startAnimating];
                YPCardHolderServiceService *services = [[YPCardHolderServiceService alloc] init];
                YPTransactionsSummaryRequest *summaryRequest = [[YPTransactionsSummaryRequest alloc] init];
                summaryRequest.SC = appDelegate.SC;
                summaryRequest.userName = appDelegate.userName;
                summaryRequest.valid =TRUE;
                summaryRequest.cardReference =[NSString stringWithFormat:@"%@",cardReference];
                NSLog(@"Start Date Is %@ and End Date is %@",startDate,endDate);
                summaryRequest.startDate = startDate;
                summaryRequest.endDate = endDate;
                summaryRequest.applicationType = @"M";
                [services getTransactionsSummary:self action:@selector(getTransactionsSummaryHandlers:) transactionsSummaryRequest:summaryRequest];
                [summaryRequest release];
                [services release];
        [super viewDidLoad];
    //Handle the Response of getTransactionsSummary
    -(void)getTransactionsSummaryHandlers:(id) value
        [waitIndicator stopAnimating];
        // Handle errors
        if([value isKindOfClass:[NSError class]]) {
            NSLog(@"%@", value);
            return;
        // Handle faults
        if([value isKindOfClass:[SoapFault class]]) {
            NSLog(@"%@", value);
            return;
        // Do something with the YPLoginResponse* result
        YPTransactionsSummaryResponse* result = (YPTransactionsSummaryResponse*)value;
        if(result.statusCode == 0)
            NSLog(@"Number of Transaction is =%d",[result.transactionSummaryList count]);
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            NSString *deleteQuery = @"delete from TransactionSummary where userid = ";
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            deleteQuery = [deleteQuery stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"delete query= '%@'",deleteQuery);
            [DataBase deleteDataFromTable:deleteQuery];
            NSLog(@"delete query= '%@'",deleteQuery);
            //for (int i =0; i< [result.transactionSummaryList count]; i++)
            for (int i =0; i< [result.transactionSummaryList count] -2; i++)
                NSLog(@"for loop= %d",i);
                YPTransactionSummaryDetails *transactionSummary = (YPTransactionSummaryDetails*)[result.transactionSummaryList objectAtIndex:i];
                NSLog(@"cardholdername= '%@'",transactionSummary.cardholderName);
                /*NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','xxxx xxxx xxxx %@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,
                                                                   appDelegate.userID]];*/
                //Add by sarvesh
                NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,cardreference,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','%@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,cardReference,
                                                                   appDelegate.userID]];
                NSLog(@"Insert Query for Transaction Summary is %@",insertQuery);
                [DataBase InsertIntoTable:insertQuery];
            //Read Update Data From DataBase and Refresh Table
                NSString *query = @"Select * from TransactionSummary where userid = ";
                query = [query stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"select query= %@",query);
                NSMutableArray *temp=[DataBase getTransactionSummaryTableData:query];
                if([temp count] > 0)
                    transactionsummary = (TransactionSummaryData*)[temp objectAtIndex:0];
                    [keyArray removeAllObjects];
                    [valueArray removeAllObjects];
                [self getrowcount];
                [table reloadData];
    -(void)viewDidAppear:(BOOL)animated
        CGFloat navBarHeight = 50.0f;   
        CGRect frame = CGRectMake(0.0f, 20.0f, 320.0f, navBarHeight);
        [self.navigationController.navigationBar setFrame:frame];
        [super viewDidAppear:animated];
    -(IBAction)BacktoView
        NSLog(@"in back function..TrasactionSummaryDetail");
        SelectionScreenViewController *screenView=[[SelectionScreenViewController alloc] initWithNibName:@"SelectionScreenViewController" bundle:nil];
        [self.navigationController popViewControllerAnimated:YES];
        [screenView release];
    - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
        return UITableViewCellEditingStyleNone;
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
        return 1;
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
        return cellHeightForGroupedTable;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
        if(section == 0)
            return [keyArray count];
        else       
            return 0;
    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
        NSString *title = nil;
        switch (section){
            case 0:{
                //title = @"Summary Details";
                break;
        return title;
    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
        if ([self tableView:tableView titleForHeaderInSection:section] != nil) {
            return tableHeaderHeight;
        else {
            // If no section header title, no section header needed
            return 0;
    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
        NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
        if (sectionTitle == nil) {
            return nil;
        // Create label with section title
        UILabel *label = [[[UILabel alloc] init] autorelease];
        label.frame = CGRectMake(20, 6, 300, 30);
        label.backgroundColor = [UIColor clearColor];
        label.textColor = HeaderTextColor;
        label.shadowColor = HeaderTextShadowColor;
        label.shadowOffset = CGSizeMake(0.0, 1.0);
        label.font = HeaderTextFontSize;
        label.text = sectionTitle;
        // Create header view and add label as a subview
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320,60)];
        [view autorelease];
        [view addSubview:label];
        return view;
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
        UITableViewCell *cell = nil;
        NSString *cellIdentifier;
        cellIdentifier = @"SectionsTableIdentifier";
        int row = [indexPath row];
        CGRect nameLabelRect = CGRectMake(19 , 8, 240, 29);
        CGRect cardlabelRect = CGRectMake(19,31,240,15);
        UILabel *nameLabel = [[UILabel alloc] initWithFrame:nameLabelRect];
        UILabel *cardnumber = [[UILabel alloc] initWithFrame:cardlabelRect];
        cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
        if(cell == nil){
            cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
        // Remove all subview from cell content view
        for (UIView *view in cell.contentView.subviews){
            [view removeFromSuperview];
         [cell setAccessoryType:UITableViewCellAccessoryNone];
        [nameLabel setTextColor:firstLabelFontColor];
        [nameLabel setFont:firstLabelFont];
        [nameLabel setFont:firstLabelFontSize];
         nameLabel.textAlignment = UITextAlignmentLeft;
         nameLabel.text = [NSString stringWithFormat:@"%@ : %@",[keyArray objectAtIndex:row],[valueArray objectAtIndex:row]];
         [cell.contentView addSubview: nameLabel];
         cell.selectionStyle = UITableViewCellSelectionStyleNone;
        [cell setBackgroundColor:[UIColor clearColor]];
        [cell setBackgroundColor:TableViewCellColor];
        [nameLabel setBackgroundColor:[UIColor clearColor]];
        [cardnumber setBackgroundColor:[UIColor clearColor]];
        [cardnumber release];
        [nameLabel release];
        return cell;
    // Override to allow orientations other than the default portrait orientation.
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO rientation {
        // Return YES for supported orientations
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    - (void)didReceiveMemoryWarning {
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];
        // Release any cached data, images, etc that aren't in use.
    - (void)viewDidUnload {
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (void)dealloc {
        [table release];
        [waitIndicator release];
        [keyArray release];
        [valueArray release];
        [transactionsummary release];
        [super dealloc];
    @end

    This is the user-to-user tech support site.  For carrier issues go to the Dev forums.
    You might want to note that the current iOS is 4.3.3, and the current SDK is 4.3 and XCode 4.0.2

  • Workflow status web part gives error when going back to previous stage (using GO TO) in Project Server 2013 workflow

    Hi,
    Workflow status web part gives error when going back to previous stage (using GO TO) transition activity  in Project Server 2013 workflow.
    Please guide how to create a workflow which restarts from a desired stage.

    Thanks for your prompt reply....
    It gives following error
    Workflow Status
    This Web Part was unable to load.
    Information that may be useful in solving this problem was written to the Unified Logging Service (ULS) log on the Project Web App with the following ID: e95a9c9c-1f68-90d7-0a3e-5951df70fec6
    For more information, contact your Project Web App administrator.
    what do you mean to restart the Project Server 2013 with different project name, please elaborate....

  • IOS5 Music App crashing when going to podcasts

    My music app keeps crashing whenever I select the "podcast" tab in the music app.
    Here have been the steps I've taken so far:
    1.  Connect to iTunes, remove podcasts from phone
    2.  Upon doing this, the music app crashes instantly upon opening
    3.  If I select "reset all settings" on the phone, the music app will start back up - but continue to crash when navigating to podcast tab
    Notes
    +  If I select my computer library (home sharing) within the music app, the podcasts show up and play fine (pulling from my computer)
    +  The "Muisc +" app accesses all my music and plays fine (but I can't get to podcasts from within that app)
    +  I can use voice commands to play a music - and skip forward/back from the lock screen
    Hardware:
    iPhone 4, ATT, 32GB
    iOS 5.0.1
    Any help/suggestions?

    I'm still having this issue - wanted to add some additional details:
    +if i search on my iPhone (swipe all the way to the left home screen), several podcasts show up; even after syncing and telling iTunes to sync 1 most recent podcast or none at all
    +I can play these podcasts from the "search" menu, but when I hit back, it brings me to the default music app tab, and if i tab to the podcast tab (even with the podcast playing), the app will crash
    +in iTunes, when I set my podcasts to only keep the most recent one, then sync my phone - it will pull these random podcasts back into iTunes
    +The date on these podcasts is 12/31/00 (even though they are from 2011)
    It seems like the "12/31/00" labeled podcasts are impossible to delete and causing my music app to crash.

  • Calendar app crashes when going to march 2013

    Does anyone else experience the same problem? I can recreate it on at least two iPads (the original iPad1 [iOS 5.1.1] and the latest Retina iPad [iOS 6.0.1])
    While browsing the calendar in month view and going from febraury 2013 or april 2013 to march 2013, crashes the calendar app.
    I can browse march 2013 fine while in day view, week view or list view, but not in month view.
    No problems on the iPhone, just on the iPad.

    An obsertation:  I have what appears to be an all-day event on April 1, that is a note that it is April Fools Day.  However, this note is part of a holidays calendar that I subscribe to on my iPad.  The holiday entries are an actual subscription, not individual entries on the calendar.
    I have not had any Calendar crashes with this April 1 entry at all.  As Skydiver said, it might be a DST problem, but it seemed strange that some folks are having crash problems with all day entries on 4/1 and some are not.  Maybe this subscription entry doesn't count as an all day entry??  Dunno.

  • Crashing when going back to the beginning of a big...

    Hi, I cannot get back to the start of a chat.  Yes, I have the data, I know I do, I have done this before on same chat on same pc.  Now it causes a crash, at about the same date each time.
    I was thinking perhaps the db had corrupted... but I also have the complete chat conversation on laptop, and similar happened there.
    Is there a workaround? 

    Thank you... running it now.
    But will I be able to find one conversation from amongst all the bits. If its just in chronological order then I wont be able to piece it together..  The one I need is big, but there are quite of lot of other conersations with other contacts and groups along the way.

  • HT202159 When downloading os x lion, i got an error message, when going back into purchased items in app store to resume, i found i had no resume button. what can i do?

    .

    When downloading os x lion, i got an error message, when going back into purchased items in app store to resume, i found i had no resume button. what can i do?

  • When using google and you do a new search it goes back to previous search only happens with fireox

    when using google and you do a new search it goes back to previous search only happens with fireox

    Try to connect to iTunes during the setup.

  • App crashes when jumping from article with video to other article with video

    I read a thread about this issue earlier today that dates back to January in which an Adobe employee said that this issue has been fixed, but unfortunately I've been experiencing it right now. I have multiple articles that include videos and another article with many large photos. When I try navigating from one article to the other the Content Viewer crashes and goes back to the home screen. According to the thread this is known as memory issue and I followed the suggestions to reinstall the Viewer and restart the iPad but it didn't help. Right now the only way to use the app is to navigate to the Cover and continue from there which is defeating the point of having a navigation all throughout the app. I can't just take out the videos or the photos to reduce the file size. Any advice? Thanks!

    Hello
    Sometimes the Adobe Viewer, or a custom Viewer, appears to crash. However, the iOS is in fact shutting it down because of a low memory state. You can confirm whether you have this issue by syncing an affected iPad to a Mac. Then retrieve the logs to see if there are LowMemory-[time stamp].log files. Here is where such log files, as well as crash log files, is found:
    Users/[user name]/Library/Logs/CrashReporter/MobileDevice/[device name]
    Look for a LowMemory log file with a time stamp that corresponds to the application's exit. Open it in a text editor and look for a line like the following:
    viewer <42d0b24207f7d625b2fefef7549afce3>   33490 (jettisoned) (active)
    The numbers can vary. However, if the line indicates that the "viewer" process was "jettisoned" while "active," the OS closed the process because of a low memory state. The most likely reason for this is that your viewer is reading into memory images that are larger than 1024 x 1024. Apple recommends against applications loading any image larger than this size as it contributes to a low memory state on the device. It can result in what appear to be application crashes. Review your folio source files and ensure that no images of greater size are used. If they are, simply resample them, and republish your content.
    The low memory state can also be the result of having too many applications running at once. Shut down applications you are not actively using to free up more memory.
    How to free up memory on your iPad
    1. From the home screen, double-click the Home button to display recently used applications.
    2. Tap and hold one of the applications until a red minus appears above it.
    3. Tap the red minus for all apps that are not currently needed.
    4. Tap anywhere above the list of recently used apps, to return to the home screen.
    Laxman

  • Mail.app crashes when trying to sync with .mac

    Mail.app crashes when I try to sync my mail accounts with .mac. It currently works fine on my older PowerPC PowerBook G4, but on my new MacBook Pro it crashes every time.
    Any others experience this?
    Thanks in advance for any help.
    Here's the report:
    Date/Time: 2007-05-21 00:05:56.380 -0700
    OS Version: 10.4.9 (Build 8P2137)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [98]
    Version: 2.1.1 (752.3)
    Build Version: 8
    Project Name: MailViewer
    Source Version: 7520300
    PID: 437
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000000c
    Thread 0 Crashed:
    0 com.apple.Foundation 0x927f7758 +[NSInvocation newInvocationWithMethodSignature:] + 28
    1 com.apple.Foundation 0x927f736a -[NSObject(NSForwardInvocation) forward::] + 215
    2 libobjc.A.dylib 0x90a5ccc1 objcmsgForward + 49
    3 com.apple.MessageFramework 0x9a1d7778 +[MailAccount _addAccountToSortedPaths:] + 83
    4 com.apple.MessageFramework 0x9a1d7716 _setupSortedPathsForAccounts + 119
    5 com.apple.MessageFramework 0x9a1d6fdb +[MailAccount setMailAccounts:] + 1158
    6 com.apple.MessageFramework 0x9a2a4887 -[Account updateAccountsFromPlist:acceptedChanges:] + 2583
    7 com.apple.MessageFramework 0x9a2a3e44 -[Account dataWasSyncedVersion:newData:acceptedChanges:] + 176
    8 libobjc.A.dylib 0x90a5cd76 objc_msgSendv + 54
    9 com.apple.Foundation 0x927f83e4 -[NSInvocation invoke] + 982
    10 com.apple.MessageFramework 0x9a1fad7c _invokeInvocationRequest + 85
    11 com.apple.MessageFramework 0x9a1fa995 -[MainThread handlePortMessage:] + 154
    12 com.apple.Foundation 0x928429c0 __NSFireMachPort + 307
    13 com.apple.CoreFoundation 0x9083e385 __CFMachPortPerform + 136
    14 com.apple.CoreFoundation 0x9082e62d CFRunLoopRunSpecific + 2904
    15 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    16 com.apple.HIToolbox 0x92de98d8 RunCurrentEventLoopInMode + 285
    17 com.apple.HIToolbox 0x92de8fe2 ReceiveNextEventCommon + 385
    18 com.apple.HIToolbox 0x92de8e39 BlockUntilNextEventMatchingListInMode + 81
    19 com.apple.AppKit 0x9328f465 _DPSNextEvent + 572
    20 com.apple.AppKit 0x9328f056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    21 com.apple.AppKit 0x93288ddb -[NSApplication run] + 512
    22 com.apple.AppKit 0x9327cd2f NSApplicationMain + 573
    23 com.apple.mail 0x00094df2 0x1000 + 605682
    24 com.apple.mail 0x00094d19 0x1000 + 605465
    Thread 1:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x9288fd30 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x9288fc7a -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.MessageFramework 0x9a1ed821 -[InvocationQueue _drainQueue] + 210
    4 com.apple.Foundation 0x927f12e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x9288fd30 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x9288fc7a -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.MessageFramework 0x9a1ed821 -[InvocationQueue _drainQueue] + 210
    4 com.apple.Foundation 0x927f12e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x9288fd30 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x9288fc7a -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.MessageFramework 0x9a1ed821 -[InvocationQueue _drainQueue] + 210
    4 com.apple.Foundation 0x927f12e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 ...apple.AddressBook.framework 0x9478ebaa -[ABRemoteImageLoader workLoop] + 158
    2 com.apple.Foundation 0x927f12e0 forkThreadForFunction + 123
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92826d3a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x92826c36 -[NSRunLoop run] + 75
    5 com.apple.MessageFramework 0x9a1f25af +[_NSSocket _runIOThread] + 97
    6 com.apple.Foundation 0x927f12e0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x9001a0ec select + 12
    1 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x928a504d -[NSRunLoop acceptInputForMode:beforeDate:] + 164
    4 com.apple.MessageFramework 0x9a1f365b -[MainThread performOneway:result:withTarget:selector:] + 765
    5 com.apple.Mail.Syncer 0x1619cc1e 0x16192000 + 44062
    6 com.apple.Mail.Syncer 0x1619c60a 0x16192000 + 42506
    7 com.apple.Mail.Syncer 0x1619bc4f 0x16192000 + 40015
    8 libobjc.A.dylib 0x90a5cd76 objc_msgSendv + 54
    9 com.apple.Foundation 0x927f83b2 -[NSInvocation invoke] + 932
    10 com.apple.MessageFramework 0x9a1e3910 -[MonitoredInvocation invoke] + 128
    11 com.apple.Mail.Syncer 0x1619d1c1 0x16192000 + 45505
    12 com.apple.Foundation 0x927f12e0 forkThreadForFunction + 123
    13 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x927f773c ebx: 0x927f774a ecx: 0x90ab97d4 edx: 0x00000001
    edi: 0x00000000 esi: 0xa27eef60 ebp: 0xbfffeb78 esp: 0xbfffeb50
    ss: 0x0000001f efl: 0x00010286 eip: 0x927f7758 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x1b2fff com.apple.mail 2.1.1 (752.3) /Applications/Mail.app/Contents/MacOS/Mail
    0x1759000 - 0x1776fff com.automagicsoftware.httpmailplugin 1.0 (1.47 Tiger) (1.1) /Users/juney/Library/Mail/Bundles/httpmail.mailbundle/Contents/MacOS/httpmail
    0x16192000 - 0x161a7fff com.apple.Mail.Syncer 1.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    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
    0x91008000 - 0x91046fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91074000 - 0x910f3fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112d000 - 0x9114bfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91157000 - 0x91165fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91168000 - 0x91307fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91405000 - 0x9140dfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91414000 - 0x9143afff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9144c000 - 0x91453fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91457000 - 0x914cdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151e000 - 0x9151efff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91520000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170f000 - 0x917b8fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91885fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91890000 - 0x918cdfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e1000 - 0x918edfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f4000 - 0x91933fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91946000 - 0x919f8fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3e000 - 0x91a54fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a59000 - 0x91a77fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7c000 - 0x91adbfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aed000 - 0x91af1fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af3000 - 0x91b77fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7b000 - 0x91bb8fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bbe000 - 0x91bd8fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bdd000 - 0x91bdffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be1000 - 0x91cbffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdc000 - 0x91cdcfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cde000 - 0x91d6cfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d73000 - 0x91d73fff 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
    0x91d75000 - 0x91dcefff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dd7000 - 0x91dfbfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e03000 - 0x9220cfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92246000 - 0x925fafff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92627000 - 0x92714fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92716000 - 0x92793fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d4000 - 0x92a04fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b1e000 - 0x92b35fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b40000 - 0x92b98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bac000 - 0x92bacfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bae000 - 0x92bbefff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bcd000 - 0x92bd5fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bdb000 - 0x92be1fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92be7000 - 0x92c78fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8c000 - 0x92c90fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c93000 - 0x92cb1fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc3000 - 0x92cc9fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ccf000 - 0x92d32fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d59000 - 0x92d9afff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc1000 - 0x92dcffff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd6000 - 0x92ddbfff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de0000 - 0x930d5fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931db000 - 0x931e6fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931eb000 - 0x93206fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93276000 - 0x93276fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93278000 - 0x9392efff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93caf000 - 0x93d2afff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d63000 - 0x93e1dfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e60000 - 0x93e60fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e62000 - 0x94023fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94069000 - 0x940aafff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x940b2000 - 0x940ecfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940f1000 - 0x94102fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94146000 - 0x9418efff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9421a000 - 0x9422bfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94239000 - 0x94277fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94293000 - 0x942a2fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x942a9000 - 0x942b4fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94300000 - 0x9431afff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94743000 - 0x94889fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94915000 - 0x94924fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9492b000 - 0x94954fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9495a000 - 0x94969fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9496d000 - 0x94992fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9499e000 - 0x949bbfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9516c000 - 0x951fefff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95258000 - 0x952dafff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95313000 - 0x955f2fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95771000 - 0x95794fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9579b000 - 0x95823fff com.apple.syncservices 2.5 (194) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x95add000 - 0x95adffff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x95ae2000 - 0x95b1afff com.apple.PDFKit 1.0.3 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96a4c000 - 0x96a4cfff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f33000 - 0x96f55fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x978fe000 - 0x9790bfff com.apple.DMNotification 1.0.4 (37) /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x97a9d000 - 0x97b74fff com.apple.QuartzComposer 1.2.4 (32.22) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97bfd000 - 0x97bfdfff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97db8000 - 0x97dd2fff com.apple.slideshow 1.0.4 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    0x982b2000 - 0x982f6fff com.apple.ISSupport 1.1.2 (16) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9831b000 - 0x98344fff com.apple.DotMacSyncManager 1.0.4 (155) /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x989f4000 - 0x98a39fff com.apple.PAPICommon 2.5 (131) /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x9a1bc000 - 0x9a1c7fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a1d1000 - 0x9a33dfff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Model: MacBookPro2,2, BootROM MBP22.00A5.B01, 2 processors, Intel Core 2 Duo, 2.33 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, 0x87), 1.0.47
    Bluetooth: Version 1.7.14f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHW2120BH, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA

    There appears to be a problem with either the file where the account settings are stored or with the account settings themselves. The HTTPMail plug-in you have installed could have a bearing on this. Have you set up the same mail accounts on both computers? Is the right version of the plug-in installed on each of them?
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all the filesystem issues, if any, and making sure that there’s enough space available on the startup disk (a few GB, plus the space needed to make a backup copy of the Mail folder), try this:
    1. If you have a .Mac account and .Mac synchronization of Mail data is enabled either in Mail > Preferences > General or in System Preferences > .Mac, disable it before proceeding.
    2. Quit Mail if it’s running.
    3. Make a backup copy of the ~/Library/Mail folder, just in case something goes wrong while trying to solve the problem. You can do this in the Finder by dragging the folder to the Desktop while holding the Option (Alt) key down, for example. This is where all your mail is locally stored.
    4. In the Finder, go to ~/Library/Preferences/. Locate com.apple.mail.plist and move it to the Desktop (to be deleted if this solves the problem).
    5. Open Mail. You’ll have to set up your non-.Mac accounts from scratch all over again. If given the option to import existing mailboxes or something like that, don’t. Just enter the account information and Mail will automagically rediscover the data in ~/Library/Mail/ when done.
    6. You’ll have to re-configure most of your settings in Mail > Preferences. For spam-related security reasons, the first thing you should do is go to Preferences > Viewing and disable Display remote images in HTML messages if it’s enabled.
    7. You may also need to re-install or re-enable any Mail plug-ins you have installed for Mail to recognize them.
    8. As a side effect of re-creating com.apple.mail.plist, Mail might rename Outbox (which is where messages waiting to be sent are stored) to Delivered. The name of that mailbox is actually a misnomer, as it would contain messages (if any) that couldn’t be delivered for some reason. You can delete that mailbox if you wish.
    9. If the problem is fixed now and .Mac synchronization of Mail data was enabled at the beginning, enable it again, go to System Preferences > .Mac > Advanced, click Reset Sync Data, and choose the appropriate options to reset the Mail data stored on the .Mac server with the data locally stored on the computer, i.e. sync data must flow from the computer to the .Mac server.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. You can easily locate any of the folders referred to in this post by copying the folder path here, doing Go > Go to Folder in the Finder, and pasting the folder path there.

  • Since installing Maverick, all Adobe CC apps crash when I am trying to save or import.

    Since installing Maverick, all Adobe CC apps crash when I am trying to save or import.  I might be able to save the file if I do not try to select anything other folder than the current folder that opens (last opened).  I do not use the cover view option (I see some have had problems with that), but almost always have it in list view.
    Is there some setting I need to set or is there a fix for this somewhere?
    Also, is it just me or does it seem like Mac crashes more now with Maverick than before?

    Here is a portion log from Photoshop CC from Step 1
    Date/Time:       2013-11-22 19:22:56 -0500
    OS Version:      10.9 (Build 13A603)
    Architecture:    x86_64
    Report Version:  18
    Command:         Photoshop
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Version:         14.1.2 (14.1.2.427)
    Parent:          launchd [205]
    PID:             437
    Event:           hang
    Duration:        1.16s (process was unresponsive for 9 seconds before sampling)
    Steps:           12 (100ms sampling interval)
    Hardware model:  iMac9,1
    Active cpus:     2
    Fan speed:       798 rpm
    Free pages:      338236 pages (+1861)
    Pageins:         16 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         Adobe Photoshop CC [437]
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Architecture:    x86_64
    Parent:          launchd [205]
    UID:             501
    Task size:       55405 pages
    CPU Time:        1.087s
    Note:            Unresponsive for 9 seconds before sampling
      Thread 0x3216     DispatchQueue 1          priority    0-35   cpu time   1.086s
      12 ??? (Adobe Photoshop CC + 10804) [0x100002a34]
        12 ??? (Adobe Photoshop CC + 2967993) [0x1002d49b9]
          12 ??? (Adobe Photoshop CC + 2967772) [0x1002d48dc]
            12 ??? (Adobe Photoshop CC + 556898) [0x100087f62]
              12 ??? (Adobe Photoshop CC + 23843020) [0x1016bd0cc]
                12 ??? (Adobe Photoshop CC + 23838178) [0x1016bbde2]
                  12 -[NSApplication run] + 646 (AppKit) [0x7fff86dfea29]
                    12 ??? (Adobe Photoshop CC + 23836328) [0x1016bb6a8]
                      12 ??? (Adobe Photoshop CC + 23833549) [0x1016babcd]
                        12 -[NSApplication sendEvent:] + 2021 (AppKit) [0x7fff86fae744]
                          12 ??? (AdobeOwl + 223946) [0x1043f6aca]
                            12 -[NSWindow sendEvent:] + 3721 (AppKit) [0x7fff8700df71]
                              12 ??? (Adobe Photoshop CC + 24599380) [0x101775b54]
                                12 ??? (Adobe Photoshop CC + 24595429) [0x101774be5]
                                  12 ??? (Adobe Photoshop CC + 547869) [0x100085c1d]
                                    12 ??? (Adobe Photoshop CC + 541782) [0x100084456]
                                      12 ??? (Adobe Photoshop CC + 9041949)
    I also see this message:
    *** Assertion failure in -[PSCocoaMenu itemAtIndex:], /SourceCache/AppKit/AppKit-1265/Menus.subproj.NSMenu.m:865
    Also, here is a .hang report that I found
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Process:         Adobe Photoshop CC [939]
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
      11 ??? (Adobe Photoshop CC + 10804) [0x100002a34]
        11 ??? (Adobe Photoshop CC + 2967993) [0x1002d49b9]
          11 ??? (Adobe Photoshop CC + 2967772) [0x1002d48dc]
            11 ??? (Adobe Photoshop CC + 556898) [0x100087f62]
              11 ??? (Adobe Photoshop CC + 23843020) [0x1016bd0cc]
                11 ??? (Adobe Photoshop CC + 23838178) [0x1016bbde2]
                                          11 ??? (Adobe Photoshop CC + 23838420) [0x1016bbed4]
                                            11 ??? (Adobe Photoshop CC + 554787) [0x100087723]
                                              11 ??? (Adobe Photoshop CC + 555164) [0x10008789c]
                                                11 ??? (Adobe Photoshop CC + 582218) [0x10008e24a]
                                                  11 ??? (Adobe Photoshop CC + 551140) [0x1000868e4]
                                                    11 ??? (Adobe Photoshop CC + 1096492) [0x10010bb2c]
                                                      11 ??? (Adobe Photoshop CC + 1066245) [0x100104505]
                                                        11 ??? (Adobe Photoshop CC + 1106928) [0x10010e3f0]
                                                          11 ??? (Adobe Photoshop CC + 9028189) [0x10089c25d]
                                                            11 ??? (Adobe Photoshop CC + 543403) [0x100084aab]
                                                              11 ??? (Adobe Photoshop CC + 9047434) [0x1008a0d8a]
                                                                11 ??? (Adobe Photoshop CC + 539561) [0x100083ba9]
                                                                  11 ??? (Adobe Photoshop CC + 23909304) [0x1016cd3b8]
            11 ??? (Adobe Photoshop CC + 24013556) [0x1016e6af4]
              11 ??? (Adobe Photoshop CC + 26858074) [0x10199d25a]
                11 ??? (Adobe Photoshop CC + 26851948) [0x10199ba6c]
                  11 ??? (Adobe Photoshop CC + 26855800) [0x10199c978]
                    11 ??? (Adobe Photoshop CC + 2771725) [0x1002a4b0d]
            11 ??? (Adobe Photoshop CC + 24013556) [0x1016e6af4]
              11 ??? (Adobe Photoshop CC + 2351757) [0x10023e28d]
             0x100000000 -        0x103bb5f07  com.adobe.Photoshop 14.1.2 (14.1.2.427) <CC99E953-1231-383F-BC67-BCE95BA4E2A7> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
             0x106bf3000 -        0x107282fef  com.adobe.PlugPlugOwl 4.0.1.34 (4.0.1.34) <762B5A6D-E532-3EDD-9E8C-6A52F77BF985> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
             0x10ff7d000 -        0x10ffffff7  MultiProcessor Support <551607FA-AC71-39ED-871E-0F26335ADF89> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
             0x116600000 -        0x116848ff7  com.adobe.PSAutomate 13.0 (13.0) <C674EBC3-36AA-368A-B400-0EB597CC8F23> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/M acOS/ScriptingSupport
             0x1168cb000 -        0x1168d9fff  com.adobe.boost_threads.framework 7.0.0 (7.0.0.0) <C44EEFDE-8A50-303A-8DF6-197E37C34DFC> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
             0x118bb8000 -        0x118c19ff7  com.adobe.dvatransport.framework 7.0.0 (7.0.0.0) <0BF14F9A-4525-3A85-8F11-174E23A01D57> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/dvatransport.framework/Versions/A/dvatransport
             0x11cfdd000 -        0x11d227fff  com.adobe.dvacore.framework 7.0.0 (7.0.0.0) <DE7B7941-89B3-3A19-A7BE-28E9BB2BC2DD> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaem on.app/Contents/MacOS/AdobeCrashDaemon
    Parent:          Adobe Photoshop CC [939]
    Responsible:     Adobe Photoshop CC [939]
    Responsible:     Adobe Photoshop CC [939]
    Not sure if any of this helps...

  • HT4939 My garage band app crashes when I try to edit a song.

    My garage band app crashes when I try to edit a song.  This happens several time on a variety of songs.  I turned off my apps, deleted and reinstall the app, turn off my ipad, did a hard reset, and took it to the Genius Bar. Still having problems.    It's annoying because I have to re-record a song. 

    I could always use more storage.  I only have a 16 gb ipad mini with retina display.  Current, I only have 2.3 gb left.  Maybe that might be. The problem.  This problem only happens on newer projects.  The old ones are fine. 
    I don't do anything different from old projects to new ones.  I use the iRig adapter to plug my bass guitar into the iPad when I'm laying down bass tracks.  I use the drums and other instruments from the garage band and use the iPad mic to record my guitar parts (I only have an classical guitar without pickups). 
    I don't use 3rd party apps or loops.  Nothing is really looped.  I recorded everything straight through.  From drums, I don't loop.  I change the beat every so often and do different fills.  So if I make a mistake somewhere I would re-record everything from scratch.  Same goes for the other instruments.  
    I appreciate your time and support with my problem.  :).

  • Mail app crashes when replying to emails

    I received my shiny new iphone 4 this morning (I'm in the UK) and all seemed to be working well until I attempted to reply to an email arriving in my exchange account. As soon as I pressed the arrow (for reply, forward etc), mail app crashed, dropping me back to the home screen. I then tried to reply to an email in my gmail account - same thing.
    I have tested this on both wifi and 3g networks and it happens on both. I can compose new emails and these send fine but as soon as I attempt to reply to an email mail app crashes. Any ideas anyone? Seems like a minor issue but as I access most of my work emails and respond on the move it is going to be a problem!

    turn on your airport mode, then go back to mail app, nav through the mail.
    if you don't crash from there, that means it's not your iPhone.
    go to your mail browser from computer, and accept invites, delet bounced mail..something like that. then go to your mail app from your iPhone..
    I had to accept meeting invites several of them and that take care that.
    Good luck to you all!
    Message was edited by: papee

  • App crashes when trying to edit specific page

    I need to edit a specific page of my site and I cannot open it as the app crashes when trying to. Does this happen often? It is my wife's business site and she is a novice so we are wondering if we should move to a more stable platform. There is nothing fancy on the page. We bought into iLife specifically because it was easy for her to manage and are interested to know if others see the same thing.

    Your Public Profile indicates you're running Mac OS X (10.4.10) — if that's the case, you should upgrade to 10.4.11 via  menu > Software Update... then update your Public Profile and try editing your site again.
    +"A lot of problems can be solved simply by..."+ Read more in the "Fix iWeb" section here:
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    But before trying such suggestions, read this:
    _iWeb: Backing up your Domain file_
    If still no luck, post some details of the crash and perhaps someone can help.
    crankbait wrote:
    It is my wife's business site...
    iWeb is designed for personal sites and is a minor part of Apple's software repertoire. I suggest you consider web-design apps from companies dedicated to their product. Weebly is free and web-based — so you can update the site from any Mac or PC. It also offers e-commerce features:
    http://blog.weebly.com/2/post/2009/05/announcing-weebly-e-commerce-features.html
    Web-design apps for business sites tend to integrate SEO (Search Engine Optimization) — Sandvox Pro is an example:
    http://www.karelia.com/sandvox/getyour_site_noticed_andb.html

  • Apps crashing when being launched

    Hi there
    I am having problems with apps crashing when being launched. This has been happening for a week or so to just a few apps (Google Chrome, Open Office etc) and so far I have just been trashing the apps and re-installing them but it now seems to be happening more often with all my Angry Birds games and also Skype.
    At the bottom of thid post is a log of the latest problem which is happening with Angry Birds:
    Any help is greatly appreciated.
    John
    Process:         Angry Birds [287]
    Path:            /Applications/Angry Birds.app/Contents/MacOS/Angry Birds
    Identifier:      com.rovio.mac.AngryBirds
    Version:         2.3.0 (13)
    App Item ID:     403961173
    App External ID: 10663467
    Code Type:       X86 (Native)
    Parent Process:  launchd [127]
    User ID:         501
    Date/Time:       2013-01-07 09:44:17.581 +0000
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          160328 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  72063 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      610CE585-EE61-A1BD-EDC5-1DBB16EAE93D
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000002c
    VM Regions Near 0x2c:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Angry Birds.app/Contents/MacOS/Angry Birds
        VM_ALLOCATE            0000000000001000-00000000000b4000 [  716K] ---/--- SM=NUL 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.rovio.mac.AngryBirds                0x001ca636 framework::OSXOSInterface::userDisabledUpdate() const + 6
    1   com.rovio.mac.AngryBirds                0x001c50c8 -[AppDelegate applicationDidBecomeActive:] + 706
    2   com.apple.Foundation                    0x99ae3c52 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 + 49
    3   com.apple.CoreFoundation                0x95faae01 ___CFXNotificationPost_block_invoke_0 + 257
    4   com.apple.CoreFoundation                0x95ef643a _CFXNotificationPost + 2794
    5   com.apple.Foundation                    0x99acc788 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    6   com.apple.Foundation                    0x99adc527 -[NSNotificationCenter postNotificationName:object:] + 55
    7   com.apple.AppKit                        0x98fcd3ac -[NSApplication sendEvent:] + 2643
    8   com.apple.AppKit                        0x99143e09 -[NSApplication _modalSession:sendEvent:] + 552
    9   com.apple.AppKit                        0x99144173 -[NSApplication _realDoModalLoop:peek:] + 334
    10  com.apple.AppKit                        0x99144404 -[NSApplication _doModalLoop:peek:] + 67
    11  com.apple.AppKit                        0x991445c5 -[NSApplication runModalForWindow:] + 198
    12  com.apple.AppKit                        0x99135aa6 -[NSAlert runModal] + 212
    13  com.apple.AppKit                        0x98e3f5ff __54-[NSPersistentUIManager promptToIgnorePersistentState]_block_invoke_0 + 1351
    14  com.apple.AppKit                        0x98e3f07c -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 82
    15  com.apple.AppKit                        0x98e3f007 -[NSPersistentUIManager promptToIgnorePersistentState] + 204
    16  com.apple.AppKit                        0x98ef5f76 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 188
    17  com.apple.AppKit                        0x98ef5e85 -[NSApplication(NSAppleEventHandling) _reopenWindowsIfNecessaryWithAppleEvent:completionHandler:] + 211
    18  com.apple.AppKit                        0x98ef5d8a -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 730
    19  com.apple.AppKit                        0x98ef58b4 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 378
    20  libobjc.A.dylib                         0x99e3b628 -[NSObject performSelector:withObject:withObject:] + 77
    21  com.apple.Foundation                    0x99ae723a __76-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 + 121
    22  com.apple.Foundation                    0x99ae6d91 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    23  com.apple.Foundation                    0x99ae6b8e _NSAppleEventManagerGenericHandler + 173
    24  com.apple.AE                            0x962a9535 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 331
    25  com.apple.AE                            0x9627f9de dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    26  com.apple.AE                            0x9627f89d aeProcessAppleEvent + 318
    27  com.apple.HIToolbox                     0x96ba2e48 AEProcessAppleEvent + 100
    28  com.apple.AppKit                        0x98ef1ddd _DPSNextEvent + 1655
    29  com.apple.AppKit                        0x98ef126c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    30  com.apple.AppKit                        0x98ee76cc -[NSApplication run] + 855
    31  com.apple.AppKit                        0x98e8a6f6 NSApplicationMain + 1053
    32  com.rovio.mac.AngryBirds                0x000b5795 start + 53
    Thread 1:
    0   libsystem_kernel.dylib                  0x99a770ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9a02204c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9a021e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9a009cca start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x99a779ae kevent + 10
    1   libdispatch.dylib                       0x970bec71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x970be7a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib                  0x99a770ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9a02204c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9a021e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9a009cca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x99a770ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9a02204c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9a021e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9a009cca start_wqthread + 30
    Thread 5:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x99a76c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9a0a9a61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x9a0a992a usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x990d6d4d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x99b1e1d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x99b1e15b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x9a01f557 _pthread_start + 344
    7   libsystem_c.dylib                       0x9a009cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x99a770ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9a02204c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9a021e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9a009cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x000f4258  ecx: 0xbff4b834  edx: 0x00000000
      edi: 0x7c91e400  esi: 0x001c4e17  ebp: 0xbff4b808  esp: 0xbff4b808
       ss: 0x00000023  efl: 0x00010246  eip: 0x001ca636   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x0000002c
    Logical CPU: 0
    Binary Images:
       0xb4000 -   0x2a7ffb +com.rovio.mac.AngryBirds (2.3.0 - 13) <FA026DB8-E7BD-3B29-9120-6B9321BD1C84> /Applications/Angry Birds.app/Contents/MacOS/Angry Birds
      0x41f000 -   0x44aff7  com.apple.audio.OpenAL (1.6 - 1.6) <B10D8F86-253D-37C8-BC11-64DEEF81AC45> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x16f0000 -  0x16fdff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x8feb3000 - 0x8fee5e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x9006e000 - 0x90092fff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x901f1000 - 0x90236ff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x90237000 - 0x9023ffff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x90240000 - 0x902eafff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x902eb000 - 0x90407ff7  com.apple.desktopservices (1.7.2 - 1.7.2) <8E74D101-8398-34F1-A463-B4950680A597> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90408000 - 0x9040cff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x9040d000 - 0x90475fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90476000 - 0x90479ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x905a5000 - 0x905acfff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x906bf000 - 0x906c9ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90fa2000 - 0x910a0ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x910d9000 - 0x910daffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x910db000 - 0x910ebff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x910ec000 - 0x910f9ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x910fa000 - 0x91101ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x9149d000 - 0x916b4fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x916b5000 - 0x916f6ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x916f7000 - 0x91713ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91714000 - 0x9171efff  libCSync.A.dylib (324.6) <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91762000 - 0x91765ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x91a71000 - 0x91bbeffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x91bbf000 - 0x91e62ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x91e63000 - 0x91e6fff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x91ead000 - 0x91eaefff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x91f9b000 - 0x920f3ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x920f4000 - 0x92169ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9216a000 - 0x921d9ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9221e000 - 0x9222aff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9222b000 - 0x9224dfff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x929fa000 - 0x92a57fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92a58000 - 0x92abefff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x92abf000 - 0x92e77ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92e78000 - 0x92edafff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x92edb000 - 0x92ee9fff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x92f34000 - 0x92f58fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x92f59000 - 0x9304affc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9304b000 - 0x93052ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x93053000 - 0x93053fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93054000 - 0x93055fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x930e8000 - 0x93164ff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93165000 - 0x93166fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93461000 - 0x93476fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93477000 - 0x9350ffff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93510000 - 0x9361dff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9361e000 - 0x9364bffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x93741000 - 0x93741fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93742000 - 0x93744ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x93745000 - 0x9379ffff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x937ae000 - 0x937aefff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x937af000 - 0x93bccfff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x93bcd000 - 0x93beafff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x93c31000 - 0x93c3bfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93c3c000 - 0x93c45ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93c46000 - 0x93c92fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x93c93000 - 0x93c93fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93c94000 - 0x93f99ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93f9c000 - 0x93f9cffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93fab000 - 0x94167ffd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
    0x94168000 - 0x94185ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x944ff000 - 0x9451eff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9451f000 - 0x94587ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94588000 - 0x9458cffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x945c3000 - 0x945ecff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x945ed000 - 0x94612ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x94613000 - 0x94613fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x94614000 - 0x94647ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x94648000 - 0x94649ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x9464a000 - 0x9490afff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9490b000 - 0x9494dffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x94952000 - 0x94983fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94984000 - 0x94c10ffb  com.apple.RawCamera.bundle (4.03 - 676) <53F1CD12-96E9-3E41-BEA9-46B75FC707D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94c11000 - 0x94c3effe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x94ecb000 - 0x94f89ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94f8a000 - 0x94fa1fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x94fa2000 - 0x94fa4fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x94fac000 - 0x9505bff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x95dd7000 - 0x95dd7fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x95dd8000 - 0x95eacfff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95ead000 - 0x96095ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x960d9000 - 0x960e5ffe  libkxld.dylib (2050.18.24) <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
    0x960e6000 - 0x961f1ff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x96263000 - 0x96271ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x96277000 - 0x962d0fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9632b000 - 0x96357ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x96358000 - 0x9635cfff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9635d000 - 0x96363fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x96364000 - 0x96367ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x964dc000 - 0x964e4fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x964e5000 - 0x964f1ffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x966af000 - 0x96746ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96747000 - 0x96755ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x96756000 - 0x9678cffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9678d000 - 0x96794fff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x96795000 - 0x96795fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96796000 - 0x96796ffd  libOpenScriptingUtil.dylib (148.2) <907E25B1-4F50-3461-B8D5-733C687EB534> /usr/lib/libOpenScriptingUtil.dylib
    0x96797000 - 0x967a1fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x967f8000 - 0x968acfff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x968ad000 - 0x96a36ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96a37000 - 0x96a57ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x96a58000 - 0x96addff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96b3f000 - 0x96f22ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96f7f000 - 0x96fd6ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x96fd7000 - 0x970b8fff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
    0x970ba000 - 0x970ccff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x974ca000 - 0x97519ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9751a000 - 0x975baff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x977ec000 - 0x977efffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x97ef8000 - 0x97ef8fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x97ef9000 - 0x97ff1ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x97ff6000 - 0x9801ffff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x982bb000 - 0x982ceff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x982cf000 - 0x982d0fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x982e0000 - 0x98458ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98459000 - 0x984f3fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x984f4000 - 0x98586ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98593000 - 0x985acfff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x985c3000 - 0x9861aff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98651000 - 0x9878cff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x987c7000 - 0x987cbffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x987cc000 - 0x987cfff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x987d0000 - 0x98812ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x98813000 - 0x98817fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98830000 - 0x98c72fff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98c73000 - 0x98cc1ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x98cc2000 - 0x98d10ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x98d11000 - 0x98d11fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x98d12000 - 0x98d28fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x98d29000 - 0x98d8dfff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x98d8e000 - 0x9994affb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9994b000 - 0x99970ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x99971000 - 0x999b0ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x999b1000 - 0x999e4ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x99a62000 - 0x99a7cffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x99a80000 - 0x99d9dff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99da0000 - 0x99e1aff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x99e1b000 - 0x99e1cfff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x99e1d000 - 0x99f2a057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x9a009000 - 0x9a0c6feb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x9a19e000 - 0x9a1b0fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9a42e000 - 0x9a44bfff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x9a44c000 - 0x9a455ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9a456000 - 0x9a49afff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9a49b000 - 0x9a4a6fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x9a4e8000 - 0x9a54cff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9a54d000 - 0x9a55bfff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9a55c000 - 0x9a569fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9a56a000 - 0x9a5a5fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9a5a6000 - 0x9a5a8fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9a5a9000 - 0x9a5aafff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x9a5ab000 - 0x9a5b3fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9a5b4000 - 0x9a69dff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 180
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=120.7M resident=74.1M(61%) swapped_out_or_unallocated=46.6M(39%)
    Writable regions: Total=70.5M written=1956K(3%) resident=2808K(4%) swapped_out=0K(0%) unallocated=67.7M(96%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                   564K
    CG image                             12K
    CG shared images                   1184K
    CoreServices                       2016K
    MALLOC                             41.4M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=35                      7212K
    Stack                              67.0M
    VM_ALLOCATE                        16.8M
    __DATA                             5412K
    __DATA/__OBJC                       140K
    __IMAGE                             528K
    __LINKEDIT                         32.6M
    __OBJC                             1560K
    __OBJC/__DATA                        72K
    __PAGEZERO                            4K
    __TEXT                             88.1M
    __UNICODE                           544K
    mapped file                       123.6M
    shared memory                       308K
    ===========                      =======
    TOTAL                             388.8M
    Model: Macmini5,1, BootROM MM51.0077.B0F, 2 processors, Intel Core i5, 2.3 GHz, 8 GB, SMC 1.76f0
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x802C, 0x31364A54463531323634485A2D3147344D31
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x802C, 0x31364A54463531323634485A2D3147344D31
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE4), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: miscellaneous_device, 0x046d  (Logitech Inc.), 0x0825, 0xfd130000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa130000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa134000 / 10
    USB Device: composite_device, 0x04b4  (Cypress Semiconductor), 0x0033, 0xfa134400 / 13
    USB Device: Deskjet F300 series, 0x03f0  (Hewlett Packard), 0x5511, 0xfa134300 / 12
    USB Device: hub_device, 0x0557  (ATEN International Co. Ltd.), 0x8021, 0xfa133000 / 9
    USB Device: USB Keyboard, 0x0603  (Novatek Microelectronics Corp.), 0x00f2, 0xfa133100 / 11
    USB Device: MT1806, 0x0e8d  (MediaTek Inc.), 0x1806, 0xfa120000 / 4
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8281, 0xfa113000 / 8

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

Maybe you are looking for

  • Cant boot into 64bit Kernel on a Unibody 13" Macbook (late 2008)

    Hi I've just upgraded to Snow Leopard (which went flawlessly) but I wanted to try out the 64-bit. Using terminal the following command ioreg -l -p IODeviceTree | grep firmware-abi I receive "firmware-abi" = <" and System Profiler, both say 64bit isn'

  • Photoshop CS2 and Windows Vista 64 bit

    I have just loaded Photoshop CS2 onto my new laptop which has Windows Vista Ultimate 64 bit as its OS. All working well except I notice that,when I made adjustments to a layer (for example,using curves to colour adjust,or even just brighten midtones)

  • DB installation error at update DB statistics

    Hi, During DB installation at Update database statistics Installation error. Error shows that MTU- 03010 Execution of the command "/sapmnt/QMS/exe/brconnect   '-u' '/' '-c' '-f' 'crsyn -o 'SAPQMS' finished with status TST_ERROR brconnect.log error /u

  • Cannot Run Photoshop CS5 on SSD

    MAC PRO Spec: MAC PRO 6 cores Intel Xeon "Westmere" RAM=16GB by Kingston (apple certified RAM module = KTA-MP1333/4G) HDD=Western Digital black label 1TB (original shipped by Apple) SSD=Kingston Hyper X 240G OS= MAC OS X Lion Adobe product = CS5.5 de

  • Unable to access iPhoto Library with iPhoto 6

    I purchased and installed iLife 06 as a replacement for iLife 04, and now I can't bring up any of my photos. The program tells me it's unable to upgrade my old photo library because the "user does not have access. If possible, repair permissions..."