106 Exception of type system.OutOfMemory Exception while packaging worker roles

I am trying to package a 2 worker roles(small vms size) , in which i am having about 300mb of data content on both approot folders of roles.
When i try to package it takes about 10 mins time and throws a "System.OutOfMemoryException". 
I also tried using medium size vms, but the same error i got.
Is there any other way to do it as i need these data in approot folder for batch script initialisation.

HI
The maximum package size that can be deployed is 600 MB (600 * 1024
* 1024 bytes).
Any other data should moved to Windows Azure storage and retrieved from there.
So any other data, should be moved to windows Azure storage and SQL Azure.
That's the solution, MS suggest.
Dino He
MSDN Community Support | Feedback to us
Develop and promote your apps in Windows Store
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Similar Messages

  • Exception of type  'System.OutOfMemory Exception' was thrown while running

    We have a web application develeoped in ASP.Net, SQL Server 2005 , Crystal Reports 10.2. When I try to run a report which has around 5 lakh records (the query to fetch the records in sql server takes around 1.5 to 2 minutes) gives an error Exception of type  'System.OutOfMemory Exception' was thrown.
    Can anybody help !!
    Thanks

    Hello, Balla;
    the first thing to check is that the ASP.NET Worker process has rights to your Temp folder. You will find where it is by checking your Environment variables.
    Use the correct name for the ASP.NET worker process depending on your operating system - LocalMachine\IIS_WPG(Windows 2003 Server) or ASPNET(XP) or (Vista) IIS_IUSRS
    To give the IIS_WPG account full control of a folder:
    1. Right-click the folder and select 'Properties'.
    2. Go to the 'Security' tab and click the 'Add' button.
    3. Click the 'Locations' button and select the
    computer name. Click 'OK'.
    4. Type "IIS_WPG" under the 'Enter the object names to
    select' box.
    5. Click 'Check Names'. <Your machine name>\IIS_WPG
    appears. Click 'OK'.
    6. Check 'Full Control' from 'Permissions for IIS_WPG'.
    Click 'OK'.
    ====================
    NOTE:
    The IIS_WPG includes the LocalService,
    System, and NetworkService accounts.
    ====================
    If that is not the issue:
    What database driver are you using in the design of your report? Go to Database|Set datasource location and tell me the properties of the database connection.
    Do you logon to the database in your code or pass the data to it using Datasets?
    Are there subreports in the design? How many are there? What section are they in? What data source does each one use?
    Do you have a lot of formulas in the report?
    Elaine

  • A first chance exception of type 'System.IO.FileLoadException' occurred in Unknown Module.

    Hiii...
    I was doing FacebookIntegration App.Trying it from many dayss...Can anybody please help me with the below error.It was raising in FacebookLoginPage....
    A first chance exception of type 'System.IO.FileLoadException' occurred in Unknown Module.
    My code is
    namespace tori.Pages
        public partial class FacebookLoginPage : PhoneApplicationPage
               public FacebookLoginPage()
                InitializeComponent();
                this.Loaded += FacebookLoginPage_Loaded;
            async void FacebookLoginPage_Loaded(object sender, RoutedEventArgs e)
                if (!App.isAuthenticated)
                    App.isAuthenticated = true;
                    await Authenticate();
            private FacebookSession session;
            private async Task Authenticate()
                string message = String.Empty;
                try
                    session = await App.FacebookSessionClient.LoginAsync("user_about_me,read_stream,publish_stream,publish_actions");
                    App.AccessToken = session.AccessToken;
                    App.FacebookId = session.FacebookId;
                    Dispatcher.BeginInvoke(() => NavigationService.Navigate(new Uri("/Pages/LandingPage.xaml", UriKind.Relative)));
                catch (InvalidOperationException e)
                    message = "Login failed! Exception details: " + e.Message;
                    MessageBox.Show(message);
        While I was debugging error was raising in this line 
    App.FacebookSessionClient.LoginAsync("user_about_me,read_stream,publish_stream,publish_actions");
    While running the App in device I was getting the above error.
    And while running the app in emulator I was facing the below error
    A first chance exception of type 'System.TypeLoadException' occurred in System.Windows.dll
    Additional information: File or assembly name 'System.Threading.Tasks, Version=1.5.10.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A', or one of its dependencies, was not found.
    I am unable to understand what to solve and which is the reason also.
    Can anybody please help me in rectifying it...
    Many Thanks in advance..

    Hi venukoti,
    Are you using Facebook SDK for helping with feature implementation?
    Looks like your app does not have dependencies installed. Please try to re-install the Facebook SDK to see if the same thing happens.
    I would recommend you ask Facebook:
    http://facebooksdk.net/docs/windows/ also
    https://developers.facebook.com/tools-and-support/ for more sufficient suggestions.
    Thanks for your understanding.
    --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.

  • Exception of Type 'System.OutofMemoryException' was thrown

    I am trying to run test software developed using TestStand 2010 SP1 and LabVIEW 2011 SP1 on a Windows XP machine. We have generated common sequences in TestStand that are called from a custom script language. The test runs for about 2.5 hours before throwing an error, "Exception of Type 'System.OutofMemoryException' was thrown." It happens at about the same point each time, but not always during the same Sequence or VI call.
    Our software does loop quite a bit calling the same TestStand sequence multiple times. And we are saving data samples read from test equipment into arrarys to analyze, but would that array not be written over each time rather than allocating new memory for each call? Or could it be generating a new memory allocation for each time the TestStand sequence is called?
    Any other ideas on why we would be getting an out of memory exception only when we run the entire test consecutively(>2.5hours), meaning if we run it in two halfs(tests 1-5 then terminate, then restart and run tests 6-10) it works fine?

    No, the local variables only exist while the sequence is running (unless you are leaking references to them in your code modules). So you should only have as many versions of the locals in memory as you have actively running versions of the sequence. You might have a lot of actively running versions though, I have no idea what your sequences look like.
    How much memory is the process using as reported in Task Manager? Are you trying to allocate a large block of memory such as a large array? As memory becomes more fragmented and used more, it becomes harder to allocate large blocks of memory in 32-bit programs due to the limitation of the address space (i.e. it's hard to find a contiguous block of address space large enough). You might be hitting this issue.
    The general approach I'd recommend for you is to try to figure out what is using most of the memory and try to optimize that to use less memory. Also avoid trying to allocate very large blocks. Once your process is using about 1 gig of ram, it becomes difficult to allocate blocks bigger than 100meg in a 32-bit process.
    Since you are getting a .NET out of memory exception, another possibility is that you have an issue with garbage collection or are leaking .NET objects (i.e. unintentionally holding a reference to them somewhere keeping them from being garbage collected). You can call GC.Collect() before doing something memory intensive and see if that helps. If you don't have .NET code modules though, then this is likely not the problem.
    -Doug

  • System.InsufficientMemoryException: Failed to allocate a managed memory buffer of 268435456 bytes. The amount of available memory may be low. --- System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.

    Appfabric 1.1 server setup on 3 Windows server 2008 R2 machines.
    Client windows 7 64 bit.
    Because there is no bulkupdate ,we are trying to persist around 4000 objects wrapped in a CLR object.
     [Serializable]
        public class CacheableCollection<T> : ICacheable, IEnumerable<T>
            where T : class, ICacheable
            [DataMember]
            private Dictionary<string, T> _items;
            public IEnumerator<T> GetEnumerator()
                return _items.Values.GetEnumerator();
            IEnumerator IEnumerable.GetEnumerator()
                return _items.Values.GetEnumerator();
            [DataMember]
            public string CacheKey { get; private set; }
            public T this[string cacheKey] { get { return _items[cacheKey]; } }
            public CacheableCollection(string cacheKey, T[] items)
                if (string.IsNullOrWhiteSpace(cacheKey))
                    throw new ArgumentNullException("cacheKey", "Cache key not specified.");
                if (items == null || items.Length == 0)
                    throw new ArgumentNullException("items", "Collection items not specified.");
                this.CacheKey = cacheKey;
                _items = items.ToDictionary(p => p.CacheKey, p => p);
    We tried with the following options on server and client
    Server:
     <advancedProperties>
                <partitionStoreConnectionSettings leadHostManagement="false" />
                <securityProperties mode="None" protectionLevel="None">
                    <authorization>
                        <allow users="[email protected]" />
                        <allow users="[email protected]" />
                    </authorization>
                </securityProperties>
                <transportProperties maxBufferSize="500000000" />
            </advancedProperties>
    Client: 
     <transportProperties connectionBufferSize="131072" maxBufferPoolSize="500000000"
                           maxBufferSize="838860800" maxOutputDelay="2" channelInitializationTimeout="60000"
                           receiveTimeout="600000"/>
    I see different people experiencing different memory size issues. What is the actual memory limit of an  object that can be pushed to Appfabric. 
    Can some one please help ?
    Stack trace:
    Test method Anz.Cre.Pdc.Bootstrapper.Test.LoaderFuncCAOTest.AppFabPushAndRetrieveData threw exception: 
    System.InsufficientMemoryException: Failed to allocate a managed memory buffer of 268435456 bytes. The amount of available memory may be low. ---> System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.
    System.Runtime.Fx.AllocateByteArray(Int32 size)
    System.Runtime.Fx.AllocateByteArray(Int32 size)
    System.Runtime.InternalBufferManager.PooledBufferManager.TakeBuffer(Int32 bufferSize)
    System.Runtime.BufferedOutputStream.ToArray(Int32& bufferSize)
    System.ServiceModel.Channels.BufferedMessageWriter.WriteMessage(Message message, BufferManager bufferManager, Int32 initialOffset, Int32 maxSizeQuota)
    System.ServiceModel.Channels.BinaryMessageEncoderFactory.BinaryMessageEncoder.WriteMessage(Message message, Int32 maxMessageSize, BufferManager bufferManager, Int32 messageOffset)
    System.ServiceModel.Channels.FramingDuplexSessionChannel.EncodeMessage(Message message)
    System.ServiceModel.Channels.FramingDuplexSessionChannel.OnSendCore(Message message, TimeSpan timeout)
    System.ServiceModel.Channels.TransportDuplexSessionChannel.OnSend(Message message, TimeSpan timeout)
    System.ServiceModel.Channels.OutputChannel.Send(Message message, TimeSpan timeout)
    Microsoft.ApplicationServer.Caching.WcfClientChannel.SendMessage(EndpointID endpoint, Message message, TimeSpan timeout, WaitCallback callback, Object state, Boolean async)
    Microsoft.ApplicationServer.Caching.WcfClientChannel.Send(EndpointID endpoint, Message message, TimeSpan timeout)
    Microsoft.ApplicationServer.Caching.WcfClientChannel.Send(EndpointID endpoint, Message message)
    Microsoft.ApplicationServer.Caching.DRM.SendRequest(EndpointID address, RequestBody request)
    Microsoft.ApplicationServer.Caching.RequestBody.Send()
    Microsoft.ApplicationServer.Caching.DRM.SendToDestination(RequestBody request, Boolean recordRequest)
    Microsoft.ApplicationServer.Caching.DRM.ProcessRequest(RequestBody request, Boolean recordRequest)
    Microsoft.ApplicationServer.Caching.DRM.ProcessRequest(RequestBody request, Object session)
    Microsoft.ApplicationServer.Caching.RoutingClient.SendMsgAndWait(RequestBody reqMsg)
    Microsoft.ApplicationServer.Caching.DataCache.SendReceive(RequestBody reqMsg)
    Microsoft.ApplicationServer.Caching.DataCache.ExecuteAPI(RequestBody reqMsg)
    Microsoft.ApplicationServer.Caching.DataCache.InternalPut(String key, Object value, DataCacheItemVersion oldVersion, TimeSpan timeout, DataCacheTag[] tags, String region)
    Microsoft.ApplicationServer.Caching.DataCache.Put(String key, Object value, String region)
    Anz.Cre.Pdc.DataCache.DataCacheAccess.Put[T](String cacheName, String regionName, T value) in C:\SVN\2.3_Drop3\app\Src\Anz.Cre.Pdc.DataCache\DataCacheAccess.cs: line 141
    Anz.Cre.Pdc.DataCache.DataCacheAccess.Put[T](String cacheName, String regionName, Boolean flushRegion, T value) in C:\SVN\2.3_Drop3\app\Src\Anz.Cre.Pdc.DataCache\DataCacheAccess.cs: line 372
    Anz.Cre.Pdc.Bootstrapper.Test.LoaderFuncCAOTest.AppFabPushAndRetrieveData() in C:\SVN\2.3_Drop3\app\Src\Anz.Cre.Pdc.Bootstrapper.Test\LoaderFuncCAOTest.cs: line 281

    Essentially what we are trying to do is the following.
    we have different kinds of objects in our baseline. Objects of type CAO, Exposures, Limits that change everyday after close of business day. 
    We wanted to push these different objects in to respective named regions in the cache. 
    Region Name     Objects
    CAO                   ienumerable<caos>
    Exposures           ienumerable<exposures>
    Limits                ienumerable<limits>
    we have a producer that pushes this data in to the cache and consumers of this data acting on the data when its available.
    Now the issue we are facing is when we try to push around 4000 cao objects (roughly in the size of 300MB when serialized using xml) ,we are getting the above error. Increasing the size on the client and cache cluster didnt help.
    The other alternative we were thinking about is chunking and pushing because appfabric doesnt support streaming. We might be able to push this data successfuly if we chunk. But how about the consumers ? wouldnt they face the same memory issue when we use
    getallobjectsinregion ?
    We thought if there was a way to figure out the keys in the region then probably the consumers can get one by one. However there is no such API. 
    The only option i see is using Appfabric notifications which msdn says isnt a reliable way.
    Please help.

  • A first chance exception of type 'System.InvalidOperationException' occurred in Silverlight.Media.Phone.DLL.

    Hi,
    I was running Shoutcast.Sample.Phone.Background in windows phone 8 device.I have got this example from codeplex  http://shoutcastmss.codeplex.com/workitem/826.
    I have used the code present in above and started running the app.But the stream was not playing continuosly in Background.
    It was stopping rising the below exception 
    A first chance exception of type 'System.InvalidOperationException' occurred in Silverlight.Media.Phone.DLL.
    An exception of type 'System.InvalidOperationException' occurred in Silverlight.Media.Phone.DLL but was not handled in user code.
    Can anybody please help me how can I overcome this exception.And play stream continuosly in background until I stop it.
    ManyThanks in advance..

    You should ask in the discussion for that code sample.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Exception of type 'System.ArgumentException' was thrown. Parameter name: newObj when register sts to sharepoint 2010

    Hi
    when i register my custom sts to sharepoint i receive error : 
    Exception of type 'System.ArgumentException' was thrown.
    Parameter name: newObj
    i followed https://msdn.microsoft.com/EN-US/library/office/ff955607(v=office.14).aspx
    private void button1_Click(object sender, EventArgs e)
    List<SPTrustedClaimTypeInformation> claimMapping = new List<SPTrustedClaimTypeInformation>();
    List<string> strClaimMapping = new List<string>();
    SPTrustedClaimTypeInformation idClaim = new SPTrustedClaimTypeInformation("EmailAddress",
    "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
    "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress");
    SPTrustedClaimTypeInformation titleClaim = new SPTrustedClaimTypeInformation("Title",
    "http://schemas.wingtip.com/sharepoint/2009/08/claims/title",
    "http://schemas.wingtip.com/sharepoint/2009/08/claims/title");
    titleClaim.AcceptOnlyKnownClaimValues = true;
    idClaim.AddKnownClaimValue("[email protected]");
    idClaim.AddKnownClaimValue("[email protected]");
    idClaim.AddKnownClaimValue("[email protected]");
    titleClaim.AddKnownClaimValue("Engineer");
    titleClaim.AddKnownClaimValue("Manager");
    titleClaim.AddKnownClaimValue("CEO");
    // Create the string[] for all claims. This is required for
    // the construction of the SPTrustedLoginProvider object.
    strClaimMapping.Add(idClaim.InputClaimType);
    strClaimMapping.Add(titleClaim.InputClaimType);
    X509Certificate2 ImportTrustCertificate = new X509Certificate2(@"C:\SPPROJECTS\STS\ClaimsWalkthrough\Resources\STSTestCertPub.cer");
    claimMapping.Add(idClaim);
    claimMapping.Add(titleClaim);
    SPSecurityTokenServiceManager manager = SPSecurityTokenServiceManager.Local;
    SPTrustedLoginProvider provider = new SPTrustedLoginProvider(manager,
    "WingtipSTS", "WingtipSTS", new Uri("http://localhost:97/default.aspx"),
    "https://portal.test.com:90/_trust/", strClaimMapping.ToArray(), idClaim);
    foreach (SPTrustedClaimTypeInformation claimTypeInfo in claimMapping)
    if (claimTypeInfo.InputClaimType == provider.IdentityClaimTypeInformation.InputClaimType)
    continue;
    provider.AddClaimTypeInformation(claimTypeInfo);
    if (ImportTrustCertificate != null)
    provider.SigningCertificate = ImportTrustCertificate;
    //provider.ClaimProviderName = "ContosoCRMClaimProvider";
    provider.UseWReplyParameter = true;
    manager.TrustedLoginProviders.Add(provider);
    manager.Update();
    adil

    After spending the last hour looking again at my FBA issue, i finally got the answer to my own question which is SPClaimsUtility.
    For anyone in the future having this issue, this is a snapshot from my code:
    SPSecurity.RunWithElevatedPrivileges(delegate()
                   string usernamestring = GetTextBox("tbUsername").Text;
                   string passwordstring = GetTextBox("tbPassword").Text;
    ATPAuthProvider.ATPMembershipProvider memProvider = new ATPAuthProvider.ATPMembershipProvider();
    if (memProvider.ValidateUser(usernamestring, passwordstring))
                           MembershipUser user = memProvider.GetUser(usernamestring,
    true);
                           if (user != null)
      bool Status = SPClaimsUtility.AuthenticateFormsUser(HttpContext.Current.Request.UrlReferrer,
    usernamestring, passwordstring);
                               if (Status)
                                   HttpContext.Current.Response.Redirect("/Pages/Home.aspx", false);
    Note: The SPClaimsUtility class is from the Microsoft.SharePoint.IdentityModel dll which reside in the new GAC location: C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.SharePoint.IdentityModel\v4.0_15.0.0.0__71e9bce111e9429c
    Credit to Sivarajan's blog: http://sivarajan.me/post/SharePoint-2013-Enabling-Custom-Login-Page-and-Mixed-Contents-Part-2
    Enjoy!

  • Error-System Type Initialization Exception occured in system data dll

     hello sir,
                 because of transferring my project from one pc to another pc i am getting following error:
    error massage:
    first chance exception of type 'System.TypeInitializationException' occurred in System.Data.dll
    Additional information: The type initializer for 'System.Data.Common.DbConnectionOptions' threw an exception.
    If there is a handler for this exception, the program may be safely continued.
    also attached image of error massage
    so how to by pass this error
    please help,
    regards,
    kavi-kalash

    Hello,
    >>because of transferring my project from one pc to another pc i am getting following error:
    This seems to be related with an environment issue, please have a check the worked machine and the non-worked one, to compare if there are some difference.
    >>If there is a handler for this exception, the program may be safely continued.
    This could be due to missing references. Or it could be due to an error in the app config file. Is it possible for you to post your code about the connect part and the connection string? And here is an article describes how to process the first chance exception:
    https://msdn.microsoft.com/en-us/library/dd997368(v=vs.110).aspx
    Regards.
    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.

  • Query erroring with OutOfMemory exception

    Hi,
    When I run this query:
    SELECT VENDPACKINGSLIPTRANS.COSTLEDGERVOUCHER, VENDPACKINGSLIPTRANS.ITEMID, VENDPACKINGSLIPTRANS.INVENTTRANSID,VENDPACKINGSLIPJOUR.PURCHID, VENDPACKINGSLIPTRANS.NAME, VENDPACKINGSLIPTRANS.QTY
    FROM VENDPACKINGSLIPTRANS INNER JOIN
    VENDPACKINGSLIPJOUR ON VENDPACKINGSLIPTRANS.PACKINGSLIPID = VENDPACKINGSLIPJOUR.PACKINGSLIPID
    WHERE (VENDPACKINGSLIPTRANS.DATAAREAID = 'agl')
    it returns the results in about 12 seconds.
    This one however runs for about 12 minutes before crashing.
    SELECT VENDPACKINGSLIPTRANS.COSTLEDGERVOUCHER, VENDPACKINGSLIPTRANS.ITEMID, VENDPACKINGSLIPTRANS.INVENTTRANSID,VENDPACKINGSLIPJOUR.PURCHID, VENDPACKINGSLIPTRANS.NAME, VENDPACKINGSLIPTRANS.QTY
    FROM VENDPACKINGSLIPTRANS INNER JOIN
    VENDPACKINGSLIPJOUR ON VENDPACKINGSLIPTRANS.PACKINGSLIPID = VENDPACKINGSLIPJOUR.PACKINGSLIPID
    WHERE (VENDPACKINGSLIPTRANS.DATAAREAID = 'agp')
    As it runs I can see that file C:\Users\carronp\AppData\Local\Temp\2\tmp55B3.tmp grows to over 4GB.
    When it crashes it throws the following error:
    An error occurred while executing batch. Error message is: Exception of type 'System.OutOfMemoryException' was thrown.
    My The data file of my database is on D:\ and the log file is on L:\ so I can't see why C:\ would be getting filled.
    Has anybody seen an issue like this before?
    Cheers
    Paul

    Paul 
    What if you create a procedure that accepts parameters , for  example
    CREATE PROCEDURE sp1
    @Par VARCHAR(5)
    AS
    SELECT VENDPACKINGSLIPTRANS.COSTLEDGERVOUCHER, VENDPACKINGSLIPTRANS.ITEMID, VENDPACKINGSLIPTRANS.INVENTTRANSID,VENDPACKINGSLIPJOUR.PURCHID, VENDPACKINGSLIPTRANS.NAME, VENDPACKINGSLIPTRANS.QTY
    FROM VENDPACKINGSLIPTRANS INNER JOIN
    VENDPACKINGSLIPJOUR ON VENDPACKINGSLIPTRANS.PACKINGSLIPID = VENDPACKINGSLIPJOUR.PACKINGSLIPID
    WHERE (VENDPACKINGSLIPTRANS.DATAAREAID = @Par)
    EXEC sp1 @Par='agp'
    EXEC sp1 @Par='agl'
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • BPC 5.0.502  BPC Web Error Message: Exxception of Type System out of memory

    In the process of updating a web page in the content library, page crashed received an error message of "Exception of type System out of memory.  Exception was throw".  What does this mean?  We are now unable to open this sheet without receiving the prior message.  Any remadies would be appreciated.

    Hello,
        Did you receive this specific error message only managing that web page or for all pages?
        Did you try to stop all COM+ components on the application servers(on each if you are using more). It looks to be related to some memory problems.
        If the problem is related to a specific web page, the problem can be related to the content of that web page.
    Best regards,
    Mihaela

  • Error Message When I Invoke my web services : Exception source is: mscorlib' , Stack Trace :System.Runtime.Serialization.SerializationException: Type 'System.ServiceModel.ExceptionDetail' in Assembly 'System.ServiceModel, Version=4.0.0.0, Culture=neutral,

    Exception source is: mscorlib' , Stack Trace :System.Runtime.Serialization.SerializationException: Type 'System.ServiceModel.ExceptionDetail' in Assembly 'System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' is not marked
    as serializable.
       at System.Runtime.Serialization.FormatterServices.InternalGetSerializableMembers(RuntimeType type)
       at System.Runtime.Serialization.FormatterServices.GetSerializableMembers(Type type, StreamingContext context)
       at System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitMemberInfo()
       at System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter,
    SerializationBinder binder)
       at System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Write(WriteObjectInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo)
       at System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck)
       at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers, Boolean fCheck)
       at System.Runtime.Remoting.Channels.CrossAppDomainSerializer.SerializeObject(Object obj, MemoryStream stm)
       at System.AppDomain.Serialize(Object o)
       at System.AppDomain.MarshalObject(Object o)
       at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG&amp; msg)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
       at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
       at System.Windows.Application.RunDispatcher(Object ignore)
       at System.Windows.Application.RunInternal(Window window)
       at System.Windows.Application.Run(Window window)

    Hi,
    The forum is main about installation problem of .NET Framework. Your problem is out of support in the forum. You should post your thread to the forum:
    https://social.msdn.microsoft.com/Forums/en-US/clr/threads
    Best Wishes!
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Constant Safari crashes while using flash: Exception Type:  EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000002078 Crashed Thread:  0  Thread 0 Crashed: 0   ...lashPlayer-10.4-10.5.plugin     0x1c2a5245 NP_Initialize   1564

    I keep reporting this to Apple...I'm using a Macbook Pro with OS 10.5.8 (I have a DVD here with 10.6, but the mac sees this as a blank DVD, so I can't update the OS, and this DVD came with my purchase; that's one issue). The other big issue are the constant crashes while using Safari. It's happening several times a day, usually when Flash is involved:
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000002078
    Crashed Thread:  0
    Thread 0 Crashed:
    0   ...lashPlayer-10.4-10.5.plugin          0x1c2a5245 NP_Initialize + 1564869
    1   ...lashPlayer-10.4-10.5.plugin          0x1c2a8af8 NP_Initialize + 1579384
    2   ...lashPlayer-10.4-10.5.plugin          0x1c29a2ed NP_Initialize + 1519981
    3   ...lashPlayer-10.4-10.5.plugin          0x1c1213d7 unregister_ShockwaveFlash + 444951
    4   ...lashPlayer-10.4-10.5.plugin          0x1c121865 unregister_ShockwaveFlash + 446117
    etc....

    Yeah, I've already updated to latest version of Flash.

  • Gets error "-17502; System Level Exception" while running the custom Step in NI TestStnad 2010

    I have a custom teststand step which works like For loop in TestStand. Previously I was using LV 2009 and NI TestStand 4.2.1 and this step was working fine. Recently I upgraded my system to LV 2010 and TestStand 2010, since that it is not working.
    When I run the step it gives error "-17502; System Level Exception". I have attached error screenshot.
    I am using NIFlowControl.dll in this step.
    Please do the needful.
    Attachments:
    System Levle Exception error.JPG ‏25 KB

    The source code for NIFlowControl.dll ships with TestStand. Did you perhaps
    1) modify the code and rebuild this dll in teststand 4.2.1, but did not move your changes into the 2010 version and recompile the 2010 version?
    Or
    2) Move your 4.2.1 version of this dll to 2010 in which case it might be missing important code that exists only in the 2010 version. It's best to redo your code changes to the 2010 version and recompile that if needed.
    Also ideally your modified version of NIFlowControl.dll should be located in the teststand public directory rather than the program files directory.
    -Doug

  • Adobe Premiere CS6 keeps crashing - Crashed Thread:  0  Dispatch queue: com.apple.main-thread     Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

    Please help!  I've been wrestling with this all day!  Everytime I come to a clip on the timeline that has been adjusted via speed/duration the program crashes.  I've already deleted the preference files for all Adobe products.  Any suggestions?
    ~bdh
    Process:         Adobe Premiere Pro CS6 [955]
    Path:            /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Identifier:      com.adobe.AdobePremierePro
    Version:         6.0.2 (6.0.2)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [277]
    User ID:         501
    Date/Time:       2013-04-29 19:09:02.439 -0500
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          141185 sec
    Crashes Since Last Report:           19
    Per-App Interval Since Last Report:  99397 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      00F758BA-37B7-1854-7225-6B1330BFA109
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000100000000-0000000100004000 [   16K] r-x/rwx SM=COW  /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.dvaui.framework               0x00000001034a6d3a dvaui::ui::UI_Node::GetViewScaleFactor() const + 10
    1   com.adobe.UIFramework.framework          0x0000000103cc7066 UIF::TabViewImpl::UI_Draw(dvaui::drawbot::Drawbot*) const + 730
    2   com.adobe.dvaui.framework               0x00000001034addbb void dvaui::drawbot::InvokeDrawbotFromRegionT<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, bool) + 187
    3   com.adobe.dvaui.framework               0x00000001034adf79 void dvaui::drawbot::InvokeDrawbot<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, std::vector<dvacore::geom::RectT<int>, std::allocator<dvacore::geom::RectT<int> > >*, bool) + 313
    4   com.adobe.dvaui.framework               0x00000001034a6381 dvaui::ui::OS_View::UI_HandlePlatformDrawEvent(dvaui::drawbot::SurfaceInterface *) + 397
    5   com.adobe.dvacore.framework             0x000000010018b9ee int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    6   com.adobe.premiere.frontend             0x000000010c748725 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 57
    7   com.adobe.dvacore.framework             0x000000010018b8e0 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 112
    8   com.adobe.dvacore.framework             0x000000010018de1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    9   com.adobe.dvaui.framework               0x000000010349c7bd -[DVAMacContainerView drawRect:] + 125
    10  com.apple.AppKit                        0x00007fff88bcf094 -[NSView _drawRect:clip:] + 4217
    11  com.apple.AppKit                        0x00007fff88bcd6f1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    12  com.apple.AppKit                        0x00007fff88bcb722 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    13  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    14  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x00007fff88bcb173 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    17  com.apple.AppKit                        0x00007fff88bc6d9d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    18  com.apple.AppKit                        0x00007fff88b90cc3 -[NSView displayIfNeeded] + 1830
    19  com.apple.AppKit                        0x00007fff88b901fc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    20  com.apple.Foundation                    0x00007fff85910af3 __NSFireTimer + 96
    21  com.apple.CoreFoundation                0x00007fff8477b804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    22  com.apple.CoreFoundation                0x00007fff8477b31d __CFRunLoopDoTimer + 557
    23  com.apple.CoreFoundation                0x00007fff84760ad9 __CFRunLoopRun + 1529
    24  com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    25  com.apple.HIToolbox                     0x00007fff84d26eb4 RunCurrentEventLoopInMode + 209
    26  com.apple.HIToolbox                     0x00007fff84d26c52 ReceiveNextEventCommon + 356
    27  com.apple.HIToolbox                     0x00007fff84ce7044 IsUserStillTracking(MenuSelectData*, unsigned char*) + 194
    28  com.apple.HIToolbox                     0x00007fff84cd089a TrackMenuCommon(MenuSelectData&, unsigned char*) + 307
    29  com.apple.HIToolbox                     0x00007fff84e66e04 PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1556
    30  com.apple.HIToolbox                     0x00007fff84e66794 _HandlePopUpMenuSelection7 + 629
    31  com.apple.AppKit                        0x00007fff88e2f54b _NSSLMPopUpCarbonMenu3 + 3916
    32  com.apple.AppKit                        0x00007fff88e2e5d8 -[NSCarbonMenuImpl _popUpContextMenu:withEvent:forView:withFont:] + 189
    33  com.apple.AppKit                        0x00007fff88f88fe3 -[NSMenu _popUpContextMenu:withEvent:forView:withFont:] + 200
    34  com.adobe.dvaui.framework               0x00000001034c44b6 dvaui::utility::OS_Menu_MAC::DoPopupMenu(dvaui::utility::OS_Menu_MAC&, dvaui::ui::UI_Node const*, dvacore::geom::RectT<float> const&, bool, bool) + 764
    35  com.adobe.dvaui.framework               0x00000001034c45b9 dvaui::utility::OS_Menu_MAC::DoContextMenu(dvaui::utility::OS_Menu_MAC&, dvaui::ui::UI_Node const*, dvacore::geom::PointT<float> const&, bool) + 55
    36  com.adobe.dvaui.framework               0x000000010343773b dvaui::ui::UI_DoContextMenu(dvaui::utility::OS_Menu&, dvaui::ui::UI_Node const&, dvacore::geom::PointT<float> const&) + 27
    37  com.adobe.UIFramework.framework          0x0000000103c7e978 UIF::MenuUtils::TrackPopupMenu(boost::intrusive_ptr<dvaui::utility::OS_Menu>, dvaui::ui::UI_Node const&, ASL::ParamPoint<int> const&) + 40
    38  com.adobe.HandlerTimeline.framework          0x0000000109c40f97 HandlerTimeline::TrackViewArea::DoClipContextMenuWithEffects(ASL::ParamPoint<in t> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, char const*) + 1929
    39  com.adobe.HandlerTimeline.framework          0x0000000109c41aaa HandlerTimeline::TrackViewArea::DoContextMenu(ASL::ParamPoint<int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, unsigned int) + 514
    40  com.adobe.HandlerTimeline.framework          0x0000000109c421c3 HandlerTimeline::TrackViewArea::HandleContextMenuInContentView(ASL::ParamPoint< int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*) + 1115
    41  com.adobe.HandlerTimeline.framework          0x0000000109b525bb HandlerTimeline::EditorController::RightButtonUp(ASL::ParamPoint<int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*) + 169
    42  com.adobe.UIFramework.framework          0x0000000103cbf29f UIF::SubViewImpl::UI_DoMouseEvent(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&) + 981
    43  com.adobe.dvaui.framework               0x000000010343c4a8 dvaui::ui::UI_Node::DispatchMouseEvent::operator()(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvacore::geom::PointT<float> const&) const + 184
    44  com.adobe.dvaui.framework               0x000000010344605b std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 91
    45  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    46  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    47  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    48  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    49  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    50  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    51  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    52  com.adobe.dvaui.framework               0x000000010343c615 dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeaf(dvaui::ui::MouseEvent const&, bool) + 75
    53  com.adobe.dvaui.framework               0x000000010344027e dvaui::ui::UI_Node::UI_DispatchMouseEventToTarget(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&, bool) + 136
    54  com.adobe.dvaui.framework               0x000000010344031f dvaui::ui::UI_Node::UI_DispatchMouseEvent(dvaui::ui::MouseEvent const&, bool) + 63
    55  com.adobe.dvaui.framework               0x00000001034a7bf2 dvaui::ui::OS_View::UI_DispatchPlatformMouseEvent(dvaui::ui::MouseEvent const&, bool) + 702
    56  com.adobe.dvaui.framework               0x00000001034a5cfa dvaui::ui::OS_View::UI_DispatchPlatformMouseClickEvent(dvaui::ui::OS_Event const&) + 470
    57  com.adobe.dvaui.framework               0x00000001034a4919 dvaui::ui::OS_View::UI_DispatchEvent(dvaui::ui::OS_Event*) + 123
    58  com.adobe.dvaui.framework               0x00000001034a5fe8 dvaui::ui::OS_View::UI_HandleOSEvent(dvaui::ui::OS_Event*) + 28
    59  com.adobe.dvaui.framework               0x00000001034a2ac7 dvaui::ui::OS_View::UI_HandlePlatformEvent(NSEvent*) + 57
    60  com.adobe.dvacore.framework             0x000000010018b9ee int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    61  com.adobe.premiere.frontend             0x000000010c748725 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 57
    62  com.adobe.dvacore.framework             0x000000010018b8e0 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 112
    63  com.adobe.dvacore.framework             0x000000010018de1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    64  com.adobe.dvaui.framework               0x000000010349bc8f -[DVAMacContainerView rightMouseUp:] + 127
    65  com.apple.AppKit                        0x00007fff88c7277d -[NSWindow sendEvent:] + 7428
    66  com.apple.AppKit                        0x00007fff88c6e674 -[NSApplication sendEvent:] + 5761
    67  com.adobe.dvaui.framework               0x0000000103495bb6 -[DVAMacApplication sendEvent:] + 630
    68  com.adobe.premiere.frontend             0x000000010c781520 -[PremiereCocoaMacApplication sendEvent:] + 304
    69  com.apple.AppKit                        0x00007fff88b8424a -[NSApplication run] + 636
    70  com.adobe.premiere.frontend             0x000000010c782784 FE::MacApplication::RunSelf() + 44
    71  com.adobe.premiere.frontend             0x000000010c72cdef FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 5681
    72  com.adobe.premiere.frontend             0x000000010c783cfc AppMain + 380
    73  com.adobe.premiere.startup              0x000000010c8f41d7 Run + 247
    74  com.adobe.AdobePremierePro              0x00000001000038b7 main + 647
    75  com.adobe.AdobePremierePro              0x000000010000361c start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff82eecd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff85512dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff855129ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.ASLFoundation.framework          0x00000001005c0770 ASL::(anonymous namespace)::TaskProc(void*) + 160
    6   com.apple.CoreServices.CarbonCore          0x00007fff89bf97e0 PrivateMPEntryPoint + 58
    7   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff82eecd16 kevent + 10
    1   com.adobe.dvatransport.framework          0x000000010079bf12 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 240
    2   com.adobe.dvatransport.framework          0x00000001007a60da boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<b oost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 512
    3   com.adobe.dvatransport.framework          0x00000001007a6467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   com.adobe.dvatransport.framework          0x0000000100792fbd SkyConnectionEnv::MainLoop() + 129
    5   com.adobe.dvatransport.framework          0x000000010079303b SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    6   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    7   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.adobe.dvatransport.framework          0x00000001007a604b boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<b oost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 369
    3   com.adobe.dvatransport.framework          0x00000001007a6467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   com.adobe.dvatransport.framework          0x0000000100793c2a boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_b ase::work_io_service_runner>::run() + 42
    5   com.adobe.dvatransport.framework          0x0000000100796c33 boost_asio_detail_posix_thread_function + 19
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff82eec122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9dfd pthread_mutex_lock + 536
    2   com.adobe.AudioSupport.framework          0x000000010308b132 ML::MonitorMixer::Stop() + 30
    3   com.adobe.PlayerHost.framework          0x00000001049b79b4 ML::VideoPlayer::PlayerCallback_StopAudio() + 256
    4   com.adobe.PlayerHost.framework          0x00000001049d6ad6 ML::SDKCallback_StopAudio(int) + 86
    5   com.adobe.PlayerMediaCore.framework          0x0000000119de812d AdobePlayer::PlayerAudioHost::StopPlayback() + 137
    6   com.adobe.TransmitHost.framework          0x000000010d1e0aa0 ML::TransmitManager::StopPlayback() + 182
    7   com.adobe.PlayerMediaCore.framework          0x0000000119de9754 AdobePlayer::PlayerClock::SetState(AdobePlayer::PlayState, PrActivationEvent) + 828
    8   com.adobe.PlayerMediaCore.framework          0x0000000119df88a3 AdobePlayer::PlayerMain::ForceStop() + 253
    9   com.adobe.PlayerMediaCore.framework          0x0000000119df89e3 AdobePlayer::PlayerMain::OnStop() + 79
    10  com.adobe.PlayerMediaCore.framework          0x0000000119e05926 PrPlayModule<AdobePlayer::PlayerMain>::PlayEntry(int, pmStdParms*, void*, void*) + 302
    11  com.adobe.PlayerHost.framework          0x000000010499b0c9 ML::CallPlayerModuleGuarded(int (*)(int, pmStdParms*, void*, void*), int, pmStdParms*, void*, void*, int*, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 137
    12  com.adobe.PlayerHost.framework          0x000000010499bf94 ML::PlayerModule::CallPlugin(int, void*, void*) + 130
    13  com.adobe.PlayerHost.framework          0x00000001049c0e77 ML::VideoPlayer::CallPlayModuleSelector_Stop() + 79
    14  com.adobe.PlayerHost.framework          0x00000001049abb16 ML::VideoPlayer::StopPlayback(bool, bool) + 64
    15  com.adobe.PlayerHost.framework          0x00000001049a0500 ML::PlayModuleThreadQueue::ExecuteDeferredCall(ASL::ObjectPtr<ML::DeferredCallB ase, ASL::AtomicValue>) + 280
    16  com.adobe.PlayerHost.framework          0x00000001049a1537 ML::PlayModuleThreadQueue::ServiceQueue() + 253
    17  com.adobe.ASLFoundation.framework          0x00000001005b3232 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54
    18  com.adobe.dvacore.framework             0x00000001001f62a2 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 194
    19  com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    20  com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    21  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    22  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8475b233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff84760916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    5   com.apple.AVCVideoServices              0x0000000119c71ad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8475b233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff84760916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    5   com.apple.AVCVideoServices              0x0000000119c71ad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    4   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    8   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c1f3dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff82eec386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8d02e800 nanosleep + 163
    2   com.adobe.ScriptLayerPPro.framework          0x0000000106d0c6fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.ScriptLayerPPro.framework          0x0000000106cf8259 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.ScriptLayerPPro.framework          0x0000000106d0ca66 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 20:: com.apple.audio.IOThread.client
    0   libsystem_c.dylib                       0x00007fff8cf92d2c OSAtomicAdd64Barrier$VARIANT$mp + 8
    1   com.adobe.dvacore.framework             0x0000000100241356 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::TrySimpleAllocate() + 144
    2   com.adobe.dvacore.framework             0x00000001002642e2 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::DoAllocate() + 28
    3   com.adobe.dvacore.framework             0x0000000100245829 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::Allocate(unsigned long) + 279
    4   com.adobe.dvacore.framework             0x000000010016412f dvacore::utility::SmallBlockAllocator::Allocate(unsigned long) + 63
    5   com.adobe.Backend.framework             0x00000001015adcd4 std::_Rb_tree<ASL::ImmutableString, std::pair<ASL::ImmutableString const, BE::OutputValueBase*>, std::_Select1st<std::pair<ASL::ImmutableString const, BE::OutputValueBase*> >, std::less<ASL::ImmutableString>, dvacore::utility::SmallBlockAllocator::STLAllocator<std::pair<ASL::ImmutableStr ing const, BE::OutputValueBase*> > >::_M_create_node(std::pair<ASL::ImmutableString const, BE::OutputValueBase*> const&) + 20
    6   com.adobe.Backend.framework             0x00000001015ade02 std::_Rb_tree<ASL::ImmutableString, std::pair<ASL::ImmutableString const, BE::OutputValueBase*>, std::_Select1st<std::pair<ASL::ImmutableString const, BE::OutputValueBase*> >, std::less<ASL::ImmutableString>, dvacore::utility::SmallBlockAllocator::STLAllocator<std::pair<ASL::ImmutableStr ing const, BE::OutputValueBase*> > >::_M_insert_unique(std::pair<ASL::ImmutableString const, BE::OutputValueBase*> const&) + 206
    7   com.adobe.Backend.framework             0x00000001015ac650 BE::CompositeOutputValue::CompositeOutputValue(BE::CompositeOutputValue const&) + 234
    8   com.adobe.Backend.framework             0x00000001015ab298 BE::CompositeOutputValue::Clone() const + 34
    9   com.adobe.Backend.framework             0x00000001015ac6d2 BE::CompositeOutputValue::CompositeOutputValue(BE::CompositeOutputValue const&) + 364
    10  com.adobe.Backend.framework             0x00000001015bacec BE::CompositeProperty::CompositeProperty(BE::CompositeOutputValue const&, std::map<dvacore::utility::Guid, ASL::ObjectPtr<BE::OutputValueEntry, ASL::AtomicValue>, std::less<dvacore::utility::Guid>, std::allocator<std::pair<dvacore::utility::Guid const, ASL::ObjectPtr<BE::OutputValueEntry, ASL::AtomicValue> > > > const&) + 52
    11  com.adobe.Backend.framework             0x00000001015b69f1 BE::PropertiesImpl::SetOpaqueUnknown(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool) + 963
    12  com.adobe.Backend.framework             0x00000001015bb93c BE::PropertiesProxy::SetOpaqueUnknown(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool) + 144
    13  com.adobe.HandlerProject.framework          0x0000000109576871 void BE::IProperties::SetOpaque<ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown> >(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>&, bool) + 121
    14  com.adobe.HandlerProject.framework          0x00000001095759bc HandlerProject::ProjectViewStateList::WriteViewStateList() + 138
    15  com.adobe.HandlerProject.framework          0x00000001094a827e HandlerProject::ProjectHandler::ViewDestroyed(HandlerProject::ProjectView*, dvacore::utility::Guid) + 866
    16  com.adobe.HandlerProject.framework          0x0000000109523289 HandlerProject::ProjectView::DestroySelf() + 139
    17  com.adobe.dvaworkspace.framework          0x0000000106a342dc dvaworkspace::workspace::Workspace::RemoveTab(dvaworkspace::workspace::Workspac eFrame*, int, bool, bool) + 140
    18  com.adobe.dvaworkspace.framework          0x0000000106a31cbf dvaworkspace::workspace::Workspace::RemoveTab(dvaworkspace::workspace::Workspac eFrame*, dvaworkspace::workspace::TabPanel*, bool, bool) + 67
    19  com.adobe.dvaworkspace.framework          0x0000000106a48400 dvaworkspace::workspace::WorkspaceFrame::RemoveAllTabs(bool) + 162
    20  com.adobe.dvaworkspace.framework          0x0000000106a346c6 dvaworkspace::workspace::TopLevelWindow::RemoveTabPanels(bool) + 392
    21  com.adobe.dvaworkspace.framework          0x0000000106a3552a dvaworkspace::workspace::Workspace::RemoveTabPanels() + 150
    22  com.adobe.premiere.frontend             0x000000010c726700 FE::Application::CloseCurrentWorkspace() + 552
    23  com.adobe.premiere.frontend             0x000000010c75e50d FE::DocumentManager::CloseDocumentWithPrompt(bool, bool) + 353
    24  com.adobe.premiere.frontend             0x000000010c75f151 FE::DocumentManager::AttemptPanicProjectSave() + 991
    25  com.adobe.premiere.frontend             0x000000010c72b74e FE::Application::AttemptPanicProjectSave() + 24
    26  com.adobe.premiere.frontend             0x000000010c78327c UnixInterruptSignal(int) + 44
    27  com.adobe.dvacore.framework             0x0000000100279b15 (anonymous namespace)::SignalHandler(int, __siginfo*, void*) + 261
    28  libsystem_c.dylib                       0x00007fff8cf9294a _sigtramp + 26
    29  libsystem_c.dylib                       0x00007fff8cf91ac7 memmove$VARIANT$sse42 + 159
    30  com.adobe.AudioRenderer.framework          0x0000000100df1fbb AR::AudioBuffer::CopyFrom(AR::AudioBuffer const&, unsigned int) + 59
    31  com.adobe.AudioRenderer.framework          0x0000000100e4797b AR::AudioPannerDirectChannelAssignmentBase::Process(AR::AudioBuffer const&, AR::AudioBuffer&) + 713
    32  com.adobe.AudioRenderer.framework          0x0000000100e4cc46 AR::AudioPannerStereoTo16Channel::ProcessAudioData(AR::AudioBuffer const&, AR::AudioBuffer&) + 174
    33  com.adobe.AudioRenderer.framework          0x0000000100e1ff32 AR::RealtimeAudioClipTrackItemRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 3666
    34  com.adobe.AudioRenderer.framework          0x0000000100df7822 AR::AudioClipTrackRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 2530
    35  com.adobe.AudioRenderer.framework          0x0000000100e13697 AR::AudioTrackGroupRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 571
    36  com.adobe.AudioSupport.framework          0x0000000103089b67 ML::MonitorMixer::AudioCallback(AR::AudioBuffer&, dvamediatypes::TickTime&) + 6969
    37  com.adobe.AudioSupport.framework          0x000000010309284c ML::AudioPlaybackBuffer::GetAudioData(AR::AudioBuffer&) + 106
    38  com.adobe.AudioSupport.framework          0x00000001030993af ML::CoreAudioHost::ProcessAudio(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*) + 813
    39  com.adobe.AudioSupport.framework          0x000000010309954e ML::CoreAudioHost::DeviceIOProc(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*) + 38
    40  com.apple.audio.CoreAudio               0x00007fff8f09fbad HALC_ProxyIOContext::IOWorkLoop() + 2413
    41  com.apple.audio.CoreAudio               0x00007fff8f09f1a1 HALC_ProxyIOContext::IOThreadEntry(void*) + 83
    42  com.apple.audio.CoreAudio               0x00007fff8f09f069 HALB_IOThread::Entry(void*) + 75
    43  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    44  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff82eec2aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000011ff375ec Invoke + 45721
    2   ServiceManager-Launcher.dylib           0x000000011ff36813 Invoke + 42176
    3   ServiceManager-Launcher.dylib           0x000000011ff35be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib           0x000000011ff35c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib           0x000000011ff3130f Invoke + 20412
    6   ServiceManager-Launcher.dylib           0x000000011ff31616 Invoke + 21187
    7   ServiceManager-Launcher.dylib           0x000000011ff31cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib           0x000000011ff31f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib           0x000000011ff3461d Invoke + 33482
    10  ServiceManager-Launcher.dylib           0x000000011ff34775 Invoke + 33826
    11  ServiceManager-Launcher.dylib           0x000000011ff34fb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib           0x000000011ff350ad Invoke + 36186
    13  ServiceManager-Launcher.dylib           0x000000011ff27d6b Login + 480
    14  ServiceManager-Launcher.dylib           0x000000011ff2b7ad Login + 15394
    15  ServiceManager-Launcher.dylib           0x000000011ff35412 Invoke + 37055
    16  ServiceManager-Launcher.dylib           0x000000011ff37253 Invoke + 44800
    17  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c21f6d TSWaitOnSemaphoreCommon + 265
    4   com.apple.CoreServices.CarbonCore          0x00007fff89be5b93 AsyncFileThread(void*) + 257
    5   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff82eec6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cfa6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8cfa6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8cf911d1 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff82eec6d6 __workq_ke

    Either or both of the following third-party system modifications may be contributing to your problem:
    FxFactory
    CUDA
    I suggest you uninstall them, one at a time, according to the developers' instructions, to see whether you can identify which is at fault. Reboot after uninstalling CUDA.
    Back up all data before making any changes.

  • Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x000000001b174000

    i'm getting very frustrated with this. i thought i had it fixed and i came in this morning and have been fighting with it for hours now. i've read both hardware and software issues and i've heard its adobe problems or apple problems. i'm at a loss. thank you! here is the whole crash report. acrobat, photoshop and indesign and all affected.
    Process:         Adobe InDesign CS5.5 [474]
    Path:            /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    Identifier:      com.adobe.InDesign
    Version:         7.5.3.333 (7530)
    Code Type:       X86 (Native)
    Parent Process:  launchd [121]
    Date/Time:       2013-01-21 08:12:58.996 -0600
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          -14298495 sec
    Crashes Since Last Report:           -459
    Per-App Interval Since Last Report:  49451 sec
    Per-App Crashes Since Last Report:   44
    Anonymous UUID:                      5143D9D7-90D1-4D4F-91D1-E22DA9D86870
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000001b174000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ...ple.ApplicationServices.ATS          0x98dd831f _eFOGetFontTableDirectory + 890
    1   ...ple.ApplicationServices.ATS          0x98de918c _eATSFontGetTableDirectory + 90
    2   ...ple.ApplicationServices.ATS          0x98e122da ATSFontGetTableDirectory + 83
    3   com.adobe.CoolType                      0x009f56aa CTCleanup + 1077186
    4   com.adobe.CoolType                      0x009f8aec CTCleanup + 1090564
    5   com.adobe.CoolType                      0x009fa0fd CTCleanup + 1096213
    6   com.adobe.CoolType                      0x009fcf10 CTCleanup + 1108008
    7   com.adobe.CoolType                      0x009435b3 CTCleanup + 347851
    8   com.adobe.CoolType                      0x00899430 0x890000 + 37936
    9   com.adobe.CoolType                      0x009a7723 CTCleanup + 757819
    10  com.adobe.CoolType                      0x0094e9ae CTCleanup + 393926
    11  com.adobe.CoolType                      0x0094e3e3 CTCleanup + 392443
    12  com.adobe.CoolType                      0x008ee115 CTGetVersion + 17347
    13  com.adobe.CoolType                      0x008ee67c CTInit + 66
    14  PublicLib.dylib                         0x0135bfa7 GetPublicPlugIn + 29207
    15  PublicLib.dylib                         0x013dede2 CoolTypeMain::CoolTypeMain(void* (*)(char const*, char const*, char const*)) + 578
    16  PublicLib.dylib                         0x013def3d CoolTypeMain::Instance(void* (*)(char const*, char const*, char const*)) + 141
    17  PublicLib.dylib                         0x012dcf8b EPSParseColor::GetColorSpaceList(K2Vector<long, K2Allocator<long> >&) + 411
    18  PublicLib.dylib                         0x012dd29f GraphicsDataPtr::GraphicsDataPtr(IGraphicsContext*) + 223
    19  ObjectModelLib.dylib                    0x01152256 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 118
    20  com.adobe.InDesign                      0x00002842 main + 82
    21  com.adobe.InDesign                      0x000027c6 start + 54
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x95ff0382 kevent + 10
    1   libSystem.B.dylib                       0x95ff0a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x95feff59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x95fefcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x95fef781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x95fef5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x95fc9b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x95ff76e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x960265a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x92859b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    5   PMRuntime.dylib                         0x00016130 MemUtils::GetAvailMem() + 288
    6   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    8   libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x95fef412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x95fef9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x95fef5c6 start_wqthread + 30
    Thread 4:
    0   libSystem.B.dylib                       0x95fc9afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x95fca267 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore          0x92901ab0 TS_exception_listener_thread + 160
    3   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    4   libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x98dd7fb3  ecx: 0x00012030  edx: 0x00011ff0
      edi: 0x1b162000  esi: 0x1c130000  ebp: 0xbfffb018  esp: 0xbfffafb0
       ss: 0x0000001f  efl: 0x00010206  eip: 0x98dd831f   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x1b174000
    Binary Images:
        0x1000 -     0x4ffb +com.adobe.InDesign 7.5.3.333 (7530) <4C21AB1C-4542-E91E-C968-944DCEAA0189> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
        0xa000 -     0xafff +InDesignModel ??? (???) <30F20A0C-431C-E52D-BDEF-DAF8C99E8BB4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
        0xf000 -     0xffff +InDesignModelAndUI ??? (???) <F70C26E5-8747-4B57-8849-78889B389510> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelA ndUI
       0x14000 -    0x1bff3 +PMRuntime.dylib ??? (???) <FD895FC0-241A-7DC6-AB12-5B3491A9E624> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PMRuntime.dylib
       0x23000 -   0x15eff2 +com.adobe.ACE AdobeACE 2.18.00.12659 (2.18.00.12659) <5BD496D2-2E2B-0411-779F-855603C5B2AE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x186000 -   0x6acfff +com.adobe.AGM AdobeAGM 4.20.70.12659 (4.20.70.12659) <F1616614-B565-4CC9-C2FA-459FBC857981> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7f6000 -   0x832fff +com.adobe.ARE AdobeARE 1.5.02.12659 (1.5.02.12659) <9AF30878-D3F4-7E85-0820-B674CED4558A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x83c000 -   0x857fff +com.adobe.BIB AdobeBIB 1.2.02.12659 (1.2.02.12659) <802FB4A6-C5FF-522C-89A5-83EB4C139B12> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x862000 -   0x883ff7 +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) <6710FF23-871B-C9A2-306C-15EDBA2AADEA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x890000 -   0xb82ff7 +com.adobe.CoolType AdobeCoolType 5.07.124.12659 (5.07.124.12659) <0481471E-E075-0782-BA1C-C5A5E23C5565> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xc0f000 -   0xfe8ff7 +com.adobe.MPS AdobeMPS 5.5.0.12783 (5.5.0.12783) <D67E9F42-5C32-4E64-9AE8-B292565E1326> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x111f000 -  0x118dff7 +ObjectModelLib.dylib ??? (???) <B2B1E50C-F162-7D0A-C71C-88B57AF53CE9> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ObjectModelLib.dylib
    0x11b2000 -  0x120cfe7 +DataBaseLib.dylib ??? (???) <710FB725-10F6-3740-FF0A-4A31947B7411> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/DataBaseLib.dylib
    0x1228000 -  0x1640fff +PublicLib.dylib ??? (???) <0CD6EB66-8504-8EDB-E436-FAC49AC55D6C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PublicLib.dylib
    0x17d0000 -  0x17e7ff6 +AdobeAFL ??? (???) <E8577122-D703-5A91-8171-2FEA80B63A22> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x17fa000 -  0x1802ff3 +boost_threads ??? (???) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boost_threa ds
    0x180c000 -  0x1811ffd +ASLSupportLib.dylib ??? (???) <85A313EC-05FF-23C5-0EEB-C74D412645FF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ASLSupportLib.dylib
    0x1817000 -  0x1818ff2 +libtbbmalloc.dylib ??? (???) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbbmalloc.dylib
    0x181c000 -  0x182afe7 +libtbb.dylib ??? (???) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbb.dylib
    0x1832000 -  0x196bfef +WRServices ??? (???) <B39BC6BF-DFA3-0FF9-4DCA-D4FB216D73A0> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x19b0000 -  0x19b4ffc +com.adobe.AdobeCrashReporter 3.0 (5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCras hReporter
    0x19ba000 -  0x236afff +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.3 6.0
    0x236d000 -  0x243aff3 +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/li bicui18n.dylib.36.0
    0x249d000 -  0x2577fef +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib. 36.0
    0x25b7000 -  0x2627feb +com.adobe.adobe_caps adobe_caps 4.0.42.0 (4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2632000 -  0x26a0ffb +com.adobe.amtlib amtlib 4.0.0.21 (4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x26b7000 -  0x2750fef +boost_regex ??? (???) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost_regex
    0x2795000 -  0x27d5ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x27ee000 -  0x28a3fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x28e9000 -  0x28ebffb +boost_system ??? (???) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boost_system
    0x28f0000 -  0x2a8efff +WidgetBinLib.dylib ??? (???) <E0461F1F-69DF-D32F-BDBF-36CC005B6158> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2b72000 -  0x2d11fe7 +com.adobe.owl AdobeOwl version 3.0.84 (3.0.84) <25884999-8A98-F8C9-699B-ED75261B6BFC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2d7a000 -  0x2df7fff +AdobeOwlCanvas ??? (???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanva s
    0x2e13000 -  0x2e16ffc +com.adobe.ape.shim adbeape version 3.1.74.12761 (3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x4735000 -  0x4736ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x47a5000 -  0x47b7ff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <3057675E-16A3-EC0C-A764-5CADB6C5ECD2> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x47c1000 -  0x47cffe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1825F5DF-491F-FDD5-3ABB-3FAC1EDC4357> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1af10000 - 0x1af15ff7  libFontStreams.A.dylib 545.0.0 (compatibility 64.0.0) <31610F71-4447-CC8F-2859-4B881BB48F9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90034000 - 0x90058ff7  libJPEG.dylib ??? (???) <C43FD809-08B6-629D-8980-D7B0ECEA20A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90353000 - 0x90353ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90354000 - 0x90358ff7  libGIF.dylib ??? (???) <9E51F8ED-83B4-DA41-1E2F-CFA726936A30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90359000 - 0x90359ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9035a000 - 0x904d5fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9051c000 - 0x90520ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90521000 - 0x90564ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9059e000 - 0x9061efeb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9061f000 - 0x9062fff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90630000 - 0x90630ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90631000 - 0x90695ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x906d6000 - 0x906eaffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90727000 - 0x90b3dff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90b3e000 - 0x90b42ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90b93000 - 0x90c9ffe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90d20000 - 0x90dccfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90dcd000 - 0x90e0aff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90e1c000 - 0x90e23ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90e24000 - 0x90e85fe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90e86000 - 0x90ed3feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90f51000 - 0x91053fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x910fe000 - 0x911d8fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x913af000 - 0x91c92ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91c93000 - 0x91c93ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91c94000 - 0x91c96ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91ca2000 - 0x91ca3ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91ca4000 - 0x91d5cfeb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x91d5d000 - 0x91deffe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91df0000 - 0x91df0ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x91df1000 - 0x91dfcff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91f40000 - 0x91f58ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91f59000 - 0x91f62ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x920a7000 - 0x920a7ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x927f0000 - 0x927f2ff7  libRadiance.dylib ??? (???) <5F803B4A-B294-BA94-FB68-E8756EE41B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92813000 - 0x92b33ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92b34000 - 0x92b77ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b78000 - 0x92bf2fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92bfb000 - 0x92d29fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92d2a000 - 0x92d3bff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93427000 - 0x93439ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x935ae000 - 0x935baff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x935bc000 - 0x935f6ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x935f7000 - 0x93647ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x936ff000 - 0x93732ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93733000 - 0x93999ff7  com.apple.security 6.1.2 (55002) <3FA54D69-5476-78DD-0AFC-D6697263890E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93a8c000 - 0x9427b557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x942f6000 - 0x942f9ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x942fa000 - 0x94304ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94305000 - 0x9439dfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9439e000 - 0x9439eff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9439f000 - 0x943e5ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x943e6000 - 0x943fafe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x943fb000 - 0x94417fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94418000 - 0x9445cff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9447f000 - 0x94485fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x946b2000 - 0x946edffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x946ee000 - 0x94741ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94742000 - 0x94745ff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94759000 - 0x94806fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x94885000 - 0x948b6ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x948ea000 - 0x949cafe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94a13000 - 0x94a16ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94bf1000 - 0x94c06fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94e12000 - 0x94e62fe7  libTIFF.dylib ??? (???) <E8B31850-BFD4-48E6-B264-A4340CD19929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94e9c000 - 0x94e9dff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94e9e000 - 0x94f0dff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94f0e000 - 0x94f2dff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94fb5000 - 0x95063ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95102000 - 0x95146fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9519c000 - 0x951deff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x951df000 - 0x9527cfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9527d000 - 0x954eefef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x954ef000 - 0x95571ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95944000 - 0x95a00fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95fc9000 - 0x96170ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x961ca000 - 0x961d8fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x963b1000 - 0x963bfff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x963c0000 - 0x963c5ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9691f000 - 0x96922fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x96c41000 - 0x96c9eff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96c9f000 - 0x96e62feb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <5BF202E9-730A-3675-4374-E5300BC8ED10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96e81000 - 0x96e81ff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96ff2000 - 0x970abfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x970ac000 - 0x970b9ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x970ba000 - 0x970dcfef  com.apple.DirectoryService.Framework 3.6 (621.15) <F38894EA-2C13-7FC5-C084-94DA0B5B6B68> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97e56000 - 0x9828bff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x982ad000 - 0x982b8ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9849c000 - 0x98807ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98819000 - 0x98841ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x98842000 - 0x98b66fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98b67000 - 0x98c0fffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x98d7f000 - 0x98da5ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x98da6000 - 0x98e41fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98e4f000 - 0x98e70fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x98e71000 - 0x98f3cfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98f3d000 - 0x9907afe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9907b000 - 0x991fdfe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <50A70082-F800-93D8-1A7C-C95AAB1F352C> /usr/lib/libicucore.A.dylib
    0x993cf000 - 0x993d5fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x99402000 - 0x99502fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x9950b000 - 0x99575fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x99576000 - 0x99580fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9ab9f000 - 0x9abbffe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9abc0000 - 0x9abdefe7  libPng.dylib ??? (???) <5B979A83-8CE7-6BD7-B84C-A2D1119B378D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <49C72FD1-891C-23C4-40E7-63DE3368C306> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacPro3,1, BootROM MP31.006C.B05, 8 processors, Quad-Core Intel Xeon, 2.8 GHz, 4 GB, SMC 1.25f4
    Graphics: ATI Radeon HD 2600 XT, ATI Radeon HD 2600, PCIe, 256 MB
    Memory Module: global_name
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: ATI Radeon HD 2600, sppci_displaycontroller, Slot-1
    Serial ATA Device: WDC WD1002FAEX-00Z3A0, 931.51 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-112D
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x911d, 0xfd500000 / 3
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd520000 / 5
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0xfd523000 / 7
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd522000 / 6
    USB Device: Apple Cinema Display, 0x05ac  (Apple Inc.), 0x921d, 0xfd530000 / 4
    USB Device: iPhone, 0x05ac  (Apple Inc.), 0x1297, 0xfd100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x5d200000 / 2
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown

    i'm getting very frustrated with this. i thought i had it fixed and i came in this morning and have been fighting with it for hours now. i've read both hardware and software issues and i've heard its adobe problems or apple problems. i'm at a loss. thank you! here is the whole crash report. acrobat, photoshop and indesign and all affected.
    Process:         Adobe InDesign CS5.5 [474]
    Path:            /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    Identifier:      com.adobe.InDesign
    Version:         7.5.3.333 (7530)
    Code Type:       X86 (Native)
    Parent Process:  launchd [121]
    Date/Time:       2013-01-21 08:12:58.996 -0600
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          -14298495 sec
    Crashes Since Last Report:           -459
    Per-App Interval Since Last Report:  49451 sec
    Per-App Crashes Since Last Report:   44
    Anonymous UUID:                      5143D9D7-90D1-4D4F-91D1-E22DA9D86870
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000001b174000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ...ple.ApplicationServices.ATS          0x98dd831f _eFOGetFontTableDirectory + 890
    1   ...ple.ApplicationServices.ATS          0x98de918c _eATSFontGetTableDirectory + 90
    2   ...ple.ApplicationServices.ATS          0x98e122da ATSFontGetTableDirectory + 83
    3   com.adobe.CoolType                      0x009f56aa CTCleanup + 1077186
    4   com.adobe.CoolType                      0x009f8aec CTCleanup + 1090564
    5   com.adobe.CoolType                      0x009fa0fd CTCleanup + 1096213
    6   com.adobe.CoolType                      0x009fcf10 CTCleanup + 1108008
    7   com.adobe.CoolType                      0x009435b3 CTCleanup + 347851
    8   com.adobe.CoolType                      0x00899430 0x890000 + 37936
    9   com.adobe.CoolType                      0x009a7723 CTCleanup + 757819
    10  com.adobe.CoolType                      0x0094e9ae CTCleanup + 393926
    11  com.adobe.CoolType                      0x0094e3e3 CTCleanup + 392443
    12  com.adobe.CoolType                      0x008ee115 CTGetVersion + 17347
    13  com.adobe.CoolType                      0x008ee67c CTInit + 66
    14  PublicLib.dylib                         0x0135bfa7 GetPublicPlugIn + 29207
    15  PublicLib.dylib                         0x013dede2 CoolTypeMain::CoolTypeMain(void* (*)(char const*, char const*, char const*)) + 578
    16  PublicLib.dylib                         0x013def3d CoolTypeMain::Instance(void* (*)(char const*, char const*, char const*)) + 141
    17  PublicLib.dylib                         0x012dcf8b EPSParseColor::GetColorSpaceList(K2Vector<long, K2Allocator<long> >&) + 411
    18  PublicLib.dylib                         0x012dd29f GraphicsDataPtr::GraphicsDataPtr(IGraphicsContext*) + 223
    19  ObjectModelLib.dylib                    0x01152256 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 118
    20  com.adobe.InDesign                      0x00002842 main + 82
    21  com.adobe.InDesign                      0x000027c6 start + 54
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x95ff0382 kevent + 10
    1   libSystem.B.dylib                       0x95ff0a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x95feff59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x95fefcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x95fef781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x95fef5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x95fc9b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x95ff76e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x960265a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x92859b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    5   PMRuntime.dylib                         0x00016130 MemUtils::GetAvailMem() + 288
    6   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    8   libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x95fef412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x95fef9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x95fef5c6 start_wqthread + 30
    Thread 4:
    0   libSystem.B.dylib                       0x95fc9afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x95fca267 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore          0x92901ab0 TS_exception_listener_thread + 160
    3   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    4   libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x95ff7aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95ff775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95ff93f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9286e21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x92859b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x92855533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   ...ple.CoreServices.CarbonCore          0x9283954a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95ff7259 _pthread_start + 345
    10  libSystem.B.dylib                       0x95ff70de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x98dd7fb3  ecx: 0x00012030  edx: 0x00011ff0
      edi: 0x1b162000  esi: 0x1c130000  ebp: 0xbfffb018  esp: 0xbfffafb0
       ss: 0x0000001f  efl: 0x00010206  eip: 0x98dd831f   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x1b174000
    Binary Images:
        0x1000 -     0x4ffb +com.adobe.InDesign 7.5.3.333 (7530) <4C21AB1C-4542-E91E-C968-944DCEAA0189> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
        0xa000 -     0xafff +InDesignModel ??? (???) <30F20A0C-431C-E52D-BDEF-DAF8C99E8BB4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
        0xf000 -     0xffff +InDesignModelAndUI ??? (???) <F70C26E5-8747-4B57-8849-78889B389510> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelA ndUI
       0x14000 -    0x1bff3 +PMRuntime.dylib ??? (???) <FD895FC0-241A-7DC6-AB12-5B3491A9E624> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PMRuntime.dylib
       0x23000 -   0x15eff2 +com.adobe.ACE AdobeACE 2.18.00.12659 (2.18.00.12659) <5BD496D2-2E2B-0411-779F-855603C5B2AE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x186000 -   0x6acfff +com.adobe.AGM AdobeAGM 4.20.70.12659 (4.20.70.12659) <F1616614-B565-4CC9-C2FA-459FBC857981> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7f6000 -   0x832fff +com.adobe.ARE AdobeARE 1.5.02.12659 (1.5.02.12659) <9AF30878-D3F4-7E85-0820-B674CED4558A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x83c000 -   0x857fff +com.adobe.BIB AdobeBIB 1.2.02.12659 (1.2.02.12659) <802FB4A6-C5FF-522C-89A5-83EB4C139B12> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x862000 -   0x883ff7 +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) <6710FF23-871B-C9A2-306C-15EDBA2AADEA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x890000 -   0xb82ff7 +com.adobe.CoolType AdobeCoolType 5.07.124.12659 (5.07.124.12659) <0481471E-E075-0782-BA1C-C5A5E23C5565> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xc0f000 -   0xfe8ff7 +com.adobe.MPS AdobeMPS 5.5.0.12783 (5.5.0.12783) <D67E9F42-5C32-4E64-9AE8-B292565E1326> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x111f000 -  0x118dff7 +ObjectModelLib.dylib ??? (???) <B2B1E50C-F162-7D0A-C71C-88B57AF53CE9> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ObjectModelLib.dylib
    0x11b2000 -  0x120cfe7 +DataBaseLib.dylib ??? (???) <710FB725-10F6-3740-FF0A-4A31947B7411> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/DataBaseLib.dylib
    0x1228000 -  0x1640fff +PublicLib.dylib ??? (???) <0CD6EB66-8504-8EDB-E436-FAC49AC55D6C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PublicLib.dylib
    0x17d0000 -  0x17e7ff6 +AdobeAFL ??? (???) <E8577122-D703-5A91-8171-2FEA80B63A22> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x17fa000 -  0x1802ff3 +boost_threads ??? (???) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boost_threa ds
    0x180c000 -  0x1811ffd +ASLSupportLib.dylib ??? (???) <85A313EC-05FF-23C5-0EEB-C74D412645FF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ASLSupportLib.dylib
    0x1817000 -  0x1818ff2 +libtbbmalloc.dylib ??? (???) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbbmalloc.dylib
    0x181c000 -  0x182afe7 +libtbb.dylib ??? (???) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbb.dylib
    0x1832000 -  0x196bfef +WRServices ??? (???) <B39BC6BF-DFA3-0FF9-4DCA-D4FB216D73A0> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x19b0000 -  0x19b4ffc +com.adobe.AdobeCrashReporter 3.0 (5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCras hReporter
    0x19ba000 -  0x236afff +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.3 6.0
    0x236d000 -  0x243aff3 +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/li bicui18n.dylib.36.0
    0x249d000 -  0x2577fef +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib. 36.0
    0x25b7000 -  0x2627feb +com.adobe.adobe_caps adobe_caps 4.0.42.0 (4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2632000 -  0x26a0ffb +com.adobe.amtlib amtlib 4.0.0.21 (4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x26b7000 -  0x2750fef +boost_regex ??? (???) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost_regex
    0x2795000 -  0x27d5ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x27ee000 -  0x28a3fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x28e9000 -  0x28ebffb +boost_system ??? (???) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boost_system
    0x28f0000 -  0x2a8efff +WidgetBinLib.dylib ??? (???) <E0461F1F-69DF-D32F-BDBF-36CC005B6158> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2b72000 -  0x2d11fe7 +com.adobe.owl AdobeOwl version 3.0.84 (3.0.84) <25884999-8A98-F8C9-699B-ED75261B6BFC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2d7a000 -  0x2df7fff +AdobeOwlCanvas ??? (???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanva s
    0x2e13000 -  0x2e16ffc +com.adobe.ape.shim adbeape version 3.1.74.12761 (3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x4735000 -  0x4736ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x47a5000 -  0x47b7ff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <3057675E-16A3-EC0C-A764-5CADB6C5ECD2> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x47c1000 -  0x47cffe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1825F5DF-491F-FDD5-3ABB-3FAC1EDC4357> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1af10000 - 0x1af15ff7  libFontStreams.A.dylib 545.0.0 (compatibility 64.0.0) <31610F71-4447-CC8F-2859-4B881BB48F9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90034000 - 0x90058ff7  libJPEG.dylib ??? (???) <C43FD809-08B6-629D-8980-D7B0ECEA20A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90353000 - 0x90353ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90354000 - 0x90358ff7  libGIF.dylib ??? (???) <9E51F8ED-83B4-DA41-1E2F-CFA726936A30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90359000 - 0x90359ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9035a000 - 0x904d5fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9051c000 - 0x90520ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90521000 - 0x90564ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9059e000 - 0x9061efeb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9061f000 - 0x9062fff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90630000 - 0x90630ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90631000 - 0x90695ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x906d6000 - 0x906eaffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90727000 - 0x90b3dff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90b3e000 - 0x90b42ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90b93000 - 0x90c9ffe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90d20000 - 0x90dccfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90dcd000 - 0x90e0aff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90e1c000 - 0x90e23ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90e24000 - 0x90e85fe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90e86000 - 0x90ed3feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90f51000 - 0x91053fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x910fe000 - 0x911d8fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x913af000 - 0x91c92ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91c93000 - 0x91c93ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91c94000 - 0x91c96ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91ca2000 - 0x91ca3ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91ca4000 - 0x91d5cfeb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x91d5d000 - 0x91deffe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91df0000 - 0x91df0ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x91df1000 - 0x91dfcff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91f40000 - 0x91f58ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91f59000 - 0x91f62ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x920a7000 - 0x920a7ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x927f0000 - 0x927f2ff7  libRadiance.dylib ??? (???) <5F803B4A-B294-BA94-FB68-E8756EE41B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92813000 - 0x92b33ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92b34000 - 0x92b77ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b78000 - 0x92bf2fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92bfb000 - 0x92d29fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92d2a000 - 0x92d3bff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93427000 - 0x93439ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x935ae000 - 0x935baff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x935bc000 - 0x935f6ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x935f7000 - 0x93647ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x936ff000 - 0x93732ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93733000 - 0x93999ff7  com.apple.security 6.1.2 (55002) <3FA54D69-5476-78DD-0AFC-D6697263890E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93a8c000 - 0x9427b557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x942f6000 - 0x942f9ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x942fa000 - 0x94304ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94305000 - 0x9439dfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9439e000 - 0x9439eff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9439f000 - 0x943e5ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x943e6000 - 0x943fafe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x943fb000 - 0x94417fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94418000 - 0x9445cff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9447f000 - 0x94485fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x946b2000 - 0x946edffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x946ee000 - 0x94741ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94742000 - 0x94745ff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94759000 - 0x94806fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x94885000 - 0x948b6ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x948ea000 - 0x949cafe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94a13000 - 0x94a16ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94bf1000 - 0x94c06fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94e12000 - 0x94e62fe7  libTIFF.dylib ??? (???) <E8B31850-BFD4-48E6-B264-A4340CD19929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94e9c000 - 0x94e9dff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94e9e000 - 0x94f0dff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94f0e000 - 0x94f2dff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94fb5000 - 0x95063ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95102000 - 0x95146fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9519c000 - 0x951deff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x951df000 - 0x9527cfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9527d000 - 0x954eefef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x954ef000 - 0x95571ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95944000 - 0x95a00fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95fc9000 - 0x96170ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x961ca000 - 0x961d8fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x963b1000 - 0x963bfff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x963c0000 - 0x963c5ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9691f000 - 0x96922fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x96c41000 - 0x96c9eff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96c9f000 - 0x96e62feb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <5BF202E9-730A-3675-4374-E5300BC8ED10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96e81000 - 0x96e81ff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96ff2000 - 0x970abfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x970ac000 - 0x970b9ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x970ba000 - 0x970dcfef  com.apple.DirectoryService.Framework 3.6 (621.15) <F38894EA-2C13-7FC5-C084-94DA0B5B6B68> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97e56000 - 0x9828bff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x982ad000 - 0x982b8ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9849c000 - 0x98807ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98819000 - 0x98841ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x98842000 - 0x98b66fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98b67000 - 0x98c0fffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x98d7f000 - 0x98da5ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x98da6000 - 0x98e41fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98e4f000 - 0x98e70fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x98e71000 - 0x98f3cfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98f3d000 - 0x9907afe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9907b000 - 0x991fdfe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <50A70082-F800-93D8-1A7C-C95AAB1F352C> /usr/lib/libicucore.A.dylib
    0x993cf000 - 0x993d5fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x99402000 - 0x99502fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x9950b000 - 0x99575fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x99576000 - 0x99580fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9ab9f000 - 0x9abbffe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9abc0000 - 0x9abdefe7  libPng.dylib ??? (???) <5B979A83-8CE7-6BD7-B84C-A2D1119B378D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <49C72FD1-891C-23C4-40E7-63DE3368C306> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacPro3,1, BootROM MP31.006C.B05, 8 processors, Quad-Core Intel Xeon, 2.8 GHz, 4 GB, SMC 1.25f4
    Graphics: ATI Radeon HD 2600 XT, ATI Radeon HD 2600, PCIe, 256 MB
    Memory Module: global_name
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: ATI Radeon HD 2600, sppci_displaycontroller, Slot-1
    Serial ATA Device: WDC WD1002FAEX-00Z3A0, 931.51 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-112D
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x911d, 0xfd500000 / 3
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd520000 / 5
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0xfd523000 / 7
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd522000 / 6
    USB Device: Apple Cinema Display, 0x05ac  (Apple Inc.), 0x921d, 0xfd530000 / 4
    USB Device: iPhone, 0x05ac  (Apple Inc.), 0x1297, 0xfd100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x5d200000 / 2
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown

Maybe you are looking for

  • DB_BUFFER_CACHE is static or not in Oracle10g v.2....?????

    Hi , I would like you to confirm if the database's buffer size area in SGA is static or dynamic according to the system needs.... I have somehow been blocked as : SQL> select * from v$sga; NAME                      VALUE Fixed Size              12486

  • HT1766 My iPod is disabled and I don't have iCloud or iTunes back up, what do I do?

    I changed my passcode and when I went to get back into my iPod it would let me. I tried up until it read 'iPod is disabled connect to iTunes'. I don't have any back up on iCloud or iTunes and never synced before, what should I do? 

  • Solving Cubic equation

    Hello! I am trying to create an applet which solves cubic equations. I have managed to create the layout but the maths is causing problems. Well, I am a newbie and don't know much yet. Here's what I've done so far: import java.awt.*; import java.awt.

  • X2100 Hardware Mirroring

    Hi, I have Windows server (Windows Server Enterprise edition x64 R2 with SP2) installed on SUN Fire X2100 server with single HDD; I wanted to enable the NVIDIA raid controller to have Hardware RAID (mirror). I took the Disk image of the server, conne

  • How can I select podcasts to sync

    It looks like new iTunes software doesn't let me select (checkboxes) which podcasts I want to sync only let me sync new or all but not selected from all. Did I miss some options or what? Thanks for any help.