CrystalReportViewer in CR2008 - Parameter panel - apply button

Hi,
I'm working on a .net desktop application, that uses CR embedded server as a reports engine.
We just migrated from CRXIR2 embedded server  to CR2008 Embedded server in our new release.
We want to use the new functionality of dynamic parameters in CR2008 in our application,
In our client side, we wrapped the crystalreportviewer control and hid the navigation buttons and toolbars, and replaced them with our own. We also have our own parameter pannel.
I  would like to hide the viewer's parameter panel in our client side, and add an "Apply" button to our custom parameter panel, that will apply the parameter values without refreshing the report. This is meant to keep the same look and feel with the previous version of our product.
I found how to hide the parameter panel:
this.reportViewer.MainCrystalViewer.ShowParameterPanelButton = false;\\MainCrystalViewer is crystalReportViewer object
I didn't find any method that applyes the parameters.
Please advise.
Thanks
Dana

I think I found how to do it:
public void ApplyParameters(Hashtable parameters)
            ReportDocument doc = ((ReportDocument) m_viewer.MainCrystalViewer.ReportSource);
            foreach (string param in parameters.Keys)
                    doc.SetParameterValue(param, parameters[param]);
            m_viewer.MainCrystalViewer.ReportSource = doc;
Still testing this method.

Similar Messages

  • Advanced Dialog button on Parameter Panel?

    Hello,
    I was reading the pdf version of the online help file dated 5/16/11. The bottom of page 70 and page 471 discusses an Advanced Dialog button on the parameter panel. I opened a report that has dynamic cascading prompts, but did not see this button. I'm hoping someone can tell me where this button is or what options on the create parameter field need to be selected to enable this button.
    Thank you
    Tracy
    Q15

    Don Williams wrote:
    Hi Tracy, Remember to state the version of CR you are referencing.
    >
    > I assume you are using CR 2011. It states when depending on the type of Parameter the Advanced option shows up. I think it's the same as the 3rd box, Value Options, but I'll have to check with the PM. Most of our Dialog boxes are dynamic so if the option is not available or supported with the type you have selected or using the various options are not shown.
    >
    > It could simply be someone used that term pre-coding ( before it was defined for the developers to label ) when the Doc was written and the change never got back to the Doc team.
    >
    > Thanks for finding this, it may get changed or I'll get more details put into the Doc.
    > Don
    Oops Don, yes, I am testing CR2011. I'm sorry for not remembering to put that in the message.
    It caught my attention because it wasn't a feature that I was familiar with.
    At least now you can let the technical writers know that there is at least 1 person that actually reads the user guides - LOL
    Thank you
    Tracy

  • CR2008 . Net App - Parameters and Parameter Panel Not working

    Post Author: cehowski
    CA Forum: Crystal Reports
    I have a CR2008 report with one parameter, which works fine when running it in CR2008.  I have an app developed in VS2005 (which should have been updated when I installed Crystal and re-built the app).  The new "Sort Labels" work fine, so the Viewer should be OK (the right version).  When I open the report in the app, the parameter does not modify the report in anyway, whether a new value is added when it first opens, or I try to change the value using the Parameter panel after it is opened.  I've tried Saving with and without data, discarding saved data on refresh, and one or two other properties that seemed like they might have an effect.  None of them did.  Everything works fine within CR2008 - it is only in VS2005, using the Version 12 viewer, that the parameter does not work (all records are returned by the way).
    Any ideas will be appreciated.
    John

    Carolyn,
    Firewall is off. No antivirus. Switching Little snitch on an off makes no difference.
    Just tried ot connect to the App Store again, and it says no connection, connect anyway.....I click connect, and the entire window flashes balck and white and I can see data traffic to and from the app via little snitch.....the black screen is it trying to load the page but not getting through.
    Strange.
    Dominic

  • Error refreshing report from parameter panel

    I'm using Crystal Reports 2008 SP3 with .Net 4.0 in visual studio 2010
    I'm using the following components
    CrystalDecisions.CrystalReports.Engine   12.0.2000.0
    CrystalDecisions.Enterprise.Framework   12.0.1000.0
    CrystalDecisions.Enterprise.InfoStore       12.0.1000.0
    CrystalDecisions.Shared                           12.0.2000.0
    CrystalDecisions.Windows.Forms            12.0.2000.0
    I have embedded the ViewerComponent in a windows form, everything works fine, loading report, exporting, printing, refreshing.
    However, I need to allow the user to refresh the report by using the parameter panel, because once the report has been loaded, some parameters are not allowed to be changed by a user. So I try to accomplish this by using the parameter optional function and show in parameter panel (read only/ editable / Don't show)
    However, when I try to edit a parameter in the parameter panel, I get to see the regular refresh dialog (this isn't a big problem...) however, when I do not enter any values, or just a few parameters, or all parameters, the viewer crashes with the following error:
    Unable to cast object of type 'CrystalDecisions.Shared.ParameterField' to type 'CrystalDecisions.Windows.Forms.ParameterFieldInfo'.
       at CrystalDecisions.Windows.Forms.ParameterFieldsInfos.get_Item(Int32 index)
       at CrystalDecisions.Windows.Forms.InteractiveParameterPanel.ShowParameters()
       at CrystalDecisions.Windows.Forms.CrystalReportViewer._ipPanel_ApplyButtonClicked(Object sender, EventArgs e)
       at CrystalDecisions.Windows.Forms.InteractiveParameterPanel.HandleApply()
       at CrystalDecisions.Windows.Forms.InteractiveParameterPanel.toolBar_ButtonClick(Object sender, ToolBarButtonClickEventArgs e)
       at System.Windows.Forms.ToolBar.OnButtonClick(ToolBarButtonClickEventArgs e)
       at System.Windows.Forms.ToolBar.WmReflectCommand(Message& m)
       at System.Windows.Forms.ToolBar.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.UnsafeNativeMethods.SendMessage(HandleRef hWnd, Int32 msg, IntPtr wParam, IntPtr lParam)
       at System.Windows.Forms.Control.SendMessage(Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.Control.ReflectMessageInternal(IntPtr hWnd, Message& m)
       at System.Windows.Forms.Control.WmCommand(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.UserControl.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.UnsafeNativeMethods.CallWindowProc(IntPtr wndProc, IntPtr hWnd, Int32 msg, IntPtr wParam, IntPtr lParam)
       at System.Windows.Forms.NativeWindow.DefWndProc(Message& m)
       at System.Windows.Forms.Control.DefWndProc(Message& m)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ToolBar.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
       at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
       at System.Windows.Threading.Dispatcher.Run()
       at System.Windows.Application.RunDispatcher(Object ignore)
       at System.Windows.Application.RunInternal(Window window)
       at System.Windows.Application.Run(Window window)
       at System.Windows.Application.Run()
    Does anyone knows what goes wrong or what I'm doing wrong?
    Thanks in advance

    Thanks for your response.
    However, your not really right about that. I have integrated the viewer component into a WindowsFormHost, so it will just operate like a normal Windows Forms applcation.
    However, I'm wondering what is causing the Exception. It is trying to cast a ParameterField, can I override this?

  • Apply Button not working in Report viewer web part in SP 2013

    I have a SSRS report which gets values from SSAS cube, with more than 10 parameters defined in the report. All the parameters are multi-select parameters and the report is deployed in SharePoint 2013 integrated mode.
    I created a web page and integrated the SSRS report inside a report viewer web part. All the report parameters are from Performance Point filters. All the PPS filters are connected to SSRS report.
    The problem is each and every time the parameter is re-selected(changed) the whole page gets refreshed.
    So I added a Apply button, so that the report gets refreshed only after clicking the Apply button. Even after adding the apply button the report gets refreshed on each parameter change.
    Can you please let me know why the apply button is not working and possible solutions to overcome this.

    Hi,
    There's no much similar issues I have found.
    I suggest you consider opening a support case with us, provided the sample code for reproduce and version of SQL Servr. You may visit this link to see the various support options that are available to better meet your needs: 
    http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone.

  • Apply button not working In Sharepoint Integrated mode

    Env:- SSRS 2008 R2 with Sharepoint 2010
    For some report users, the Apply button is not working (SharePoint integrated mode).
    After they select all the parameters in report and hit apply button , the page remain blanks and nothing happens.
    This issue is experienced by certain user only.
    When i checked the ULS log i found this during that duration
    Process                                     Category                          
    Category          EventID
    ReportingServicesService.Exe    Sharepoint Foundation      Database              4ohq
    Site Enumeration Stack:   
    at Microsoft.SharePoint.Administration.SPSiteCollection.get_Count()    
    at Microsoft.ReportingServices.SharePoint.ObjectModel.RSSPBaseCollection.get_Count()    
    at Microsoft.ReportingServices.SharePoint.Server.SharePointPropertyProvider.GetProperty(String propertyName)    
    at Microsoft.ReportingServices.SharePoint.Server.SharePointPropertyProvider.GetSystemUrl()    
    at Microsoft.ReportingServices.Library.GetSystemPropertiesAction.PerformActionNow()   
     at Microsoft.ReportingServices.Library.RSSoapAction`1.Execute()   
     at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.GetSystemProperties(Property[] Properties, Property[]& Values)   
     at Microsoft.ReportingServices.WebServer.ReportingServiceSPImpl.GetSystemProperties(Property[] Properties, Property[]& Values)  
    at Microsoft.ReportingServices.WebServer.ReportingService2010Impl.GetSystemProperties(Property[] Properties, Property[]& Values)    
    at Microsoft.ReportingServices.WebServer.ReportingService2010.GetSystemProperties(Property[] Properties, Property[]& Values)    
    at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)    
    at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)   
     at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)  
    at System.Web.Services.Protocols.LogicalMethodInfo.Invoke(Object target, Object[] values)    
    at System.Web.Services.Protocols.WebServiceHandler.Invoke()    
    at System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()   
     at System.Web.Services.Protocols.SyncSessionlessHandler.ProcessRequest(HttpContext context)    
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()   
     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)    
    at System.Web.HttpApplication.ApplicationStepManager.ResumeSteps(Exception error)    
    at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)   
     at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)    
    at System.Web.HttpRuntime.ProcessRequestNoDemand(HttpWorkerRequest wr)   
     at System.Web.HttpRuntime.ProcessRequest(HttpWorkerRequest wr)    
    at ReportingServicesHttpRuntime.RsHttpRuntime.ProcessRequest(IRsHttpPipeline rsHttpPipeline) 
    Can somebody please help on this.
    Thanks,
    Sandeep
    ~~ Mark it as Answer if you find it correct~~

    Hi Sandeep,
    Thanks for your feedback.
    I haven’t find any documentation illustrate this limitation, it’s just my experience,  I have a report which contains a muti-value parameter, it contains 500 value items and the length of each value is equal or greate than 10 characters, when I select
    all parameter values, there is no response when I click the apply button, however, when I only select several items in it, the report showing fine, I could not sure your issue is the same with mine, it’s just my conclusion. If your issure is not related to
    the length of the selected parameter, just occures to certain users even they selected with the same parameter values with the other users who run fine with this report, then this reply should not adapt to your scencario, it is so unbeliveable it is not working
    only for certains users, I have not experience this issue before, and the information you provided is so limited that I could not address the root cause of your issue.
    Thanks,
    Bill Lu
    Bill Lu
    TechNet Community Support

  • Parametervalues not filled in parameter panel after first time refresh

    Hi,
    I have made an Windows.Forms application in VS2008, and when I hit the refresh button for the first time  and the Parameter panels pops up I want the default parameter values to be visible in the fields of the panel.
    Does someone have an idea how to do this?
    My sourcecode looks like this:
        ''' <summary>
        ''' </summary>
        ''' <param name="sender"></param>
        ''' <param name="e"></param>
        ''' <remarks></remarks>
        Private Sub MainForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim param As New ParameterValues
            param.AddValue("NL")
            If Not IO.File.Exists(xmlDataSource) Then
                Throw (New Exception("Unable to locate datasource file:" & vbCrLf & xmlDataSource))
            End If
            'Fill DataSet with xml data
            tempDataSet.ReadXml(xmlDataSource)
            mailDataSet.Tables(0).Merge(tempDataSet.Tables(0))
            'Set Report DataSource
            rpt.SetDataSource(mailDataSet.Tables(0))
            rpt.DataDefinition.ParameterFields("Taal").ApplyCurrentValues(param)
            crViewer.ReportSource = rpt
            crViewer.ShowGroupTreeButton = False
            crViewer.ShowParameterPanelButton = False
            crViewer.ShowRefreshButton = False
        End Sub
        ''' <summary>
        ''' </summary>
        ''' <param name="sender"></param>
        ''' <param name="e"></param>
        ''' <remarks></remarks>
        Private Sub MainForm_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
            If rpt.HasSavedData Then
                rpt.Dispose()
            End If
        End Sub
    gr.
    Hans
    Edited by: Hans van Toorn on Jan 27, 2009 10:45 AM
    Edited by: Hans van Toorn on Jan 27, 2009 10:45 AM

    Try something like this.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    namespace cr12_add_default_values
        public partial class Form1 : Form
            private ReportDocument boReportDocument;
            public Form1()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
                boReportDocument = new ReportDocument();
                boReportDocument.Load(Application.StartupPath + "\\..\\..\\CrystalReport2.rpt");
                // Parameter code
                ParameterField boParameterField;
                ParameterDiscreteValue boParameterDiscreteValue;
                // Add default values to parameter1
                boParameterField = boReportDocument.ParameterFields["parameter1"];
                boParameterDiscreteValue = new ParameterDiscreteValue();
                boParameterDiscreteValue.Value = "value 1";
                boParameterField.DefaultValues.Add(boParameterDiscreteValue);
                boParameterDiscreteValue = new ParameterDiscreteValue();
                boParameterDiscreteValue.Value = "value 2";
                boParameterField.DefaultValues.Add(boParameterDiscreteValue);
                boParameterDiscreteValue = new ParameterDiscreteValue();
                boParameterDiscreteValue.Value = "value 3";
                boParameterField.DefaultValues.Add(boParameterDiscreteValue);
                // Add default values to parameter2
                boParameterField = boReportDocument.ParameterFields["parameter2"];
                boParameterDiscreteValue = new ParameterDiscreteValue();
                boParameterDiscreteValue.Value = 10;
                boParameterField.DefaultValues.Add(boParameterDiscreteValue);
                boParameterDiscreteValue = new ParameterDiscreteValue();
                boParameterDiscreteValue.Value = 20;
                boParameterField.DefaultValues.Add(boParameterDiscreteValue);
                boParameterDiscreteValue = new ParameterDiscreteValue();
                boParameterDiscreteValue.Value = 30;
                boParameterField.DefaultValues.Add(boParameterDiscreteValue);
                crystalReportViewer1.ReportSource = boReportDocument;

  • Can't change parameters that are not shown on initial parameter panel

    I have a Crystal Report that is based on an Oracle Stored Procedure. This was created using Crystal Reports 2008, and it is published on a Business Objects 3.1 environment.
    There are actually 7 parameters in the stored procedure, of which only 2 require the user to select. When the report is opened the user is asked for a date and a type to be evaluated. The report opens for a specific location, and the data associated is returned. When the WebElements submit button is hit it passes these 3 pieces of information, along with original information, new information, reason and user passing information. All of this is functioning.
    The issue is when I publish the report. I set the location and do not pass it along. What I need is for the information the user does not enter to not appear on the input parameters in InfoView. I tried setting them as nulls initially, and not showing them on the parameter panel. Once these were set I was not able to change them on the second pass (with use of the submit button). Next I set them to specific values which the stored procedure looks for. That way I set them on the CMC and do not pass them. Once again this locks the parameters and I can not change them on second pass of the report. If I show the parameters and populate them on first pass, they can be changed on second pass.
    Is there a setting in Crystal Reports I need to set to allow the parameters to not show on the startup parameter panel and yet still be changed?
    Thanks

    Hello Scott,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Navigation Panel Pages button not displaying thumbnail pages

    Version of Acrobat = Standard 8.0.0
    OS = Win XP SP2
    Networked Dell Optiplex 620
    61.6GB Free disk space
    No error messages
    The Navigation Panel Pages button will not display pages in thumbnail format.
    When clicked the highlight around the button icon changes from a square with rounded corners, to just rounded corners on the left of the highlight. The right hand side of the highlight is cut off straight as if by the thumbnail panel that isnt visible.
    This behaviour is also repeated on the Bookmarks and Signatures buttons in the navigation Panel as well.
    Fiddling around with all the navigation panel settings or the document settings I can find has not made the thumbnail pages reappear.
    I havent been able to access the Updates section of the Adobe website today to apply any relevant updates.
    Cheers.
    Adam Crossingham
    Systems Support Analyst
    Heritage Managing Agency Limited

    Just in case, I would go through the updates to get AA8.1.2 and check if that was a bug in 8.0.0.

  • Where is the parameter panel on the embedded Crystal Report preview in Visu

    Where is the parameter panel on the embedded Crystal Report preview in Visual Studio?
    I found a tweet on google about this.. but the link is invalid.. and I could not find the article on SDN.
    KB #1486469 - Where is the parameter panel on the embedded Crystal Report preview in Visual Studio? http://tinyurl.com/22thlcg
    How do I the show parameter dialog in either WPF or Winforms viewer of Visual Studio 2010.
    Parameters are not even visible in the Parameters Side panel. It is empty too..
    I see two classes ParameterPrompting and ParameterPrompt both, on initialization throws exception.. even to manually invoke them...
    Is it permanently removed?

    Hello,
    Seems like a reported Bug.
    Please check:
    Re: CRVS2010 - Hide Group Tree and Parameter Panel
    A possible woraround but you need to change as per your need:
    CRVS 2010 BETA - WPF Viewer - How to hide SidePanel?
    Hope it helps.
    Thanks.

  • Crystal Reports 2008 parameter panel discrepancy.

    Hi,
    I have a report designed using Crystal Reports 2008. The report has a dynamic parameter called Location which is populated from a table. It is a Value - Description pair so it is:
    Value = LocID
    Descripition = LocationName.
    The Show on Viewer(Panel) attribute is set to Editable.
    The Prompt with Description Only attribute is set to true.
    In the Crystal Reports stand-alone Designer everything works fine. It prompts with the Description. After making a selection, the Parameter Panel shows the selected items(the Description, NOT the value) correctly. This is the desired behavior.
    But  when the report is viewed in the Crystal Reports Viewer that comes with .NET 2008 the Parameter panel shows the Value, which is LocID and not the description which is LocationName. This is NOT very useful.
    I have tried other third party Crystal Reports viewers as well. They all exhbit the same discrepancy.
    How can this be resolved?
    Any help is greatly appreciated.
    Thanks in advance.
    - Rajan.

    Hi Don,
    Thank you for your response. The assemblies and their versions are as follows;
    CrystalDecisions.CrystalReports.Engine - 12.0.2000.0
    CrystalDecisions.Enterprise.Framework - 12.0.1100.0
    CrystalDecisions.Shared                         - 12.0.2000.0
    CrystalDecisions.Windows.Forms          - 12.0.2000.0
    Thanks,
    - Rajan.

  • ITunes crashing during manual sync/update requiring use of "Apply" button.

    My iTunes will sync new music just fine via the "Recently Added" smart playlist (to my 16GB iPod Nano Touch), but anything else I do that requires me to lock in changes by hitting the "Apply" button immediately locks up iTunes. If I try to manually select a playlist to add and hit "Apply", it crashes.
    Date/Time:       2012-03-21 08:30:59 -0500
    OS Version:      10.7.3 (Build 11D50b)
    Architecture:    x86_64
    Report Version:  9
    Command:         iTunes
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Version:         10.6 (10.6)
    Build Version:   1
    Project Name:    iTunes
    Source Version:  10604001
    Parent:          launchd [129]
    PID:             62048
    Event:           hang
    Duration:        3.04s
    Steps:           32 (100ms sampling interval)
    Pageins:         5
    Pageouts:        0
    Process:         iTunes [62048] (zombie)
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Architecture:    x86_64
    UID:             501
      Thread 0x16976d     DispatchQueue 1
      User stack:
        31 ??? (in iTunes) [0x105a5ccc8]
          31 ??? (in iTunes) [0x105a5ce88]
            31 -[NSApplication run] + 555 (in AppKit) [0x7fff90ffd1f2]
              31 ??? (in iTunes) [0x105f5c51b]
                31 -[NSApplication sendEvent:] + 5593 (in AppKit) [0x7fff9106716d]
                  31 ??? (in iTunes) [0x105b826f8]
                    31 -[NSWindow sendEvent:] + 6504 (in AppKit) [0x7fff910ce7a6]
                      31 forwardMethod + 129 (in AppKit) [0x7fff910d4302]
                        31 -[NSObject performSelector:withObject:] + 61 (in CoreFoundation) [0x7fff88d8275d]
                          31 forwardMethod + 129 (in AppKit) [0x7fff910d4302]
                            31 -[NSObject performSelector:withObject:] + 61 (in CoreFoundation) [0x7fff88d8275d]
                              31 ??? (in iTunes) [0x105b863b6]
                                31 ??? (in iTunes) [0x105b8644a]
                                  31 ??? (in iTunes) [0x105b865d9]
                                    31 ??? (in iTunes) [0x105b8665c]
                                      31 ??? (in iTunes) [0x105f69a80]
                                        31 ??? (in iTunes) [0x105f72a52]
                                          31 ??? (in iTunes) [0x105d60697]
                                            31 ??? (in iTunes) [0x105d572b3]
                                              31 ??? (in iTunes) [0x105ddc36c]
                                                31 ??? (in iTunes) [0x105dc10d0]
                                                  31 ??? (in iTunes) [0x105dc5ebd]
                                                    31 ??? (in iTunes) [0x105dc5690]
                                                      31 ??? (in iTunes) [0x105dc4cd6]
                                                        31 ??? (in iTunes) [0x105dbb095]
                                                          31 ??? (in iTunes) [0x105a884e8]
                                                            31 ??? (in iTunes) [0x105a88551]
                                                              31 ??? (in iTunes) [0x105dcd542]
                                                                30 ??? (in iTunes) [0x105dc1255]
                                                                  19 ??? (in iTunes) [0x105a84d91]
                                                                    9 ??? (in iTunes) [0x105a84f99]
                                                                      6 pthread_mutex_unlock + 268 (in libsystem_c.dylib) [0x7fff90ce46ab]
                                                                        3 OSAtomicCompareAndSwap64Barrier$VARIANT$mp + 8 (in libsystem_c.dylib) [0x7fff90d2b54c]
                                                                        1 __mtx_droplock + 41 (in libsystem_c.dylib) [0x7fff90ce42eb]
                                                                        1 __mtx_droplock + 692 (in libsystem_c.dylib) [0x7fff90ce4576]
                                                                        1 __mtx_droplock + 263 (in libsystem_c.dylib) [0x7fff90ce43c9]
                                                                      1 ??? (in iTunes) [0x105a5d994]
                                                                      1 pthread_mutex_unlock + 6 (in libsystem_c.dylib) [0x7fff90ce45a5]
                                                                      1 pthread_mutex_unlock + 432 (in libsystem_c.dylib) [0x7fff90ce474f]
                                                                    4 ??? (in iTunes) [0x105a84fd4]
                                                                      3 OSAtomicCompareAndSwap64Barrier$VARIANT$mp + 8 (in libsystem_c.dylib) [0x7fff90d2b54c]
                                                                      1 pthread_mutex_lock + 66 (in libsystem_c.dylib) [0x7fff90ce3fc2]
                                                                    2 ??? (in iTunes) [0x105a84f8d]
                                                                      1 ??? (in iTunes) [0x105a85416]
                                                                      1 ??? (in iTunes) [0x105a85423]
                                                                    1 ??? (in iTunes) [0x105a84dcb]
                                                                      1 ??? (in iTunes) [0x105a5d3fc]
                                                                        1 mach_absolute_time + 47 (in libsystem_c.dylib) [0x7fff90cd5328]
                                                                    1 ??? (in iTunes) [0x105a84ddb]
                                                                    1 ??? (in iTunes) [0x105a84df5]
                                                                    1 ??? (in iTunes) [0x105a5d99b]
                                                                  6 ??? (in iTunes) [0x105a84d2a]
                                                                    3 OSAtomicCompareAndSwap64Barrier$VARIANT$mp + 8 (in libsystem_c.dylib) [0x7fff90d2b54c]
                                                                    1 pthread_mutex_lock + 291 (in libsystem_c.dylib) [0x7fff90ce40a3]
                                                                    1 pthread_mutex_lock + 591 (in libsystem_c.dylib) [0x7fff90ce41cf]
                                                                    1 pthread_mutex_lock + 313 (in libsystem_c.dylib) [0x7fff90ce40b9]
                                                                      1 pthread_threadid_np + 57 (in libsystem_c.dylib) [0x7fff90ce65bd]
                                                                  3 pthread_mutex_unlock + 268 (in libsystem_c.dylib) [0x7fff90ce46ab]
                                                                    1 __mtx_droplock + 473 (in libsystem_c.dylib) [0x7fff90ce449b]
                                                                    1 __mtx_droplock + 710 (in libsystem_c.dylib) [0x7fff90ce4588]
                                                                    1 OSAtomicCompareAndSwap64Barrier$VARIANT$mp + 8 (in libsystem_c.dylib) [0x7fff90d2b54c]
                                                                  1 ??? (in iTunes) [0x105a84d25]
                                                                  1 ??? (in iTunes) [0x105a84d81]
                                                                1 ??? (in iTunes) [0x105dc125e]
      Kernel stack:
        31 hndl_allintrs + 290 (in mach_kernel) [0xffffff80002d7bd2]
          31 interrupt + 192 (in mach_kernel) [0xffffff80002c2790]
            31 lapic_interrupt + 121 (in mach_kernel) [0xffffff80002c7859]
              31 cpu_signal_handler + 172 (in mach_kernel) [0xffffff80002c970c]
                31 sync_iss_to_iks + 118 (in mach_kernel) [0xffffff80002c1bc6]
        1 return_from_trap + 156 (in mach_kernel) [0xffffff80002d79ec]
          1 i386_astintr + 42 (in mach_kernel) [0xffffff80002c1c8a]
            1 ast_taken + 211 (in mach_kernel) [0xffffff800021e0c3]
              1 bsd_ast + 837 (in mach_kernel) [0xffffff800054ff65]
                1 postsig + 632 (in mach_kernel) [0xffffff800054e528]
                  1 exit1 + 425 (in mach_kernel) [0xffffff8000541579]
                    1 task_terminate_internal + 264 (in mach_kernel) [0xffffff80002377d8]
                      1 thread_terminate_internal + 220 (in mach_kernel) [0xffffff800023cacc]
                        1 thread_wait + 166 (in mach_kernel) [0xffffff80002300b6]
                          1 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                            1 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                              1 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x169780   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x105a62d17]
                31 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff88d3738f]
                  31 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                    31 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                      31 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                        31 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        31 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Thread 0x169792   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x105a735a1]
                31 ??? (in iTunes) [0x105a62ec4]
                  31 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8be22bca]
      Kernel stack:
        31 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          31 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            31 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              31 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                31 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  31 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    31 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Thread 0x1697b3   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x105a7b8c4]
                31 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff88d3738f]
                  31 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                    31 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                      31 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                        31 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        31 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Thread 0x1697c8   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x106411a05]
                31 ??? (in iTunes) [0x1064119e0]
                  31 ??? (in iTunes) [0x105a62e00]
                    31 ??? (in iTunes) [0x105a62ec4]
                      31 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8be22bca]
      Kernel stack:
        31 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          31 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            31 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              31 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                31 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  31 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    31 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Thread 0x1697c9   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x105b4bceb]
              31 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        31 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Thread 0x1697ca   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x10625cb8c]
                31 ??? (in iTunes) [0x10625c9e9]
                  31 __accept + 10 (in libsystem_kernel.dylib) [0x7fff8be2247a]
      Kernel stack:
        31 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          31 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            31 accept_nocancel + 469 (in mach_kernel) [0xffffff80005876f5]
              31 msleep + 119 (in mach_kernel) [0xffffff8000552a27]
                31 wakeup + 267 (in mach_kernel) [0xffffff80005523cb]
                  31 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                    31 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                      31 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                        31 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Thread 0x1697cb   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x10625cb8c]
                31 ??? (in iTunes) [0x10625c9e9]
                  31 __accept + 10 (in libsystem_kernel.dylib) [0x7fff8be2247a]
      Kernel stack:
        31 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          31 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            31 accept_nocancel + 469 (in mach_kernel) [0xffffff80005876f5]
              31 msleep + 119 (in mach_kernel) [0xffffff8000552a27]
                31 wakeup + 267 (in mach_kernel) [0xffffff80005523cb]
                  31 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                    31 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                      31 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                        31 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Thread 0x1697cc   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 __select + 10 (in libsystem_kernel.dylib) [0x7fff8be22df2]
      Kernel stack:
        31 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Thread 0x1697cd   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x105a62d17]
                31 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff88d3738f]
                  31 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                    31 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                      31 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                        31 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1697d1   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x105a62d17]
                31 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff88d3738f]
                  31 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                    31 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                      31 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                        31 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x169809   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x105a62d17]
                31 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff88d3738f]
                  31 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                    31 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                      31 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                        31 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x16981a   
      User stack:
        31 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          31 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            31 ??? (in iTunes) [0x1062eb85a]
              31 ??? (in iTunes) [0x105a62d17]
                31 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff88d3738f]
                  31 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                    31 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                      31 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                        31 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x169a23   
      User stack:
        31 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff90ce8b85]
          31 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8be23192]
      Kernel stack:
        32 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x16977a     DispatchQueue 2
      User stack:
        31 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          31 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        31 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x16977a   
      Kernel stack:
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a3f0]
      Binary Images:
             0x105a59000 -        0x106bf8fe7  com.apple.iTunes 10.6 (10.6) <A7AC514C-E3C4-B6E4-522A-D3FE410790C6> /Applications/iTunes.app/Contents/MacOS/iTunes
          0x7fff88cef000 -     0x7fff88ec3fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b8c0000 -     0x7fff8b8cefff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90c97000 -     0x7fff90d74fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff90ff8000 -     0x7fff91bfcfff  com.apple.AppKit 6.7.3 (1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         Activity Monitor [152]
    Path:            /Applications/Utilities/Activity Monitor.app/Contents/MacOS/Activity Monitor
    Architecture:    x86_64
    UID:             501
      Thread 0x4f7        DispatchQueue 1
      User stack:
        32 ??? (in Activity Monitor) [0x1044c977c]
          32 NSApplicationMain + 867 (in AppKit) [0x7fff9127bb88]
            32 -[NSApplication run] + 470 (in AppKit) [0x7fff90ffd19d]
              32 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff91000861]
                32 _DPSNextEvent + 659 (in AppKit) [0x7fff91000f5d]
                  32 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8b8d8456]
                    32 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8b8d85c9]
                      32 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8b8d131f]
                        32 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                          31 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                            31 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                              31 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
                          1 __CFRunLoopRun + 1895 (in CoreFoundation) [0x7fff88d28117]
                            1 __CFRunLoopDoSource1 + 155 (in CoreFoundation) [0x7fff88cf19db]
                              1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 44 (in CoreFoundation) [0x7fff88cf1cac]
                                1 __CFMachPortPerform + 386 (in CoreFoundation) [0x7fff88cf1e42]
                                  1 _ZL38PullEventsFromWindowServerOnConnectionjh + 69 (in HIToolbox) [0x7fff8b8e6ce6]
                                    1 CGEventCreateNextEvent + 29 (in CoreGraphics) [0x7fff8c2c2025]
                                      1 CGSGetNextEventRecordInternal + 110 (in CoreGraphics) [0x7fff8c273cf7]
                                        1 snarfEvents + 437 (in CoreGraphics) [0x7fff8c273ff4]
                                          1 CGSDispatchDatagramsFromStream + 268 (in CoreGraphics) [0x7fff8c27440f]
                                            1 CGSDecodeEventRecord + 98 (in CoreGraphics) [0x7fff8c2b2202]
                                              1 CGEventCreateFromDataAndSource + 224 (in CoreGraphics) [0x7fff8c2b232e]
                                                1 CGTypeCreateInstanceWithAllocator + 69 (in CoreGraphics) [0x7fff8c1b2255]
                                                  1 _CFRuntimeCreateInstance + 400 (in CoreFoundation) [0x7fff88cf2ea0]
                                                    1 malloc_zone_malloc + 77 (in libsystem_c.dylib) [0x7fff90d373c8]
                                                      1 szone_malloc_should_clear + 1115 (in libsystem_c.dylib) [0x7fff90d0200e]
                                                        1 tiny_malloc_from_free_list + 1046 (in libsystem_c.dylib) [0x7fff90d01711]
                                                          1 tiny_free_list_add_ptr + 224 (in libsystem_c.dylib) [0x7fff90cf7b6e]
      Kernel stack:
        30 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
        1 hndl_mach_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          1 thread_set_child + 336 (in mach_kernel) [0xffffff80002aeb80]
            1 mach_msg_overwrite_trap + 442 (in mach_kernel) [0xffffff800021bc5a]
              1 ipc_mqueue_receive + 63 (in mach_kernel) [0xffffff80002157ff]
                1 thread_block_reason + 275 (in mach_kernel) [0xffffff800022f383]
                  1 thread_go + 608 (in mach_kernel) [0xffffff800022dfd0]
                    1 processor_idle + 149 (in mach_kernel) [0xffffff800022d2e5]
                      1 machine_idle + 163 (in mach_kernel) [0xffffff80002c4213]
        1 hndl_allintrs + 290 (in mach_kernel) [0xffffff80002d7bd2]
          1 interrupt + 192 (in mach_kernel) [0xffffff80002c2790]
            1 lapic_interrupt + 121 (in mach_kernel) [0xffffff80002c7859]
              1 cpu_signal_handler + 172 (in mach_kernel) [0xffffff80002c970c]
                1 sync_iss_to_iks + 118 (in mach_kernel) [0xffffff80002c1bc6]
      Thread 0x5a7        DispatchQueue 2
      User stack:
        32 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x169bbc   
      User stack:
        32 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff90ce8b85]
          32 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8be23192]
      Kernel stack:
        32 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Binary Images:
             0x1044c8000 -        0x1044f5fff  com.apple.ActivityMonitor 10.7.3 (714) <58B0F2D5-5BC2-3F31-A0F4-D8E453FD6853> /Applications/Utilities/Activity Monitor.app/Contents/MacOS/Activity Monitor
          0x7fff88cef000 -     0x7fff88ec3fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b8c0000 -     0x7fff8b8cefff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8b8cf000 -     0x7fff8bbf9ff7  com.apple.HIToolbox 1.8 (???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8c1a8000 -     0x7fff8cb387a7  com.apple.CoreGraphics 1.600.0 (???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
          0x7fff90c97000 -     0x7fff90d74fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff90ff8000 -     0x7fff91bfcfff  com.apple.AppKit 6.7.3 (1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         activitymonitord [179]
    Path:            /usr/libexec/activitymonitord
    Architecture:    x86_64
    UID:             0
      Thread 0x600      
      User stack:
        32 ??? (in activitymonitord) [0x10479bccc]
          32 ??? (in activitymonitord) [0x10479d49b]
            32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Binary Images:
             0x10479b000 -        0x1047a3ff7  activitymonitord ??? (???) <842D0122-27CE-38C2-B3AD-164E6A7FC8CA> /usr/libexec/activitymonitord
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
    Process:         Address Book [15990]
    Path:            /Applications/Address Book.app/Contents/MacOS/Address Book
    Architecture:    x86_64
    UID:             501
      Thread 0x46d68      DispatchQueue 1
      User stack:
        32 ??? (in Address Book) [0x10acab3b0]
          32 NSApplicationMain + 867 (in AppKit) [0x7fff9127bb88]
            32 -[NSApplication run] + 470 (in AppKit) [0x7fff90ffd19d]
              32 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff91000861]
                32 _DPSNextEvent + 659 (in AppKit) [0x7fff91000f5d]
                  32 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8b8d8456]
                    32 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8b8d85c9]
                      32 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8b8d131f]
                        32 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                          32 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                            32 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                              32 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x46d82      DispatchQueue 2
      User stack:
        32 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Binary Images:
             0x10aca9000 -        0x10acecfff  com.apple.AddressBook 6.1 (1083) <84A7B30D-CF09-3CB0-B71D-1B61DAC9B180> /Applications/Address Book.app/Contents/MacOS/Address Book
          0x7fff88cef000 -     0x7fff88ec3fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b8c0000 -     0x7fff8b8cefff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8b8cf000 -     0x7fff8bbf9ff7  com.apple.HIToolbox 1.8 (???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90ff8000 -     0x7fff91bfcfff  com.apple.AppKit 6.7.3 (1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         AirPort Base Station Agent [223]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             501
      Thread 0x7e5      
      User stack:
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x7fd      
      User stack:
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x811      
      User stack:
      Kernel stack:
        32 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x812      
      User stack:
      Kernel stack:
        32 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          32 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            32 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              32 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                32 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  32 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    32 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x107009000 -        0x107020fff  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <4B2DADB0-223B-32AA-9438-30FBEA0A8FE6> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Process:         aosnotifyd [79]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    UID:             0
      Thread 0x259        DispatchQueue 1
      User stack:
        32 start + 52 (in aosnotifyd) [0x10a5a70bc]
          32 main + 74 (in aosnotifyd) [0x10a5ae9f4]
            32 -[AOSNotificationDaemon startup] + 1294 (in aosnotifyd) [0x10a5ae7bb]
              32 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff89ed2f9f]
                32 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                  32 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                    32 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                      32 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x30a        DispatchQueue 2
      User stack:
        32 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x390      
      User stack:
        32 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          32 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            32 __NSThread__main__ + 1575 (in Foundation) [0x7fff89f216c6]
              32 -[NSThread main] + 68 (in Foundation) [0x7fff89f2174e]
                32 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff89f2cffb]
                  32 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                    32 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                      32 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                        32 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x444      
      User stack:
      Kernel stack:
        32 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x10a5a5000 -        0x10a5e6fff  aosnotifyd ??? (???) <750811D8-1A2D-3F5A-B157-8A35B8FB04DB> /usr/sbin/aosnotifyd
          0x7fff88cef000 -     0x7fff88ec3fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89ec7000 -     0x7fff8a1e0ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8b8c0000 -     0x7fff8b8cefff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90c97000 -     0x7fff90d74fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         applepushserviced [78]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
    Architecture:    x86_64
    UID:             0
      Thread 0x258        DispatchQueue 1
      User stack:
        32 ??? (in applepushserviced) [0x10c7248d4]
          32 ??? (in applepushserviced) [0x10c7249b8]
            32 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff89ed2e8b]
              32 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff89ed2f9f]
                32 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                  32 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                    32 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                      32 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x288        DispatchQueue 2
      User stack:
        32 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x41b      
      User stack:
        32 thread_start + 13 (in libsystem_c.dylib) [0x7fff90ce8b75]
          32 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff90ce58bf]
            32 __select + 10 (in libsystem_kernel.dylib) [0x7fff8be22df2]
      Kernel stack:
        32 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x10c723000 -        0x10c791ff7  applepushserviced ??? (???) <99ACA6F5-6DCE-34D6-A4C6-7D8DE7B88173> /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
          0x7fff88cef000 -     0x7fff88ec3fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89ec7000 -     0x7fff8a1e0ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8b8c0000 -     0x7fff8b8cefff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90c97000 -     0x7fff90d74fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         AppleSpell [194]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    UID:             501
      Thread 0x6d0        DispatchQueue 1
      User stack:
        32 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
          32 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x6d4        DispatchQueue 2
      User stack:
        32 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Binary Images:
             0x107376000 -        0x107432ff7  com.apple.AppleSpell 1.7.1 (131.1) <A994D9F1-C4D8-3361-B0F4-112A7BAED8BD> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff88cef000 -     0x7fff88ec3fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b8c0000 -     0x7fff8b8cefff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
    Process:         autofsd [76]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    UID:             0
      Thread 0x293        DispatchQueue 2
      User stack:
        32 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x300        DispatchQueue 6
      User stack:
        32 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff8b8c4954]
          32 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff8be23022]
      Kernel stack:
        32 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x169c00   
      User stack:
        32 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff90ce8b85]
          32 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8be23192]
      Kernel stack:
        32 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Binary Images:
             0x1043d5000 -        0x1043d6fff  autofsd ??? (???) <A02D5E70-1BB1-30ED-A699-375CB0CCE901> /usr/libexec/autofsd
          0x7fff8b8c0000 -     0x7fff8b8cefff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90c97000 -     0x7fff90d74fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         blued [22]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    UID:             0
      Thread 0x155        DispatchQueue 1
      User stack:
        32 ??? (in blued) [0x105e59e78]
          32 ??? (in blued) [0x105e8f6af]
            32 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff89ed2e8b]
              32 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff89ed2f9f]
                32 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                  32 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                    32 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                      32 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x159        DispatchQueue 2
      User stack:
        32 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x193      
      User stack:
      Kernel stack:
        32 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x105e58000 -        0x105f0dfff  blued ??? (???) <85D33825-1A68-3F2C-A78D-6B9E43F3DCA9> /usr/sbin/blued
          0x7fff88cef000 -     0x7fff88ec3fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89ec7000 -     0x7fff8a1e0ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8b8c0000 -     0x7fff8b8cefff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8be0c000 -     0x7fff8be2cfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
    Process:         Calculator [55896]
    Path:            /Applications/Calculator.app/Contents/MacOS/Calculator
    Architecture:    x86_64
    UID:             501
      Thread 0x12e12f     DispatchQueue 1
      User stack:
        32 ??? (in Calculator) [0x100c026ac]
          32 NSApplicationMain + 867 (in AppKit) [0x7fff9127bb88]
            32 -[NSApplication run] + 470 (in AppKit) [0x7fff90ffd19d]
              32 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff91000861]
                32 _DPSNextEvent + 659 (in AppKit) [0x7fff91000f5d]
                  32 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8b8d8456]
                    32 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8b8d85c9]
                      32 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8b8d131f]
                        32 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff88d27676]
                          32 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff88d27e64]
                            32 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff88d1f6fc]
                              32 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8be2167a]
      Kernel stack:
        32 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x12e140     DispatchQueue 2
      User stack:
        32 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b8c214e]
          32 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8be237e6]
      Kernel stack:
        32 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Binary Images:
             0x100bfd000 -        0x100c12fff  com.apple.calculator 10.7.1 (117) &

    I am still having the problem. I have noticed a pattern to the seemingly random freezes.
    The iPod is stopping to Sync at almost predictable points during the sync. The first stoppage occurs around the 1.9GB part of the sync. This has not always been the same file but it is always around the same place.
    When I sync in small chunks the freeze occurs at almost the same place every time. As soon as it freezes, iTunes is toast and the entire computer needs to be restarted.
    Anyways, the freeze happens around every 2GB's of data transferred. It does not have to be in one chunk, it is almost like it is happening on the iPod. Like the iPod is kicking itself out of the sync at certain points along it's hard drive or something. Once it freezes and I restart the computer, I can transfer another 2 GB before it freezes again... then restart, repeat. Finally I was able to load up the 14.8 GB I had in my iTunes. Several hours later... not sure if I should take the iPod back or not. If it is the iPod and that fixes the problem great... but if it is my machine, I get another 3-4 hours syncing and restarting my computer. Wheeee!

  • Crystal Reports 2008 parameter panel

    Hello,
    I'm using Crystal Reports 2008 stand-alone application to design reports. I'm wondering is there a possibility to change information display on parameter panel?
    The problem is that I've created a parameter with option "prompt with description only" set to true. This parameter has value and description. When it's prompting for parameter everything goes fine, it prompts with description only, but in parameter panel it's only values (not descriptions) displayed. This is confusing for report users as the value is key (int type) and description is name (string that actually says something to user).
    Maybe there is something to be set in Crystal Reports Viewer component properties?
    Thanks in advance.

    Hello Gemi,
    I recommend to post this query to the [Crystal Reports Design|SAP Crystal Reports; forum.
    This forum is dedicated to topics related to the creation and design of Crystal Report documents. This includes topics such as database connectivity, parameters and parameter prompting, report formulas, record selection formulas, charting, sorting, grouping, totaling, printing, and exporting but also installation and registering.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports Design queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Can we rename the Apply button to RUN or GO in BI Publisher 11g?

    Hi ,
    We have a requirement to rename the Apply button to RUN or GO. ( after selecting the parameters , we have to click the Apply button)
    Can this be achieved?
    Thanks
    Ashish

    if you have data in db then you can create xml with needed structure
    and so you can create bip report
    do you have errors or .... ?

  • After pressing the apply button, all fields become readonly in page

    hello friends,
    i have a requirement that when i click the apply button , all the records should save into database then all the fields should become readonly in page.
    vary urgent....
    Thanks
    krishna.

    Krishna,
    To make bold use the CSS OraDataText on fields.
    cant we disable add another row button when we press apply button. why because after pressing apply button add another row can add new row and that row also becoming readonly. so how to control that addanother row button after pressing apply button.Yes you can disable the add another row button by using SPEL.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Icon on top right of playbook screen when browsing

    I have an icon in the top right of my PB screen when browsing, it looks like a bandits mask, of The lone Ranger variety for those old enough, my wife's PB does not show this, what is it? I have searched everywhere for a full PB icon library before co

  • ECO 7.0 for ERP product catalog views

    To warn everyone, I know this question has been asked before for earlier releases several times, but I did not find anything in the threads I mention below. We are currently on CRM 7 and ECC 6(no enhancement packs).  I have found quite a few good mat

  • Loading external jpegs

    I have a page that loads external jpegs... however it seems totake longer to retireve and display/load the images going through flash than it does if i were to display them as html...why is this... or am I just wrong. thanks J.

  • Detecting variable types

    Is there any existing method so that I can detect whether a value is an integer or not...I know how to convert variables to the type integer, but I need to check if it is already an integer.

  • Slide show program for iMac

    I was a Window user that switched to Mac about a year ago.  I use PhotoShow Gold to create some wonderful slide shows.  When I made the switch I thought I could use Parallels to continue using Proshow.  For the most part it has worked out.  But recen