AIR app crashes when switching tabs

Hi there:
I posted in another forum about this, but it seems the issues
aren't really related, so a recap:
quote:
Originally posted by:
patrickcheatham
I am trying to run an AIR app which _crashes_ as soon as it
needs to access a file or files on the hard drive (via an HTML
component). Sometimes it just crashes, sometimes I get an error
that the app can't find Adobe AIR. I have followed most or all of
the suggestions in
this
thread.
Attached code is a crash report.
Thanks!
The app can be found
here
The crash report can be found
here
The crash report has WebKit all over it; interstingly, when a
user reported installing the Safari 4 Beta recently, all crashing
stopped (that doesn't really make sense to me, but OK).
quote:
Originally posted by:
patrickcheatham
I have further input on this:
1) The crash occurs when the user switches tabs;
specifically, when the user switches from a tab which does _not_
contain an HTML component, to one which _does_ contain an HTML
component. Said HTML component looks for local content.
2) The crash occurs when the app tries to phone home to
Adobe; this phoning home appears to occur during item 1 above
_and/or_ when the app is launched.
Any help from above or insight appreciated.
Thanks,
Patrick

Hi Mirela:
It may be that the issue is a non-issue with AIR 1.5.1
(versus v1.5), so we'll see. Frustrating, nonetheless, especially
since it is a sporadic issue.
You can follow other users' experiences in the forum at
panosalado.com.
Thanks for taking the time to download it and try it out --
and for the feedback. Good to hear a positive! :)
Cheers,
Patrick

Similar Messages

  • IPad app crashes when switching to extra keyboard

    Something I also experienced on my iPhone 4 (but don't now how I fixed that) now also happens on my iPad 3: I just added an additional (2nd) keyboard English to the original keyboard Dutch. And when I try to switch to it (via the 'globe' on the keyboard) the app crashes: for example when using the 'native' Apple app iMessage. How come and what can I do to solve this?

    Try restarting or restoring the iPad.

  • AIR app crashes when using FULL_SCREEN_INTERACTIVE on nativeWindow

    App is running on desktop and packaged as Signed native installer with AIR 14
    My app opens and closes native windows and adds externally loaded SWFs to them. I'm activating the windows with a FULL_SCREEN_INTERACTIVE displayState. Without fail, after 5 or 10 windows opened and closed, the app crashes upon opening the next native window.
    If I don't use FULL_SCREEN_INTERACTIVE, the app never crashes, I've tested on Mac OS and Windows, same problem.
    This code opens the window :
    var options:NativeWindowInitOptions = new NativeWindowInitOptions();
    options.transparent = false;
    options.systemChrome = NativeWindowSystemChrome.STANDARD;
    options.type = NativeWindowType.NORMAL;
    options.resizable = false;
    options.renderMode = NativeWindowRenderMode.DIRECT;  
    myWindow = new NativeWindow(options);
    myWindow.title = "Title";
    myWindow.width = 1024;
    myWindow.height= 768;
    myWindow.stage.align = StageAlign.TOP_LEFT;
    myWindow.stage.scaleMode = StageScaleMode.NO_SCALE;
    myWindow.stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
    myWindow.activate();
    // add content to window
    var loader:Loader = new Loader();
    var AD:ApplicationDomain = new ApplicationDomain();
    var context:LoaderContext = new LoaderContext( false, AD );
    context.allowLoadBytesCodeExecution = true;
    // urlloader has loaded a local SWF file
    loader.loadBytes( urlloader.data, context );
    myWindow.stage.addChild(loader);
    This is the crash report from Mac OS :
    Process:  adl [29243]
    Path:   /Applications/Adobe Flash Builder 4.7/*/adl
    Identifier: adl
    Version: ???
    Code Type: X86 (Native)
    Parent Process: Adobe Flash Builder 4.7 [72735]
    Responsible: Adobe Flash Builder 4.7 [72735]
    User ID: 501
    Date/Time: 2014-08-29 15:53:57.344 -0400
    OS Version: Mac OS X 10.9.4 (13E28)
    Report Version: 11
    Anonymous UUID: 8F57FABC-FE5A-30AB-3E90-2F97052D4975
    Sleep/Wake UUID: 577E4E3E-84CF-4446-96E4-0D5FF83DB6B5
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000003f800008
    VM Regions Near 0x3f800008:
      CG backing stores 0000000017577000-0000000017e41000 [ 9000K] rw-/rw- SM=SHM 
    -->
      __TEXT 0000000040000000-000000004035c000 [ 3440K] r-x/rwx SM=COW /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHDGraphicsGLDriver
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.adobe.AIR 0x02913e50 0x2800000 + 1130064
    1 com.adobe.AIR 0x02945d81 0x2800000 + 1334657
    2 com.adobe.AIR 0x029389fe 0x2800000 + 1280510
    3 com.adobe.AIR 0x02a0ae85 0x2800000 + 2141829
    4 com.adobe.AIR 0x02a037af 0x2800000 + 2111407
    5 com.adobe.AIR 0x02a03c2f 0x2800000 + 2112559
    6 com.adobe.AIR 0x02a0228d 0x2800000 + 2105997
    7 com.adobe.AIR 0x02a01d8d 0x2800000 + 2104717
    8 com.adobe.AIR 0x02a08be1 0x2800000 + 2132961
    9 com.adobe.AIR 0x02a014e6 0x2800000 + 2102502
    10 com.adobe.AIR 0x02e3287f 0x2800000 + 6498431
    11 com.adobe.AIR 0x02ce2d17 0x2800000 + 5123351
    12 com.apple.Foundation 0x9283727c __NSFireDelayedPerform + 422
    13 com.apple.CoreFoundation 0x90195ea6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    14 com.apple.CoreFoundation 0x90195863 __CFRunLoopDoTimer + 1395
    15 com.apple.CoreFoundation 0x9021006d __CFRunLoopDoTimers + 349
    16 com.apple.CoreFoundation 0x9014d353 __CFRunLoopRun + 1779
    17 com.apple.CoreFoundation 0x9014c9ea CFRunLoopRunSpecific + 394
    18 com.apple.CoreFoundation 0x9014c84b CFRunLoopRunInMode + 123
    19 com.apple.HIToolbox 0x9a10eb5d RunCurrentEventLoopInMode + 259
    20 com.apple.HIToolbox 0x9a10e777 ReceiveNextEventCommon + 163
    21 com.apple.HIToolbox 0x9a10e6bd _BlockUntilNextEventMatchingListInModeWithFilter + 92
    22 com.apple.AppKit 0x9848e349 _DPSNextEvent + 1602
    23 com.apple.AppKit 0x9848d870 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    24 com.apple.AppKit 0x9848015c -[NSApplication run] + 727
    25 com.adobe.AIR 0x0280228c 0x2800000 + 8844
    26 com.adobe.AIR 0x02802438 0x2800000 + 9272
    27 libobjc.A.dylib 0x96e672af -[NSObject performSelector:withObject:] + 70
    28 adl 0x00002d7e RuntimeMain(char const*, int) + 256
    29 adl 0x00002e0e main + 34
    30 adl 0x000026dd start + 53
    Any help would be much appreciated.

    This is from a tester describing what happens on a Mac:
    No the program does not launch properly on the Mac
    What happens is this.
    I open my applications folder
    I open the App Folder and see another folder labeled Program V2.1
    I open that folder and see the Program blue icon which click to launch
    The folder disappears and the blue Program icon appears in my dock along side other applications looking ready for launching.
    This is where the problem starts
    If I click on the blue Program icon which is in my dock along side all of my other application icons they all drop off the screen. like the screen resolution changed suddenly or something,
    The menu along the top of the screen also moves off the screen . in the same manner
    so my desktop which usually has a visible dock at the bottom and a menu bar on the top now doesn't show either of those elements.
    I do have a couple of document icons on my desktop , you know text files or what ever they never move
    If I now click my mouse anywhere on the screen all of the icons return including the blue Program icon still sitting in by dock, if I click it again same sequence of actions.
    I deleted and reinstalled the latest version of Adobe Air and got the same result
    I also want to mention
    The top menu on the mac tells me what application is active, you know "finder" "Open office" "Firefox" what ever is program is running and active shows there
    Program has never show up as being active in the top menu so I'm guessing never fully launched

  • Numbers on iOS 7 crashes when switching tabs

    About a year ago I created a simple spreadsheet using Numbers on my iPad 2. The first tab has one small sheet on top with a few rows and a second sheet on the bottom. I created a form from the three columns on the second sheet. Every week I make a copy of this spreadsheet for a planning meeting I attend. This morning I tried working with a copy of that spreadsheet. When I switched to the form tab, I had trouble just getting the first field to accept input. Once I get that working, if I switch to the first tab, Numbers crashes.
    The crash happens every time. All I have to do is open the spreadsheet, switch to the form tab, tap in the first field, and switch back to the first tab. As soon as I tap the tab, Numbers crashes immediately. This never happened under any previous version of iOS. I use a Logitech bluetooth keyboard for input, but I got the same crash with the keyboard turned off.

    I had the same issue. Found that the only way to get it to work was input the data in the form and hit the + button as if to add  a a new input then switch to  back to  first  tab  and it will not crash
    Hope it helps ian

  • Windows Phone camera App crash when switching to another page

    I am creating a Simple Face Detection App for Windows Phone in C#. I turn on my camera , everything works perfect and FaceDetector works too, but when I try to navigate to other page my App always crashes and I do not why. I tried to test my App in Windows
    Phone Emulator and here the navigation works. I also tried debug my App in real device, but there the method OnNavigatedFrom is never hit.
    FaceDetection.xaml.cs
    public partial class FaceDetection : PhoneApplicationPage
    #region member variables
    const string MODEL_FILE = "models/haarcascade_frontalface_alt.xml";
    FaceDetector.Detector _detector;
    int _downsampleFactor = 2;
    private byte[] _pixelDataGray;
    private byte[] _pixelDataDownsampled;
    private int[] _pixelDataGrayInt;
    private WriteableBitmap _wb;
    private DateTime _lastUpdate;
    public static int pocet = 5;
    double point1;
    double point2;
    double heightRectangle;
    double widthRectangle;
    #endregion
    public FaceDetection()
    InitializeComponent();
    _detector = new FaceDetector.Detector(XDocument.Load(MODEL_FILE));
    private void NewCameraFrame(object sender, CameraFrameEventArgs cameraFrameEventArgs)
    PageOrientation orientaciaObrazovky = ((PhoneApplicationFrame)Application.Current.RootVisual).Orientation;
    cameraViewer.UpdateOrientation(orientaciaObrazovky);
    var w = cameraViewer.CameraWidth;
    var h = cameraViewer.CameraHeight;
    if (_pixelDataGray == null || _pixelDataGray.Length != h * w)
    _pixelDataGray = new byte[w / _downsampleFactor * h / _downsampleFactor];
    _pixelDataDownsampled =
    new byte[w / _downsampleFactor * h / _downsampleFactor];
    _pixelDataGrayInt = new int[w / _downsampleFactor * h / _downsampleFactor];
    _wb = new WriteableBitmap(w / _downsampleFactor, w / _downsampleFactor);
    _lastUpdate = DateTime.Now;
    Utils.DownSample(cameraFrameEventArgs.ARGBData, w, h, ref _pixelDataGrayInt, _downsampleFactor);
    Utils.ARGBToGreyScale(_pixelDataGrayInt, ref _pixelDataGray);
    Utils.HistogramEqualization(ref _pixelDataGray);
    Utils.GrayToARGB(_pixelDataGray, ref _pixelDataGrayInt);
    List<FaceDetector.Rectangle> faces = new List<FaceDetector.Rectangle>();
    if (orientaciaObrazovky == PageOrientation.PortraitUp || orientaciaObrazovky == PageOrientation.PortraitDown)
    int scalw = w / _downsampleFactor;
    int scalh = h / _downsampleFactor;
    int[] _pixelDataGrayIntRotated = new int[scalw * scalh];
    for (int x = 0; x < scalw; x++)
    for (int y = 0; y < scalh; y++)
    _pixelDataGrayIntRotated[y + x * scalh] = _pixelDataGrayInt[x + y * scalw];
    faces = _detector.getFaces(
    _pixelDataGrayIntRotated,
    h / _downsampleFactor,
    w / _downsampleFactor,
    2f, 1.25f, 0.1f, 1, false, false); // height-width swapped
    else
    faces = _detector.getFaces(
    _pixelDataGrayInt,
    w / _downsampleFactor,
    h / _downsampleFactor,
    2f, 1.25f, 0.1f, 1, false, false);
    var elapsed = (DateTime.Now - _lastUpdate).TotalMilliseconds;
    _pixelDataGrayInt.CopyTo(_wb.Pixels, 0);
    _wb.Invalidate();
    Dispatcher.BeginInvoke(delegate()
    cnvsFaceRegions.Children.Clear();
    foreach (var r in faces)
    System.Windows.Shapes.Rectangle toAdd = new System.Windows.Shapes.Rectangle();
    TranslateTransform loc = new TranslateTransform();
    if (orientaciaObrazovky == PageOrientation.PortraitUp)
    loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth;
    loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight;
    point1 = r.X;
    point2 = r.Y;
    else if (orientaciaObrazovky == PageOrientation.PortraitDown)
    loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth;
    loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight;
    point1 = r.X;
    point2 = r.Y;
    else if (orientaciaObrazovky == PageOrientation.LandscapeLeft)
    loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth - 50;
    loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight + 90;
    point1 = r.X;
    point2 = r.Y;
    else if (orientaciaObrazovky == PageOrientation.LandscapeRight)
    loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth+50 ;
    loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight -90;
    point1 = r.X;
    point2 = r.Y;
    toAdd.RenderTransform = loc;
    toAdd.Width = r.Width * _downsampleFactor + 50;
    toAdd.Height = r.Height * _downsampleFactor + 50;
    toAdd.Stroke = new SolidColorBrush(Colors.Red);
    cnvsFaceRegions.Children.Add(toAdd);
    widthRectangle = toAdd.Width;
    heightRectangle = toAdd.Height;
    point1 = (loc.X);
    point2 = (loc.Y);
    protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
    base.OnNavigatedTo(e);
    cameraViewer.SaveToCameraRoll = true;
    cameraViewer.NewCameraFrame += NewCameraFrame;
    cameraViewer.StartPumpingFrames();
    CameraButtons.ShutterKeyHalfPressed += OnButtonHalfPress;
    CameraButtons.ShutterKeyPressed += OnButtonFullPress;
    CameraButtons.ShutterKeyReleased += OnButtonRelease;
    protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)
    base.OnNavigatedFrom(e);
    cameraViewer.StopPumpingFrames();
    CameraButtons.ShutterKeyHalfPressed -= OnButtonHalfPress;
    CameraButtons.ShutterKeyPressed -= OnButtonFullPress;
    CameraButtons.ShutterKeyReleased -= OnButtonRelease;
    private void OnButtonHalfPress(object sender, EventArgs e)
    cameraViewer.NewCameraFrame -= NewCameraFrame;
    private void OnButtonFullPress(object sender, EventArgs e)
    SaveScreenShots();
    private void OnButtonRelease(object sender, EventArgs e)
    cameraViewer.NewCameraFrame += NewCameraFrame;
    private static WriteableBitmap CropImage(WriteableBitmap source, int xOffset, int yOffset, int width, int height)
    var sourceWidth = source.PixelWidth;
    var result = new WriteableBitmap(width, height);
    for (var x = 0; x <= height - 1; x++)
    var sourceIndex = xOffset + (yOffset + x) * sourceWidth;
    var destinationIndex = x * width;
    Array.Copy(source.Pixels, sourceIndex, result.Pixels, destinationIndex, width);
    return result;
    private void SaveScreenShots()
    string namePerson = PhoneApplicationService.Current.State["TextBoxValue"] as String;
    bool b = cnvsFaceRegions.Children.Any();
    cnvsFaceRegions.Children.Clear();
    if (!b)
    MessageBox.Show("No face detected ");
    else
    for (int j = 1; j <= pocet; j++)
    using (var isoStore = IsolatedStorageFile.GetUserStoreForApplication())
    var bmp = new WriteableBitmap((int)this.ActualWidth, (int)this.ActualHeight);
    bmp.Render(this, null);
    byte[] bb = EncodeToJpeg(bmp);
    bmp.Invalidate();
    WriteableBitmap bmp2 = CropImage(bmp, (int)point1, (int)point2, (int)widthRectangle, (int)heightRectangle);
    using (var isoFileStream = isoStore.CreateFile(namePerson + j))
    System.Windows.Media.Imaging.Extensions.SaveJpeg(bmp2, isoFileStream, bmp.PixelWidth, bmp.PixelHeight, 0, 100);
    isoFileStream.Close();
    MessageBox.Show("Saved successfully " + pocet + " images");
    cameraViewer.NewCameraFrame += NewCameraFrame;
    public byte[] EncodeToJpeg(WriteableBitmap wb)
    using (MemoryStream stream = new MemoryStream())
    wb.SaveJpeg(
    stream,
    wb.PixelWidth,
    wb.PixelHeight,
    0,
    85);
    return stream.ToArray();
    private void cameraViewer_MouseLeftButtonDown_1(object sender, MouseButtonEventArgs e)
    cameraViewer.NewCameraFrame -= NewCameraFrame;
    private void cameraViewer_MouseLeftButtonUp_1(object sender, MouseButtonEventArgs e)
    SaveScreenShots();
    private void ApplicationBarMenuItem_Click(object sender, EventArgs e)
    NavigationService.Navigate(new Uri("/PersonAndGallery;component/Gallery.xaml", UriKind.Relative));
    CameraViewer.cs
    public class CameraFrameEventArgs : RoutedEventArgs
    public int[] ARGBData { get; set; }
    public static class AppGlobal
    public static bool isPortrait = true;
    public class CameraViewer : Grid
    #region Events
    public EventHandler<CameraFrameEventArgs> NewCameraFrame { get; set; }
    public EventHandler<ContentReadyEventArgs> NewCameraCaptureImage { get; set; }
    public EventHandler<CameraOperationCompletedEventArgs> CamInitialized { get; set; }
    #endregion
    #region Properties
    public int CameraWidth
    get { return _cameraWidth; }
    set { _cameraWidth = value; }
    public int CameraHeight
    get { return _cameraHeight; }
    set { _cameraHeight = value; }
    public bool PhotoOnPress
    get { return _photoOnPress; }
    set
    _photoOnPress = value;
    // CameraButtons.ShutterKeyPressed -= CameraButtonsOnShutterKeyPressed;
    if (_photoOnPress)
    // CameraButtons.ShutterKeyPressed += CameraButtonsOnShutterKeyPressed;
    public bool SaveToCameraRoll { get; set; }
    public PhotoCamera Camera
    get { return _camera; }
    public bool TakingPhoto
    get { return _takingPhoto; }
    #endregion
    #region Member Variables
    private PhotoCamera _camera; // the windows phone camera that takes the photos
    private int _cameraWidth = -1;
    private int _cameraHeight = -1;
    private Thread _pumpFramesThread;
    private static ManualResetEvent _pauseFramesEvent = new ManualResetEvent(true);
    private bool _takingPhoto;
    VideoBrush viewfinderBrush;
    private bool _photoOnPress;
    private SoundEffect _cameraShutterSound;
    private static ManualResetEvent _cameraCaptureEvent = new ManualResetEvent(true);
    private static ManualResetEvent _cameraInitializedEvent = new ManualResetEvent(false);
    private bool _pumpFrames;
    #endregion
    #region Constructor
    public CameraViewer()
    Unloaded += new RoutedEventHandler(OnUnloaded);
    PhotoOnPress = true;
    public override void OnApplyTemplate()
    base.OnApplyTemplate();
    #endregion
    #region Public methods
    public void StartPumpingFrames()
    _pauseFramesEvent = new ManualResetEvent(true);
    _cameraCaptureEvent = new ManualResetEvent(true);
    _cameraInitializedEvent = new ManualResetEvent(false);
    InitializeCamera();
    _pumpFrames = true;
    if (_pumpFramesThread == null)
    _pumpFramesThread = new Thread(PumpFrames);
    if (!_pumpFramesThread.IsAlive)
    _pumpFramesThread.Start();
    public void StopPumpingFrames()
    _pumpFrames = false;
    _pumpFramesThread = null;
    Camera.Dispose();
    public void TakePhoto()
    if (TakingPhoto)
    return;
    _cameraCaptureEvent.Reset();
    FrameworkDispatcher.Update();
    _cameraShutterSound.Play();
    _takingPhoto = true;
    Camera.CaptureImage();
    #endregion
    private void CameraButtonsOnShutterKeyPressed(object sender, EventArgs eventArgs)
    if (_photoOnPress && !TakingPhoto)
    _cameraCaptureEvent.WaitOne();
    TakePhoto();
    private void OnUnloaded(object sender, RoutedEventArgs e)
    _cameraInitializedEvent.Reset();
    public void InitializeCamera()
    _cameraInitializedEvent.Reset();
    // Check to see if the camera is available on the device.
    if ((PhotoCamera.IsCameraTypeSupported(CameraType.Primary) == true) ||
    (PhotoCamera.IsCameraTypeSupported(CameraType.FrontFacing) == true))
    // Initialize the default camera.
    _camera = new Microsoft.Devices.PhotoCamera();
    //Event is fired when the PhotoCamera object has been initialized
    Camera.Initialized +=
    new EventHandler<Microsoft.Devices.CameraOperationCompletedEventArgs>(CameraInitialized);
    Camera.CaptureImageAvailable += CameraOnCaptureImageAvailable;
    Camera.CaptureCompleted += CameraOnCaptureCompleted;
    //Set the VideoBrush source to the camera
    // var viewfinderBrush = new VideoBrush();
    viewfinderBrush = new VideoBrush();
    viewfinderBrush.Stretch = Stretch.Fill;
    viewfinderBrush.RelativeTransform = new CompositeTransform { CenterX = 0.5, CenterY = 0.5 };
    viewfinderBrush.SetSource(Camera);
    System.Windows.Shapes.Rectangle rect = new System.Windows.Shapes.Rectangle();
    rect.Fill = viewfinderBrush;
    this.Children.Add(rect);
    Stream stream = TitleContainer.OpenStream("models/shutter.wav");
    _cameraShutterSound = SoundEffect.FromStream(stream);
    // CameraButtons.ShutterKeyPressed -= CameraButtonsOnShutterKeyPressed;
    if (_photoOnPress)
    // CameraButtons.ShutterKeyPressed += CameraButtonsOnShutterKeyPressed;
    else
    // The camera is not supported on the device.
    MessageBox.Show(
    "Sorry, this sample requires a phone camera and no camera is detected. This application will not show any camera output.");
    private void CameraOnCaptureCompleted(object sender, CameraOperationCompletedEventArgs cameraOperationCompletedEventArgs)
    _cameraCaptureEvent.Set();
    _takingPhoto = false;
    private void CameraOnCaptureImageAvailable(object sender, ContentReadyEventArgs contentReadyEventArgs)
    if (SaveToCameraRoll)
    Dispatcher.BeginInvoke(() =>
    WriteableBitmap bitmap =
    CreateWriteableBitmap(contentReadyEventArgs.ImageStream,
    (int)Camera.Resolution.Width,
    (int)Camera.Resolution.Height);
    // SaveCapturedImage(bitmap);
    //TakeScreenShots();
    if (NewCameraCaptureImage != null)
    NewCameraCaptureImage.Invoke(this, contentReadyEventArgs);
    // Helper for CameraOnCaptureImageAvailable
    private void SaveCapturedImage(WriteableBitmap imageToSave)
    var stream = new MemoryStream();
    imageToSave.SaveJpeg(stream, imageToSave.PixelWidth, imageToSave.PixelHeight, 0, 100);
    //Take the stream back to its beginning because it will be read again
    //when saving to the library
    stream.Position = 0;
    var library = new MediaLibrary();
    string fileName = string.Format("{0:yyyy-MM-dd-HH-mm-ss}.jpg", DateTime.Now);
    library.SavePictureToCameraRoll(fileName, stream);
    //save to Save Photo
    Picture pic;
    private void TakeScreenShots()
    WriteableBitmap bmp = new WriteableBitmap((int)this.ActualWidth, (int)this.ActualHeight);
    bmp.Render(this, null);
    byte[] bb = EncodeToJpeg(bmp);
    bmp.Invalidate();
    MemoryStream mem = new MemoryStream();
    bmp.SaveJpeg(mem, bmp.PixelWidth, bmp.PixelHeight, 0, 100);
    mem.Seek(0, System.IO.SeekOrigin.Begin);
    if (mem != null)
    MediaLibrary library = new MediaLibrary();
    try
    pic = library.SavePicture("Mask_" + Guid.NewGuid().ToString(), mem);
    MessageBox.Show("Your picture is now accessible through the Saved Picture album.", "Saved successfully.", MessageBoxButton.OK);
    catch (Exception ex)
    MessageBox.Show("Unable to save the photo." + ex);
    public byte[] EncodeToJpeg(WriteableBitmap wb)
    using (MemoryStream stream = new MemoryStream())
    wb.SaveJpeg(
    stream,
    wb.PixelWidth,
    wb.PixelHeight,
    0,
    85);
    return stream.ToArray();
    // Creates a WriteableBitmap from an imageStream
    private WriteableBitmap CreateWriteableBitmap(Stream imageStream, int width, int height)
    var bitmap = new WriteableBitmap(width, height);
    imageStream.Position = 0;
    bitmap.LoadJpeg(imageStream);
    return bitmap;
    private void CameraInitialized(object sender, CameraOperationCompletedEventArgs e)
    if (e.Succeeded)
    try
    // available resolutions are ordered based on number of pixels in each resolution
    CameraWidth = (int)Camera.PreviewResolution.Width;
    CameraHeight = (int)Camera.PreviewResolution.Height;
    if (CamInitialized != null)
    CamInitialized.Invoke(this, e);
    _cameraInitializedEvent.Set();
    _pauseFramesEvent.Set();
    catch (ObjectDisposedException)
    // If the camera was disposed, try initializing again
    private void PumpFrames()
    _cameraInitializedEvent.WaitOne();
    int[] pixels = new int[CameraWidth * CameraHeight];
    int numExceptions = 0;
    while (_pumpFrames)
    _pauseFramesEvent.WaitOne();
    _cameraCaptureEvent.WaitOne();
    _cameraInitializedEvent.WaitOne();
    try
    Camera.GetPreviewBufferArgb32(pixels);
    catch (Exception e)
    // If we get an exception try capturing again, do this up to 10 times
    if (numExceptions >= 10)
    throw e;
    numExceptions++;
    continue;
    numExceptions = 0;
    _pauseFramesEvent.Reset();
    Deployment.Current.Dispatcher.BeginInvoke(
    () =>
    if (NewCameraFrame != null && _pumpFrames)
    NewCameraFrame(this, new CameraFrameEventArgs { ARGBData = pixels });
    _pauseFramesEvent.Set();
    //na zmenu orientacie
    public void UpdateOrientation(PageOrientation orientation)
    if (orientation == PageOrientation.PortraitDown)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 270 };
    /* else if (orientation == PageOrientation.PortraitDown && cameraType == 2)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 90 };
    else if (orientation == PageOrientation.PortraitUp && cameraType == 2)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = -90 };
    else if (orientation == PageOrientation.PortraitUp)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation =90 };
    else if (orientation == PageOrientation.LandscapeLeft)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 0 };
    else if (orientation == PageOrientation.LandscapeRight)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = -180 };
    Thanks for reply.

    Hi Facko,
    Thanks for posting at the forum, however it could be really difficult for us to copy/paste your code and try to repro the issue, I would suggest you to provide a repro sample for us so that we can debug for you.
    And base on your description, looks like your app only crashes on the real device, but not on the emulator. I have question here, how the app works on the emulator?
    As I know if we open the camera on emulator, the only thing we can see is kind of small color blocks instead of the real images.
    You could also try to close the camera and then dispose the object to see if it works.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Photo App Crashes when I try to go to the project tab...

    All the way through the betas and now with the final release of the Photos App, my app crashes when I try to go to the "projects" tab. When I first started using it, it worked fine. I was able to make a new slide show but when I tried exporting it, the app crashed. Ever since then, the app crashes when I click on the projects tab. It will show the projects and then spin for a second and then crashes and gives me the following....
    Process:               Photos [6083]
    Path:                  /Applications/Photos.app/Contents/MacOS/Photos
    Identifier:            com.apple.Photos
    Version:               1.0 (209.52.0)
    Build Info:            PhotoApp-209052000000000~4
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Photos [6083]
    User ID:               501
    Date/Time:             2015-04-08 18:51:06.975 -0500
    OS Version:            Mac OS X 10.10.3 (14D131)
    Report Version:        11
    Anonymous UUID:        6C8BC001-C4AC-821B-4C01-86ED8BC9AACA
    Time Awake Since Boot: 7800 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes:       0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    Photo Foundation logging:
    2015-04-08 18:38:42.967: error while trying to load video asset for version:x3+rvCmiSOCrcXjpXKCxwA error: Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo=0x6000026e7e80 {NSLocalizedFailureReason=An unknown error occurred (-12894), NSLocalizedDescription=The operation could not be completed, NSURL=file:///Users/Matt/Pictures/Photos%20Library.photoslibrary/Masters/2010/M isc%20Shots/video.mov, NSUnderlyingError=0x60800285e2a0 "The operation couldn’t be completed. (OSStatus error -12894.)"} (+[PAAVSupport _ensureNaturalDurationIsPresentForPlaybackSettings:version:assetURL:error:]:54)
    2015-04-08 18:38:42.968: unabled to load playback settings: <_PACachedEditSession: 0x6080008abbe0> error: Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo=0x6000026e7e80 {NSLocalizedFailureReason=An unknown error occurred (-12894), NSLocalizedDescription=The operation could not be completed, NSURL=file:///Users/Matt/Pictures/Photos%20Library.photoslibrary/Masters/2010/M isc%20Shots/video.mov, NSUnderlyingError=0x60800285e2a0 "The operation couldn’t be completed. (OSStatus error -12894.)"} (-[PAVersionEditSession _videoPlaybackSettings]:561)
    2015-04-08 18:38:42.980: no image provided for RDVersion(0x610000b22760) modelId=5834 uuid=x3+rvCmiSOCrcXjpXKCxwA tableName=RKVersion state=persisted,local (-[PAPreviewWriter _imageForImageStyle:version:imageProxyState:inputImage:inputImageSize:descripti on:render:largePreviewIsEmbedded:canceler:previewMaker:]:214)
    2015-04-08 18:38:44.226: Received changes notification alert: <LiModelChangeGroup: 0x618001a79bc0>  alert flags : Replay Complete (__59-[RKFaceChangesHandler startListeningForChangesFromMarker:]_block_invoke_2:173)
    Crashing on exception: *** -[NSConcreteTextStorage attributesAtIndex:longestEffectiveRange:inRange:]: Range or index out of bounds
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff88e1903c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff9547776e objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff88e18eed +[NSException raise:format:] + 205
    3   UIFoundation                        0x00007fff941faef8 -[NSConcreteTextStorage attributesAtIndex:longestEffectiveRange:inRange:] + 137
    4   OpusKit                             0x000000010e5e9e5c -[OKWidgetTextView _layoutViews] + 1371
    5   OpusKit                             0x000000010e569acd -[OKSettings commitTransaction] + 408
    6   OpusKit                             0x000000010e5ccb16 -[OKWidgetViewProxy applySettings] + 191
    7   OpusKit                             0x000000010e5f2ed2 -[OKPageViewControllerProxy applySettings] + 283
    8   OpusKit                             0x000000010e5f7066 -[OKPageViewControllerProxy prepareForDisplay] + 50
    9   OpusKit                             0x000000010e5ff78d -[OKNavigatorFixedViewControllerProxy prepareForDisplay] + 67
    10  OpusKit                             0x000000010e5738d3 -[OKDocumentViewControllerProxy viewWillAppear:] + 213
    11  OpusKit                             0x000000010e5dcaea -[OKDocumentViewController viewWillAppear:] + 39
    12  AppKit                              0x00007fff87890b85 -[NSViewController _sendViewWillAppear] + 40
    13  AppKit                              0x00007fff87890a16 -[NSViewController _windowWillOrderOnScreen] + 98
    14  AppKit                              0x00007fff877da2ce -[NSView(NSInternal) _windowWillOrderOnScreen] + 67
    15  AppKit                              0x00007fff877da3b0 -[NSView(NSInternal) _windowWillOrderOnScreen] + 293
    16  AppKit                              0x00007fff877d84c1 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1750
    17  AppKit                              0x00007fff877d7897 -[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 829
    18  AppKit                              0x00007fff877d74eb -[NSWindow orderWindow:relativeTo:] + 159
    19  OpusKit                             0x000000010e560d4a -[OKDocumentMovieExporter _setup:] + 1099
    20  OpusKit                             0x000000010e55f7e9 __79-[OKDocumentMovieExporter exportToImageForKeyPath:withSize:andCompletionBlock:]_block_invoke + 38
    21  libdispatch.dylib                   0x00007fff8ec5dc13 _dispatch_client_callout + 8
    22  libdispatch.dylib                   0x00007fff8ec6b04e _dispatch_barrier_sync_f_slow_invoke + 412
    23  libdispatch.dylib                   0x00007fff8ec5dc13 _dispatch_client_callout + 8
    24  libdispatch.dylib                   0x00007fff8ec69cbf _dispatch_main_queue_callback_4CF + 861
    25  CoreFoundation                      0x00007fff88d6c3f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    26  CoreFoundation                      0x00007fff88d2768f __CFRunLoopRun + 2159
    27  CoreFoundation                      0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    28  HIToolbox                           0x00007fff92f3356f RunCurrentEventLoopInMode + 235
    29  HIToolbox                           0x00007fff92f332ea ReceiveNextEventCommon + 431
    30  HIToolbox                           0x00007fff92f3312b _BlockUntilNextEventMatchingListInModeWithFilter + 71
    31  AppKit                              0x00007fff877329bb _DPSNextEvent + 978
    32  AppKit                              0x00007fff87731f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
    33  AppKit                              0x00007fff87727bf3 -[NSApplication run] + 594
    34  AppKit                              0x00007fff876a4354 NSApplicationMain + 1832
    35  libdyld.dylib                       0x00007fff864725c9 start + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit               0x00007fff87a5c610 -[NSApplication _crashOnException:] + 109
    1   com.apple.AppKit               0x00007fff87a5c56b -[NSApplication reportException:] + 140
    2   com.apple.CoreFoundation       0x00007fff88e194ee __handleUncaughtException + 718
    3   libobjc.A.dylib               0x00007fff9547b7cd _objc_terminate() + 94
    4   libc++abi.dylib               0x00007fff86c6f0a1 std::__terminate(void (*)()) + 8
    5   libc++abi.dylib               0x00007fff86c6f113 std::terminate() + 51
    6   libobjc.A.dylib               0x00007fff9547b5ff objc_terminate + 9
    7   libdispatch.dylib             0x00007fff8ec5dc27 _dispatch_client_callout + 28
    8   libdispatch.dylib             0x00007fff8ec6b04e _dispatch_barrier_sync_f_slow_invoke + 412
    9   libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    10  libdispatch.dylib             0x00007fff8ec69cbf _dispatch_main_queue_callback_4CF + 861
    11  com.apple.CoreFoundation       0x00007fff88d6c3f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation       0x00007fff88d2768f __CFRunLoopRun + 2159
    13  com.apple.CoreFoundation       0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    14  com.apple.HIToolbox           0x00007fff92f3356f RunCurrentEventLoopInMode + 235
    15  com.apple.HIToolbox           0x00007fff92f332ea ReceiveNextEventCommon + 431
    16  com.apple.HIToolbox           0x00007fff92f3312b _BlockUntilNextEventMatchingListInModeWithFilter + 71
    17  com.apple.AppKit               0x00007fff877329bb _DPSNextEvent + 978
    18  com.apple.AppKit               0x00007fff87731f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
    19  com.apple.AppKit               0x00007fff87727bf3 -[NSApplication run] + 594
    20  com.apple.AppKit               0x00007fff876a4354 NSApplicationMain + 1832
    21  libdyld.dylib                 0x00007fff864725c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff908e6232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8ec60a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff908e04de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908df64f mach_msg + 55
    2   libclh.dylib                   0x00007fff8b7a0318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff8b1a6563 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff8b7a1119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff908e04de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908df64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff88d27eb4 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff88d2737b __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff877fa66b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 4:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000f320c0 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 5:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000f34000 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 6:: Dispatch queue: IPXSlideshow.updateQueue
    0   com.apple.CoreFoundation       0x00007fff88ccdc8a CFRelease + 10
    1   com.apple.Photos               0x000000010bde2f62 0x10ba64000 + 3665762
    2   com.apple.Photos               0x000000010bbfd02a 0x10ba64000 + 1675306
    3   com.apple.Photos               0x000000010bbfc27b 0x10ba64000 + 1671803
    4   com.apple.Photos               0x000000010bbfcd35 0x10ba64000 + 1674549
    5   com.apple.Photos               0x000000010bd85ca0 0x10ba64000 + 3284128
    6   com.apple.Photos               0x000000010bbf6981 0x10ba64000 + 1649025
    7   com.apple.Photos               0x000000010bd85abb 0x10ba64000 + 3283643
    8   com.apple.Photos               0x000000010bbf5cd5 0x10ba64000 + 1645781
    9   libdispatch.dylib             0x00007fff8ec62323 _dispatch_call_block_and_release + 12
    10  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    11  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    12  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    13  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    14  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    15  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    16  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 7:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x610000752c70 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 8:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x600000f400b0 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libsystem_platform.dylib       0x00007fff92be6c5b _os_semaphore_wait + 16
    2   libdispatch.dylib             0x00007fff8ec67557 _dispatch_barrier_sync_f_slow + 597
    3   com.apple.opusosx.OpusKit     0x000000010e55f70f -[OKDocumentMovieExporter exportToImageForKeyPath:withSize:andCompletionBlock:] + 440
    4   com.apple.Slideshows           0x000000010c35e076 -[OMSlideshow posterImageWithSize:] + 352
    5   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    6   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    10  com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    11  com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    12  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    13  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    14  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    15  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    16  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    17  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    18  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    19  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 9:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000b23520 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e5166 __psynch_mutexwait + 10
    1   com.apple.Photos               0x000000010be8464b 0x10ba64000 + 4326987
    2   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    3   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    4   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    5   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    6   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    7   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    8   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    9   com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    10  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    11  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    12  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    13  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    14  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    15  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    16  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    17  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    18  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    19  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    20  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 11:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x610000752e80 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 12:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x60000093fd60 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 14:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x600000b223a0 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 16:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x600000d58f70 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 17:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x618000938100 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 24:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 25:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 26:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 27:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 28:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 29:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 30:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 31:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 32:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 33:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 34:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 35:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 36:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 37:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 38:
    Thread 39:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 40:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 41:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 42:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 43:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 44:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 45:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86

    If the unit has NEVER been jailbroke, first try a system reset.  It cures many ills and it's quick, easy and harmless...  Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, if you have IOS-7, read this.

  • 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

  • What causes an AIR app crash (non-error type)

    Gidday guys
    Pretty general question, but I'm curious as to what I should be looking for if...
    - I randomly get the Test Movie Terminated message when compiling or running a desktop AIR app from Flash Pro IDE
    - the installed AIR app crashes/terminates randomly from no apparent reason?
    No compiler errors or warnings are generated.
    Cheers

    'The most important thing to notice is the red line. This represents the budget time that you have to keep below on each frame, if you’re to meet the framerate you want to achieve. For example, on a SWF running at 30 frames per second (fps), you have a budget of 33ms per frame (1000ms / 30 frames). In other words, if you spend more than 33ms per frame, your application will start stuttering and skipping frames, which you really don’t want to happen!'
    Does that mean when I'm coding, I should be making sure that functions etc are complete before the frame finishes? ie if my project is 12 fps, a function should never take longer than 83ms to complete?
    no, (and going over budget wouldn't crash flash).  going over budget means flash is not able to maintain the targeted frame rate.  go over budget enough and you'll see your display stutter instead of maintain smooth animation.  that's not relevant to a data app and not relevant to a crash problem.
    you want to check the memory use and see if it is relentlessly increasing as you use your app.  in particular, what's scout tell you when your app crashes.
    My project isn't frame really specific - ie there's no animation or frame reliant graphics in particular. It's a data based app.
    Does it just mean that my display will slow down if I'm jamming more processing in that a frame can handle, and should I be worried about it if my display isn't particularly important?
    no, that's not a problem.

  • IPhone 4S Safari freezes when switching tabs

    Hi.
    Mobile Safari in my iPhone 4S freezes when switching tabs.  This does not happen every time Safari is running, but it happened one too many already.  Safari freezes even if I only have one tab and wanted to create a new one.  The app would usually freeze while doing the switch, tho it also froze just before the tabs switch.  Has anyone experienced the same?  Please help.  Thank you.   

    User troubleshooting after a reset is a restore. First from a backup and if that doesn't help, then as a new device. Remember a restore will delete data from the phone. Make sure you have everything backed up and synced to the computer before attempting the restore. If that does not help, make an appointment with the Apple Genius Bar to check for hardware faults.

  • Ruzzle app crashes when launched on iPad

    Why does my RUZZLE App crash when I try to launch it on my iPad?

    Nobody here knows for sure. Delete the app and reinstall it. Tap and hold down on the app icon until it wiggles and then tap the X to delete it. Tap the home button. Then download it again in the purchased tab of the App Store.
    Or reboot the iPad.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up

  • Help! Every app crashes when interacting with plain text files

    I recently bought a 13" i7 MacBook Air. I love its design and I found OS X Lion unbelievably fast on it, yet I find myself in a very dark situation, now.
    From the Finder to iA Writer, to TextEdit, every single app crashes when working with plain text files. In Finder’s column view I don’t even have to open them: the instant one .txt is selected, Finder crashes.
    Creating a new user account seems to fix the bug for that account, but I just spent one whole day copying files from my old work MacBook (where Lion opened .txt files without a problem) to the new account and losing another entire day of work because of a stupid bug is out of question. Also, I feel it would be a very temporary fix. What if the bug presented itself again? Would I have to create a third, a fourth account, and so on?
    I didn’t use any migration tool because I wanted a very clean installation.
    On top of that, the machine is as App Store–only as one could be. The only “internet” apps I have on it are Chrome (for the occasional Flash video), Movist (I can’t work with Quicktime’s flying controls), and nvALT. I didn’t even had the time to install the Creative Suite on this one. I can’t for the life of me think this is app–related. I suspect it’s some weird OS bug.
    I work in advertising, and I do some work in Adobe’s Creative Suite but *all* my copy is stored in plain text files. I always did it that way so that my files would be future–proof. It is kind of ironic now. So please, if anyone as the slightest idea of how to fix this, please, please, help. I find myself with a brand new computer I can’t use for work.
    Alessandro

    What are the files named?
    Where are they being made? (What folder?)

  • 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...

  • 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.

  • Apple video app crashes when you delete a tv program

    Every time on all my iPads and iPhones iso7 video app crashes when I delete tv program's or movies.

    By "Main Website" I assume you mean via the developer's site.   If this is so, your purchase would need to be taken up directly with the developer.   With good will you may get a refund if the developer can be sure you'd also bought it from the App Store.
    But you say also "with the same ID" ... and you would not need an ID to purchase from the developer.
    A deleted purchase from the App Store can be reinstalled free so you should check your App Sore receipts to see if you have two (which I doubt).

  • Any APP crashes when opening/saving on different locations

    Hi Folks... I'm having a new issue on my mac, which is coming more and more regular...
    The apps crash when I'm trying to:
    1. open a file from the File/Open that pop ups a window for browse the file.
    2. When I'm trying to save the file through the Save As command. The crash mostly occurs when I'm trying to browse to another folder, either been for save or for open a file.
    Apps involved: mostly Photoshop CS5 and Safari, but it happens with other apps too.
    Extra symptom: When the crash occurs, the file gets like corrupted, so each time I try to open/save the file, it crashes the app.
    Solution for the extra symptom: change the name of the file, but problem 1 & 2 starts again (so I have to create a loop of files with different names in order to sort the problem).
    Importance of problem: SUPER HIGH! I'm loosing very important works when this happens, because saving isn't secure and I cannot save as [different versions of the same file] from the app because it's 100% it crashes, so I have to rewrite the file each time I have to save it, which is not good either.
    Things I did:
    1. I already uninstalled and reinstalled Photoshop and cleaned all the files related to it (plists, preferences, etc), so I did a clean install of it and the problem persists.
    2. Already cleaned all the cache files, plist and such from Safari, but the problem persists.
    3. Already ran all the usual maintenance routines and the problem persists.
    I'm hoping to get a clear answer for this issue because I'm wasting lot of time when working, specially in Photoshop.
    Thank you very much for your help, as always!
    Ø3
    Message was edited by: Quantum3

    Update:
    The problem still persists. I have tried with other apps, such as Excel, Mail, Text Edit, etc (you know that also Safari and Photoshop) and the problem is exactly the same... So  the problem doesn't come from the apps.
    Strangely, when doing some automated task in Photoshop (I use to retouch plenty of pics, it's my job) like using the Script Tool located in the File Menu, I have to open a location and browse for the pics I want to automate, just like opening a window from any app, and browsing for a file and it doesn't crash. It¡s exactly the same thing but it doesn't crash.
    Weird...
    Will put here a log file of let say, text edit (it crashed when I selected other than the default directory):
    Process:         TextEdit [4495]
    Path:            /Applications/TextEdit.app/Contents/MacOS/TextEdit
    Identifier:      com.apple.TextEdit
    Version:         1.6 (264)
    Build Info:      TextEdit-2640000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [174]
    Date/Time:       2011-06-21 20:21:06.803 -0300
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          -3432501 sec
    Crashes Since Last Report:           -84
    Per-App Interval Since Last Report:  12 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      02265271-FA7C-4588-85F1-CA41DC72E164
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000013183f000
    Crashed Thread:  12
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff8406029a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8406090d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff87d98932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff87d97dbf CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff8354a7ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff8354a5f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff8354a4ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff847e8e64 _DPSNextEvent + 718
    8   com.apple.AppKit                        0x00007fff847e87a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.AppKit                        0x00007fff847ae48b -[NSApplication run] + 395
    10  com.apple.AppKit                        0x00007fff847a71a8 NSApplicationMain + 364
    11  com.apple.TextEdit                      0x0000000100000fb8 0x100000000 + 4024
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8407912a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8407affd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8407acd4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8407a7fe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8407a128 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff8406029a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8406090d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff87d98932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff87d97dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation                0x00007fff87d97b46 CFRunLoopRun + 70
    5   com.apple.DesktopServices               0x00007fff873074d2 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 514
    6   ...ple.CoreServices.CarbonCore          0x00007fff869fc335 PrivateMPEntryPoint + 63
    7   libSystem.B.dylib                       0x00007fff840994f6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff840993a9 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 10:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff840a3e52 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff87dba498 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff840994f6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff840993a9 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff8409af8a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8409ae19 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff8409ad83 usleep + 57
    3   com.apple.AppKit                        0x00007fff84934361 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation                    0x00007fff88153f29 __NSThread__main__ + 1429
    5   libSystem.B.dylib                       0x00007fff840994f6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff840993a9 thread_start + 13
    Thread 12 Crashed:
    0   com.apple.ImageIO.framework             0x00007fff878f47fb ImageIO_RemoveExtaChannels16Bit + 55
    1   com.apple.ImageIO.framework             0x00007fff8780ddb8 copyImageBlockSetTIFF + 3095
    2   com.apple.ImageIO.framework             0x00007fff878066c8 ImageProviderCopyImageBlockSetCallback + 189
    3   com.apple.CoreGraphics                  0x00007fff8539e282 img_blocks_create + 356
    4   com.apple.CoreGraphics                  0x00007fff8539e0f5 img_blocks_extent + 96
    5   com.apple.CoreGraphics                  0x00007fff85429b1c img_interpolate_extent + 137
    6   com.apple.CoreGraphics                  0x00007fff85368cc6 img_data_lock + 8480
    7   com.apple.CoreGraphics                  0x00007fff85365eaf CGSImageDataLock + 212
    8   libRIP.A.dylib                          0x00007fff833c421f ripc_AcquireImage + 2431
    9   libRIP.A.dylib                          0x00007fff833c2aa3 ripc_DrawImage + 1218
    10  com.apple.CoreGraphics                  0x00007fff85380cda CGContextDrawImage + 446
    11  com.apple.ImageIO.framework             0x00007fff878601e7 CGImageCreateCopyWithParametersNew + 1757
    12  com.apple.ImageIO.framework             0x00007fff8785ef6c CGImageSourceCreateThumbnailAtIndex + 3236
    13  com.apple.AppKit                        0x00007fff84c051a8 -[NSNavFBENode _quickLookImageWithMaxSize:isThumbnail:] + 865
    14  com.apple.AppKit                        0x00007fff84c0f731 +[NSNavNodePreviewHelper _subthreadComputePreviewThumbnailImages] + 380
    15  com.apple.Foundation                    0x00007fff88153f29 __NSThread__main__ + 1429
    16  libSystem.B.dylib                       0x00007fff840994f6 _pthread_start + 331
    17  libSystem.B.dylib                       0x00007fff840993a9 thread_start + 13
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000008035  rbx: 0x000000011704da00  rcx: 0x0000000000000008  rdx: 0x0000000000000001
      rdi: 0x000000011af83030  rsi: 0x000000013183f000  rbp: 0x000000011af82e00  rsp: 0x000000011af82dd8
       r8: 0x0000000117052654   r9: 0x00000000000007a2  r10: 0x0000000000000b10  r11: 0x00000001318375e0
      r12: 0x0000000000000000  r13: 0x0000000000000001  r14: 0x0000000000006ea0  r15: 0x0000000000006ea0
      rip: 0x00007fff878f47fb  rfl: 0x0000000000010202  cr2: 0x000000013183f000
    Binary Images:
           0x100000000 -        0x100019fff  com.apple.TextEdit 1.6 (264) <8D896028-3313-84D8-1FC9-A4412739AEF4> /Applications/TextEdit.app/Contents/MacOS/TextEdit
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8000cff7  com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8000d000 -     0x7fff80038ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff80043000 -     0x7fff8005eff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8006d000 -     0x7fff80073ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff80074000 -     0x7fff8007afff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C863C133-EA3E-5403-FC44-FDC9F236DC98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8007b000 -     0x7fff8007efff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8007f000 -     0x7fff800c6fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8024b000 -     0x7fff8036cfe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff80497000 -     0x7fff804f9fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8053e000 -     0x7fff8054fff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff80550000 -     0x7fff80622fe7  com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff80623000 -     0x7fff80628fff  libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8062b000 -     0x7fff806edfef  libFontParser.dylib ??? (???) <363E2A8A-CEFE-9A74-E677-C240B27A4FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff806ee000 -     0x7fff807f8ff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff807f9000 -     0x7fff80834fff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8083b000 -     0x7fff8084cfff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff8084d000 -     0x7fff8086efff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff80878000 -     0x7fff80887fff  com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff80888000 -     0x7fff808cdfff  com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff808ce000 -     0x7fff808d4ff7  com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8097c000 -     0x7fff809c4ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff809c5000 -     0x7fff80a11fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff80a5d000 -     0x7fff80a5eff7  com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80a5f000 -     0x7fff80dfcfe7  com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff80dfd000 -     0x7fff80eb2fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff81132000 -     0x7fff813bafef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff813bb000 -     0x7fff813defff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff813df000 -     0x7fff81649fef  com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff81849000 -     0x7fff8184fff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff81850000 -     0x7fff818b0fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8190d000 -     0x7fff81923fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff81924000 -     0x7fff81973ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff81974000 -     0x7fff81976fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff819d0000 -     0x7fff819d0ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff819d1000 -     0x7fff81a04fff  libTrueTypeScaler.dylib ??? (???) <6EFBF3B7-E4D5-E6AE-5A7D-22F37E288737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff81d49000 -     0x7fff81f84fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff81f85000 -     0x7fff81feffe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff82097000 -     0x7fff82126fff  com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff82127000 -     0x7fff8224fff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8226e000 -     0x7fff82385fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff82386000 -     0x7fff82393fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff823ec000 -     0x7fff823f0ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff823f1000 -     0x7fff82406ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff82407000 -     0x7fff8242dfe7  libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8321c000 -     0x7fff83271ff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff83272000 -     0x7fff832f1fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff832f2000 -     0x7fff833b3fef  com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff833b4000 -     0x7fff833b6fff  libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff833b7000 -     0x7fff833faff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff833fb000 -     0x7fff834abfff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff834ac000 -     0x7fff834fbfef  libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff834fc000 -     0x7fff834fcff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff834fd000 -     0x7fff8350ffe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff83510000 -     0x7fff8351bff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8351c000 -     0x7fff8381afff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8381b000 -     0x7fff83820ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff83821000 -     0x7fff83846ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83847000 -     0x7fff8397cff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8397d000 -     0x7fff83b6dfef  com.apple.JavaScriptCore 6533.20 (6533.20.20) <0AA8B101-C02C-0858-84BC-4E4D397E0231> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff83b6e000 -     0x7fff83b9ffff  libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83ba0000 -     0x7fff83c11ff7  com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff83d28000 -     0x7fff83e05fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff83fbe000 -     0x7fff83fbeff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff83fbf000 -     0x7fff83fc0ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff83fc1000 -     0x7fff83fcfff7  libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
        0x7fff83fd0000 -     0x7fff84011fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8405e000 -     0x7fff8405eff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8405f000 -     0x7fff84220fff  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
        0x7fff84406000 -     0x7fff845c4fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
        0x7fff845c5000 -     0x7fff84703fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff84704000 -     0x7fff847a4fff  com.apple.LaunchServices 362.2 (362.2) <A8EDC37C-1D40-5ED0-49BE-90EF110A6B3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff847a5000 -     0x7fff8519bfff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff85277000 -     0x7fff852b8fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff852b9000 -     0x7fff85325ff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff85326000 -     0x7fff85a2306f  com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff85a24000 -     0x7fff85a2bfff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85a2c000 -     0x7fff85a73ff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff85b9a000 -     0x7fff85c57fff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff85c58000 -     0x7fff86462fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff86463000 -     0x7fff864e0fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8655f000 -     0x7fff865ebfef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff866a4000 -     0x7fff8675afff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
        0x7fff86785000 -     0x7fff8681fff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff86848000 -     0x7fff8684bff7  libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff86918000 -     0x7fff86961fef  libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff86962000 -     0x7fff86963fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff86964000 -     0x7fff86981ff7  libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff86992000 -     0x7fff86992ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86993000 -     0x7fff86993ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff869f5000 -     0x7fff86d29fff  com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff86d2a000 -     0x7fff86d39fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff86d3a000 -     0x7fff86e53fef  libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff86e54000 -     0x7fff87297fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff87298000 -     0x7fff87299fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff8729a000 -     0x7fff8729aff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8729b000 -     0x7fff8729bff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8729c000 -     0x7fff872e6ff7  com.apple.Metadata 10.6.3 (507.15) <5170FCE0-ED6C-2E3E-AB28-1DDE3F628FC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff872e7000 -     0x7fff872eaff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff872eb000 -     0x7fff87304fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff87305000 -     0x7fff873ebfef  com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff873ec000 -     0x7fff874a5fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff874d7000 -     0x7fff874f7ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff87560000 -     0x7fff875a4fe7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <F4ED3329-1A86-EB10-CFC2-999D8699B5E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff875e5000 -     0x7fff875fbfe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8761f000 -     0x7fff87633fff  libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8777c000 -     0x7fff877fefff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff877ff000 -     0x7fff879b7fef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff87abf000 -     0x7fff87b00ff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff87b01000 -     0x7fff87b17fff  com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff87b90000 -     0x7fff87bf8fff  com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff87c3e000 -     0x7fff87c90ff7  com.apple.HIServices 1.8.2 (???) <7C91D07D-FA20-0882-632F-0CAE4FAC2B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87c91000 -     0x7fff87cc0ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff87cc1000 -     0x7fff87d3fff7  com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff87d4c000 -     0x7fff87ec3fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff880c5000 -     0x7fff88102ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff88103000 -     0x7fff88108fff  libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff88109000 -     0x7fff88142ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff88143000 -     0x7fff883c6fe7  com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff883c7000 -     0x7fff88457fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff88466000 -     0x7fff885d5fe7  com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff88614000 -     0x7fff88628ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff88629000 -     0x7fff88651fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff88693000 -     0x7fff88adbfe7  com.apple.RawCamera.bundle 3.7.0 (569) <E3794272-AE0D-8D35-3EFB-CBE4048BEB0D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff88adc000 -     0x7fff88b61ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff88b62000 -     0x7fff88b66ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff88b67000 -     0x7fff88ba0fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
        0x7fff88ba1000 -     0x7fff890a5fe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    Model: MacPro3,1, BootROM MP31.006C.B05, 8 processors, Quad-Core Intel Xeon, 2.8 GHz, 8 GB, SMC 1.25f4
    Graphics: NVIDIA GeForce 8800 GT, NVIDIA GeForce 8800 GT, PCIe, 512 MB
    Memory Module: global_name
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 8800 GT, Display, Slot-1
    Serial ATA Device: WDC WD3200AAJS-41VWA0, 298,09 GB
    Serial ATA Device: WDC WD10EACS-00ZJB0, 931,51 GB
    Serial ATA Device: Maxtor 6B300S0, 279,48 GB
    Parallel ATA Device: OPTIARC DVD RW AD-7170A
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x911b, 0xfd300000
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd330000
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0221, 0xfd332000
    USB Device: Apple Cinema Display, 0x05ac  (Apple Inc.), 0x921b, 0xfd320000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x5d200000
    USB Device: Datacolor Spyder3, 0x085c, 0x0300, 0x5d100000
    USB Device: PTK-640, 0x056a  (WACOM Co., Ltd.), 0x00b9, 0x3d200000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown
    Ø3

Maybe you are looking for

  • EJB JAR building by ANT problem

    I have this task in my build file: [code] <target name="build"      depends="compile">         <ejbjar srcdir="$"           descriptordir="META-INF"           destdir="$"           >      </ejbjar> </target>  [/code] which is generating this error me

  • BACKUP THROUGH DB13

    Hi Gurus ,                  In DB13 T-code , what is the difference between the Full Database online + redolog backup and Whole database online + redolog backup ? Kindly tell which type the best one to take backup daily . Regards Selvan

  • ORACLE TYPE 4 DRIVER WITH SUN ONE(IPLANET) 7.0

    I HAD PLACED THE CLASSES12.ZIP IN SEVER INSTANCE /LIB FOLDER. THIS IS MY SERVER.XML FILE .. <jdbc-resource enabled="true" pool-name="jdbc/OCSACSConnectionPool" jndi-name="testjndi"/> <mail-resource store-protocol="imap" store-protocol-class="com.sun.

  • Need help with FireFox Adobe player

    On FireFox, I can't get a player window to appear. on Internet Explorer, the window appears, and plays perfectly, but not on FireFox. I'm using Ripway.com to host music files, and I put a link to the MP3 on a profile page on GaiaOnline... it loads a

  • ODS QM status

    I was trying to perform initialization on ODS. Even though the ODS is configured to set the QM status green automatically, the load gave me an error saying QM STATUS MUST BE SET TO GREEN BEFORE IT IS ACTIVATED. What can I do. Thanks in advance for th