Exception (or crash) when executing an XmlModify with multiple remove exprs

Hi all,
The following code snippet resembles my execution path for updating some nodes in a document.
    XmlManager manager = DbController::getInstance()->getManager();
    XmlContainer container = DbController::getInstance()->getContainer();
    XmlTransaction mainTransaction = manager.createTransaction(DB_TXN_NOWAIT);
    XmlQueryContext queryContext = manager.createQueryContext();
    XmlTransaction childTransaction = mainTrContext->getXmlTransaction().createChild();
    XmlDocument document = container.getDocument(childTransaction, "mydocdir/docname", 0);
    childTransaction.commit();
    XmlValue nodeXmlValue;
    XmlQueryExpression docNodeExpression = manager.prepare(mainTransaction, "/acquisitionProtocol", queryContext
    XmlResults resultList = docNodeExpression.execute(mainTransaction, mainTrContext->getDocument()->getXmlValue(), queryContext
    if (resultList.size() > 0)
        resultList.next(nodeXmlValue);   
//                        XmlValue nodeXmlValue(mainTrContext->getDocument()->getXmlDocument());
    XmlUpdateContext updateContext = manager.createUpdateContext();
    XmlModify modifier = manager.createModify();
    XmlQueryExpression nodeQueryExpression = manager.prepare(mainTransaction, "./location", queryContext);
    modifier.addRemoveStep(nodeQueryExpression);
    XmlQueryExpression nodeQueryExpression = manager.prepare(mainTransaction, "./id", queryContext);
    modifier.addRemoveStep(nodeQueryExpression);
    nodeQueryExpression = manager.prepare(mainTransaction, ".", queryContext);
    modifier.addAppendStep(nodeQueryExpression, XmlModify::Element, "location", "yves/test", 0);
    modifier.execute(mainTransaction, nodeXmlValue, queryContext, updateContext);
    mainTransaction.commit();When I execute the modifier (2de last line) it throws the following exception or crashes:
DBcursor->get: DB_READ_COMMITTED, DB_READ_UNCOMMITTED and DB_RMW require locking
Exception code: 5
Error text:Error: Invalid argument File: NsEventReader.cpp Line: 828
DbErrno: 22The problem occurs when adding more than one remove expression to the modify object. If I use only one remove expression, the code works fine.
However, I can add multiple append expression without problems.
What am I doing wrong here???
Thanks in advance
Yves
Edited by: ywillems on Dec 10, 2008 7:55 AM
Edited by: ywillems on Dec 11, 2008 5:37 AM
Edited by: ywillems on Dec 11, 2008 7:05 AM

Yves,
Oddly enough I believe this is an optimizer bug that we've found and patched (but not yet officially released the patch). Try applying this patch to 2.4.16:
diff -ru dbxml-2.4.16-original/dbxml/src/dbxml/query/DecisionPointQP.cpp dbxml-2.4.16/dbxml/src/dbxml/query/DecisionPointQP.cpp
--- dbxml-2.4.16-original/dbxml/src/dbxml/query/DecisionPointQP.cpp
+++ dbxml-2.4.16/dbxml/src/dbxml/query/DecisionPointQP.cpp
@@ -1,14 +1,13 @@
// See the file LICENSE for redistribution information.
// Copyright (c) 2002,2008 Oracle.  All rights reserved.
-// $Id$
#include "../DbXmlInternal.hpp"
#include "DecisionPointQP.hpp"
#include "QueryPlanHolder.hpp"
#include "../QueryContext.hpp"
#include "../Manager.hpp"
#include "../Container.hpp"
@@ -269,17 +268,17 @@ protected:
   XPath2MemoryManager *mm_;
DecisionPointQP::ListItem *DecisionPointQP::justInTimeOptimize(int contID, DynamicContext *context)
     // **** IMPORTANT - This algorithm is very carefully arranged to avoid
     // **** deadlocks and race-conditions. Don't rearrange things unless you
     // **** know what you are doing!
+     
     // Get the runtime configuration
     DbXmlConfiguration *conf = GET_CONFIGURATION(context);
     // Lookup the container
     ScopedContainer scont((Manager&)conf->getManager(), contID, /*mustExist*/true);
     // Just-in-time optimise the QueryPlan, using a temporary memory manager for thread safety
     XPath2MemoryManagerImpl tmpMM;
@@ -349,17 +348,18 @@ void DecisionPointQP::justInTimeOptimize
     qp->staticTypingLite(context);
          OptimizationContext opt(OptimizationContext::REARRANGE, context, 0, container);
          qp = qp->optimize(opt);
          qp->logQP(opt.getLog(), "OQP", qp, opt.getPhase());
          OptimizationContext opt(OptimizationContext::ALTERNATIVES, context, 0, container);
-          qp = qp->chooseAlternative(opt, "decision point", container->getContainerID() == 0);
+          opt.setCheckForSS(container->getContainerID() == 0);
+          qp = qp->chooseAlternative(opt, "decision point");
          qp->logQP(opt.getLog(), "OQP", qp, opt.getPhase());
          OptimizationContext opt(OptimizationContext::ADD_STEPS, context, 0, container);
          qp = qp->optimize(opt);
          qp->logQP(opt.getLog(), "OQP", qp, opt.getPhase());
@@ -390,26 +390,37 @@ DecisionPointQP::DecisionPointQP(const D
       removed_(false),
       qpList_(0),
       qpListDone_(o->qpListDone_),
       compileTimeMinder_(o->compileTimeMinder_),
       compileTimeContext_(o->compileTimeContext_)
     if(arg_ != 0)
          _src.add(arg_->getStaticAnalysis());
+     
+     bool checkForSS = opt.checkForSS();
+     
+     try {
+          ListItem **li = &qpList_;
+          for(ListItem *oli = o->qpList_; oli != 0; oli = oli->next) {
+               opt.setCheckForSS(oli->container->getContainerID() == 0);
+          
+               *li = new (mm) ListItem(oli->container, 0);
+               (*li)->qp = oli->qp->chooseAlternative(opt, "decision point");
-     ListItem **li = &qpList_;
-     for(ListItem *oli = o->qpList_; oli != 0; oli = oli->next) {
-          *li = new (mm) ListItem(oli->container, 0);
-          (*li)->qp = oli->qp->chooseAlternative(opt, "decision point", oli->container->getContainerID() == 0);
+               _src.add((*li)->qp->getStaticAnalysis());
-          _src.add((*li)->qp->getStaticAnalysis());
-          li = &(*li)->next;
+               li = &(*li)->next;
+          }
+     catch(...) {
+          opt.setCheckForSS(checkForSS);
+          throw;
+     }
+     opt.setCheckForSS(checkForSS);
DecisionPointQP::DecisionPointQP(const DecisionPointQP *o, XPath2MemoryManager *mm)
     : QueryPlan(DECISION_POINT, o->getFlags(), mm),
       dps_(o->dps_ ? o->dps_->copy(mm) : 0),
       arg_(o->arg_ ? o->arg_->copy(mm) : 0),
       removed_(false),
       qpList_(0),
diff -ru dbxml-2.4.16-original/dbxml/src/dbxml/query/QueryPlan.cpp dbxml-2.4.16/dbxml/src/dbxml/query/QueryPlan.cpp
--- dbxml-2.4.16-original/dbxml/src/dbxml/query/QueryPlan.cpp
+++ dbxml-2.4.16/dbxml/src/dbxml/query/QueryPlan.cpp
@@ -1,14 +1,13 @@
// See the file LICENSE for redistribution information.
// Copyright (c) 2002,2008 Oracle.  All rights reserved.
-// $Id$
#include "../DbXmlInternal.hpp"
#include <assert.h>
#include <string.h>
#include <sstream>
#include <set>
#include <algorithm>
@@ -128,23 +127,54 @@ void QueryPlan::createAlternatives(unsig
     createCombinations(maxAlternatives, opt, combinations);
     // Generate the alternatives by applying conversion rules to the combinations
     for(QueryPlans::iterator it = combinations.begin(); it != combinations.end(); ++it) {
          (*it)->applyConversionRules(maxAlternatives, opt, alternatives);
-CostSortItem::CostSortItem(QueryPlan *qp, OperationContext &oc, QueryExecutionContext &qec)
-     : qp_(qp), cost_(qp->cost(oc, qec))
+class ContainsSequentialScan : public NodeVisitingOptimizer
+public:
+     bool run(QueryPlan *qp)
+     {
+          found = false;
+          optimizeQP(qp);
+          return found;
+     }
+
+private:
+     virtual void resetInternal() {}
+
+     virtual ASTNode *optimize(ASTNode *item)
+     {
+          // Don't look inside ASTNode objects
+          return item;
+     }
+     virtual QueryPlan *optimizeSequentialScan(SequentialScanQP *item)
+     {
+          found = true;
+          return item;
+     }
+
+     bool found;
+};
+
+CostSortItem::CostSortItem(QueryPlan *qp, OperationContext &oc, QueryExecutionContext &qec, bool checkForSS)
+     : qp_(qp), cost_(qp->cost(oc, qec)),
+       hasSS_(false)
+{
+     if(checkForSS) hasSS_ = ContainsSequentialScan().run(qp);
bool CostSortItem::operator<(const CostSortItem &o) const
+        if(hasSS_ != o.hasSS_) return !hasSS_;
+     
     if(cost_.totalPages() < o.cost_.totalPages()) return true;
     if(cost_.totalPages() > o.cost_.totalPages()) return false;
     if(cost_.pagesOverhead < o.cost_.pagesOverhead) return true;
     if(cost_.pagesOverhead > o.cost_.pagesOverhead) return false;
     return qp_ < o.qp_;
@@ -189,22 +219,22 @@ void QueryPlan::createReducedAlternative
               if(i != costSortSet.end()) {
                    (*it)->release();
                    continue;
               ++alternativesCount;
-               costSortSet.insert(CostSortItem(*it, oc, qec));
+               costSortSet.insert(CostSortItem(*it, oc, qec, opt.checkForSS()));
               if(costSortSet.size() > ALTERNATIVES_THRESHOLD) {
                    // Trim all QueryPlans outside of a factor of the cost of the lowest cost QueryPlan
                    // TBD Make the specific factor configurable - jpcs
-                    set<CostSortItem>::iterator cutPoint = costSortSet.lower_bound(costSortSet.begin()->cost_.totalPages() * cutOffFactor);
+                    set<CostSortItem>::iterator cutPoint = costSortSet.lower_bound(CostSortItem(costSortSet.begin()->cost_.totalPages() * cutOffFactor, false));
                    if(cutPoint != costSortSet.begin() && cutPoint != costSortSet.end()) {
                         for(i = cutPoint; i != costSortSet.end(); ++i) {
                              if(Log::isLogEnabled(Log::C_OPTIMIZER, Log::L_DEBUG)) {
                                   ostringstream oss;
                                   oss << "Rejected Alternative (outside cut off factor: ";
                                   oss << (costSortSet.begin()->cost_.totalPages() * cutOffFactor);
                                   oss << ")";
                                   log(qec, oss.str());
@@ -247,54 +277,27 @@ void QueryPlan::createReducedAlternative
     } else {
          for(set<CostSortItem>::iterator i = costSortSet.begin(); i != costSortSet.end(); ++i) {
               alternatives.push_back(i->qp_);
-class ContainsSequentialScan : public NodeVisitingOptimizer
+static bool betterAlternativeCost(const Cost &costA, bool ssA, const Cost &costB, bool ssB, bool checkForSS)
-public:
-     bool run(QueryPlan *qp)
-          found = false;
-          optimizeQP(qp);
-          return found;
-private:
-     virtual void resetInternal() {}
-     virtual ASTNode *optimize(ASTNode *item)
-          // Don't look inside ASTNode objects
-          return item;
-     virtual QueryPlan *optimizeSequentialScan(SequentialScanQP *item)
-          found = true;
-          return item;
-     bool found;
-static bool betterAlternativeCost(const Cost &costA, bool ssA, const Cost &costB, bool ssB, bool noSequentialScan)
-     if(ssA != ssB && noSequentialScan) return ssB;
+     if(ssA != ssB && checkForSS) return ssB;
     if(costA.totalPages() < costB.totalPages()) return true;
     if(costA.totalPages() > costB.totalPages()) return false;
     return costA.pagesOverhead < costB.pagesOverhead;
-QueryPlan *QueryPlan::chooseAlternative(OptimizationContext &opt, const char *name, bool noSequentialScan) const
+QueryPlan *QueryPlan::chooseAlternative(OptimizationContext &opt, const char *name) const
     QueryPlans combinations;
     createCombinations(MAX_ALTERNATIVES, opt, combinations);
     // TBD remove the need for QueryExecutionContext here - jpcs
     QueryExecutionContext qec(GET_CONFIGURATION(opt.getContext())->getQueryContext(),
          /*debugging*/false);
     qec.setContainerBase(opt.getContainerBase());
@@ -313,17 +316,17 @@ QueryPlan *QueryPlan::chooseAlternative(
          for(QueryPlans::iterator it = myAlts.begin(); it != myAlts.end(); ++it) {
               ++alternativesCount;
               QueryPlan *qp = (*it);
               Cost itCost = qp->cost(opt.getOperationContext(), qec);
               bool itSS = ContainsSequentialScan().run(qp);
-               if(bestQP == 0 || betterAlternativeCost(itCost, itSS, bestCost, bestSS, noSequentialScan)) {
+               if(bestQP == 0 || betterAlternativeCost(itCost, itSS, bestCost, bestSS, opt.checkForSS())) {
                    if(bestQP != 0) {
                         log(qec, "Rejected Alternative (not best)");
                         bestQP->logCost(qec, bestCost, 0);
                         bestQP->release();
                    bestQP = qp;
                    bestCost = itCost;
                    bestSS = itSS;
diff -ru dbxml-2.4.16-original/dbxml/src/dbxml/query/QueryPlan.hpp dbxml-2.4.16/dbxml/src/dbxml/query/QueryPlan.hpp
--- dbxml-2.4.16-original/dbxml/src/dbxml/query/QueryPlan.hpp
+++ dbxml-2.4.16/dbxml/src/dbxml/query/QueryPlan.hpp
@@ -1,14 +1,13 @@
// See the file LICENSE for redistribution information.
// Copyright (c) 2002,2008 Oracle.  All rights reserved.
-// $Id$
#ifndef __QUERYPLAN_HPP
#define     __QUERYPLAN_HPP
#include <vector>
#include <set>
#include <string>
@@ -60,40 +59,44 @@ public:
          REARRANGE = 2,
          ALTERNATIVES = 3,
          ADD_STEPS = 4,
          MAKE_PREDICATES = 5,
          REMOVE_REDUNDENTS = 6
     OptimizationContext(Phase ph, DynamicContext *cn, QueryPlanOptimizer *qpo, ContainerBase *c = 0)
-          : phase_(ph), context_(cn), qpo_(qpo), container_(c), isFetched_(false) {}
+          : phase_(ph), context_(cn), qpo_(qpo), container_(c), isFetched_(false), checkForSS_(false) {}
     Phase getPhase() const { return phase_; }
     DynamicContext *getContext() const { return context_; }
     XPath2MemoryManager *getMemoryManager() const;
     QueryPlanOptimizer *getQueryPlanOptimizer() const { return qpo_; }
     void setQueryPlanOptimizer(QueryPlanOptimizer *qpo) { qpo_ = qpo; }
     ContainerBase *getContainerBase() const { return container_; }
     Transaction *getTransaction() const;
     OperationContext &getOperationContext() const;
     const IndexSpecification &getIndexSpecification() const;
     const Log &getLog() const;
+     bool checkForSS() const { return checkForSS_; }
+     void setCheckForSS(bool val) { checkForSS_ = val; }
+
private:
     Phase phase_;
     DynamicContext *context_;
     QueryPlanOptimizer *qpo_;
     ContainerBase *container_;
     mutable IndexSpecification is_;
     mutable bool isFetched_;
+     bool checkForSS_;
class QueryPlan : public LocationInfo
public:
     virtual ~QueryPlan() {}
     typedef enum {
          // Index lookups
@@ -176,17 +179,17 @@ public:
     virtual const StaticAnalysis &getStaticAnalysis() const { return _src; }
     virtual QueryPlan *optimize(OptimizationContext &opt) = 0;
     virtual void createCombinations(unsigned int maxAlternatives, OptimizationContext &opt, QueryPlans &combinations) const;
     virtual void applyConversionRules(unsigned int maxAlternatives, OptimizationContext &opt, QueryPlans &alternatives);
     void createAlternatives(unsigned int maxAlternatives, OptimizationContext &opt, QueryPlans &alternatives) const;
     void createReducedAlternatives(double cutOffFactor, unsigned int maxAlternatives, OptimizationContext &opt, QueryPlans &alternatives) const;
-     QueryPlan *chooseAlternative(OptimizationContext &opt, const char *name, bool noSequentialScan = false) const;
+     QueryPlan *chooseAlternative(OptimizationContext &opt, const char *name) const;
     virtual NodeIterator *createNodeIterator(DynamicContext *context) const = 0;
     virtual Cost cost(OperationContext &context, QueryExecutionContext &qec) const = 0;
     /** Returns the QueryPlanRoot objects from the PathsQP in this QueryPlan */
     virtual void findQueryPlanRoots(QPRSet &qprset) const = 0;
     /// Returns true if it's sure. Returns false if it doesn't know
     virtual bool isSubsetOf(const QueryPlan *o) const = 0;
@@ -536,20 +539,21 @@ protected:
     ImpliedSchemaNode *isn2_;
     QPValue value2_;
     DbWrapper::Operation operation2_;
struct CostSortItem {
-     CostSortItem(double cost) : qp_(0), cost_(0, cost) {}
-     CostSortItem(QueryPlan *qp, OperationContext &oc, QueryExecutionContext &qec);
+     CostSortItem(double cost, bool hasSS) : qp_(0), cost_(0, cost), hasSS_(hasSS) {}
+     CostSortItem(QueryPlan *qp, OperationContext &oc, QueryExecutionContext &qec, bool checkForSS);
     bool operator<(const CostSortItem &o) const;
     QueryPlan *qp_;
     Cost cost_;
+     bool hasSS_;
#endif
diff -ru dbxml-2.4.16-original/dbxml/src/dbxml/query/SequentialScanQP.cpp dbxml-2.4.16/dbxml/src/dbxml/query/SequentialScanQP.cpp
--- dbxml-2.4.16-original/dbxml/src/dbxml/query/SequentialScanQP.cpp
+++ dbxml-2.4.16/dbxml/src/dbxml/query/SequentialScanQP.cpp
@@ -1,14 +1,13 @@
// See the file LICENSE for redistribution information.
// Copyright (c) 2002,2008 Oracle.  All rights reserved.
-// $Id$
#include "../DbXmlInternal.hpp"
#include "SequentialScanQP.hpp"
#include "StepQP.hpp"
#include "QueryExecutionContext.hpp"
#include "../ContainerBase.hpp"
#include "../Document.hpp"
@@ -134,16 +133,17 @@ QueryPlan *SequentialScanQP::optimize(Op
     return this;
NodeIterator *SequentialScanQP::createNodeIterator(DynamicContext *context) const
+     DBXML_ASSERT(container_->getContainerID() != 0);
     if(nodeType_ == ImpliedSchemaNode::METADATA) {
          return container_->createDocumentIterator(context, this);
     } else {
          NamedNodeIterator *result;
          if(nodeType_ == ImpliedSchemaNode::ATTRIBUTE) {
               result = container_->createAttributeIterator(context,
                                             this,
                                             nsUriID_);

Similar Messages

  • Please a solution against crashes when opening a file with Acrobat XI pro?

    Hello,
    Am a member of Adobe Creative Cloud.
    Am also constantly having crashes when opening a file with Acrobat XI pro.
    Am running on Windows 7 Home Premium, Service Pack 1, 64 bit - RAM 20 GB -
    The crash happens systematically after the installation of the update. Within one day I uninstalled and reinstalled the program 4x! It takes of a lot of my time.... Thank you for providing a definitive solution!
    Best regards

    I've been having the same issue!  I try to open it and it crashes - says re-open, it crashes...  I re-installed it yesterday and it opened and worked fine.  Closed it out at the end of the day thinking everything was finally fine but this morning the same crashes it had yesterday...  HELP!!!

  • When i close window with multiple tabs angd start new session (open new window) old tabs open again, how can i stop it?

    when i close window with multiple tabs and start new session (open new window) old tabs open again, how can i stop it?

    It is possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Mail crashes when executing a rule that runs an applescript

    I have set up a rule in mail that when executed runs an apple script. Most of the time it crashes mail, but occasionally runs completely or just partially. Doesn't matter what the apple script is, most of the time it will just crash. I've done a clean install of OS X, so the system is in pristeen condition.
    The rule says if an message is from the specified sender then to execute the applescript. I invoke the rule by right clicking on a message from the sender and selecting the 'apply rules' menu item, or when a new message from the sender arrives in the mail box.
    Here's the applescript (a edited version of one of the scripts that was included from Apple)
    using terms from application "Mail"
    on perform mail action with messages theMessages for rule theRule
    tell application "Mail"
    repeat with eachMessage in theMessages
    set theSubject to subject of eachMessage
    set theSender to sender of eachMessage
    set theText to "Sender:" & theSender & return & "Subject: " & theSubject
    display dialog theText
    end repeat
    end tell
    end perform mail action with messages
    end using terms from
    Here's the crash report (copied from the 'Problem Report for Mail' window)
    Date/Time: 2007-04-03 23:14:41.074 -0500
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [60]
    Version: 2.1 (752)
    Build Version: 22
    Project Name: MailViewer
    Source Version: 7520000
    PID: 280
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000002a
    Thread 0 Crashed:
    0 libRIP.A.dylib 0x947d154c RIPLayerIntersect + 40
    1 libRIP.A.dylib 0x947cbb40 ripc_GetClipState + 2112
    2 libRIP.A.dylib 0x947cb08c ripc_GetRenderingState + 204
    3 libRIP.A.dylib 0x947ca1a4 ripc_DrawImage + 152
    4 com.apple.CoreGraphics 0x903d4064 CGContextDelegateDrawImage + 76
    5 com.apple.CoreGraphics 0x903d3fbc CGContextDrawImage + 340
    6 com.apple.HIToolbox 0x932c6ea0 _ThemeImageDrawMultiple + 1412
    7 com.apple.HIToolbox 0x93375128 HIThemeDrawButtonPulsed(CGRect const*, ThemeImageDrawInfo*, unsigned long, HIThemeButtonDrawInfo const*, CGContext*) + 404
    8 com.apple.HIToolbox 0x93360ba8 HIThemeDrawButtonInternal(CGRect const*, HIThemeButtonDrawInfo const*, HIThemeButtonDrawInfo const*, ThemeEraseXUPP*, ThemeButtonDrawXUPP*, unsigned long, CGContext*, unsigned long, CGRect*) + 12264
    9 com.apple.HIToolbox 0x9335dbb0 HIThemeDrawButton + 44
    10 com.apple.HIToolbox 0x933712d0 HIPushButton::DrawSelf(short, __HIShape const*, CGContext*) + 412
    11 com.apple.HIToolbox 0x932c26dc HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 328
    12 com.apple.HIToolbox 0x932c2438 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 100
    13 com.apple.HIToolbox 0x93370fc4 HIView::RecursiveDrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char) + 468
    14 com.apple.HIToolbox 0x933706e4 HIView::DrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned long) + 312
    15 com.apple.HIToolbox 0x93379440 Draw1Control + 68
    16 com.apple.HIToolbox 0x93455698 HIPushButton::Animate() + 428
    17 com.apple.HIToolbox 0x934314e8 HIStandardAnimator::TimerProc(__EventLoopTimer*, void*) + 72
    18 com.apple.CoreFoundation 0x907f2578 __CFRunLoopDoTimer + 184
    19 com.apple.CoreFoundation 0x907deef8 __CFRunLoopRun + 1680
    20 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    21 com.apple.HIToolbox 0x93298b20 RunCurrentEventLoopInMode + 264
    22 com.apple.HIToolbox 0x932981b4 ReceiveNextEventCommon + 380
    23 com.apple.HIToolbox 0x93298020 BlockUntilNextEventMatchingListInMode + 96
    24 com.apple.AppKit 0x9377dae4 _DPSNextEvent + 384
    25 com.apple.AppKit 0x9377d7a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    26 com.apple.AppKit 0x93779cec -[NSApplication run] + 472
    27 com.apple.AppKit 0x9386a87c NSApplicationMain + 452
    28 com.apple.mail 0x000871d8 0x1000 + 549336
    29 com.apple.mail 0x00087080 0x1000 + 548992
    Thread 1:
    0 libSystem.B.dylib 0x9004a828 syscallthreadswitch + 8
    1 com.apple.Foundation 0x92bf95dc +[NSThread sleepUntilDate:] + 152
    2 com.apple.AppKit 0x9381aa10 -[NSUIHeartBeat _heartBeatThread:] + 1100
    3 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf0170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf00a8 -[NSRunLoop run] + 76
    6 com.apple.MessageFramework 0x9a25c198 +[_NSSocket _runIOThread] + 92
    7 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001fa0c select + 12
    1 com.apple.CoreFoundation 0x907f1434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002f20c kevent + 12
    1 com.apple.DesktopServices 0x92af4eb0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc683c PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc6a2c MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92af552c TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x90bc683c PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900552c4 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c605d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c604f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9a257d90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900552c4 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c605d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c604f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9a257d90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900552c4 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c605d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c604f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9a257d90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x93298b20 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x932981b4 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x932dd348 AcquireNextEventInMode + 72
    7 com.apple.HIToolbox 0x9348e278 _RunAppModalLoop + 96
    8 ...pple.osax.standardadditions 0x05d1bfec dyldstub__keymgr_get_and_lock_processwideptr + 97418156
    9 com.apple.AE 0x914ff960 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 208
    10 com.apple.AE 0x9150afc0 sendToSelf(AEDesc const*, AEDesc*, long, long) + 372
    11 com.apple.AE 0x915038f8 AESendMessage + 648
    12 com.apple.AE 0x915033d4 aeSend + 224
    13 com.apple.HIToolbox 0x933468c8 AESend + 108
    14 com.apple.applescript 0x9898ed60 AEDefaultSendProc(AEDesc const*, AEDesc*, long, short, long, unsigned char ()(EventRecord, long*, OpaqueRgnHandle**), unsigned char ()(EventRecord, long, long, AEDesc const*), long) + 16
    15 com.apple.openscripting 0x930d5c5c InvokeOSASendUPP + 24
    16 com.apple.applescript 0x9898ed2c ComponentSend(AEDesc const*, AEDesc*, long, long) + 112
    17 com.apple.applescript 0x989cb708 TUASApplication::Send(TStackFrame_UASRemoteSend*, AEDesc*, AEDesc*, unsigned char, unsigned char, unsigned char) + 1424
    18 com.apple.applescript 0x989edfd8 UASRemoteSend(unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char*) + 368
    19 com.apple.applescript 0x989fe354 UASValue_Send(unsigned char, unsigned char, TUASClassIndex, unsigned char) + 352
    20 com.apple.applescript 0x989cf910 UASExecute1() + 328
    21 com.apple.applescript 0x989b18c8 ASExecuteEvent(AEDesc const*, unsigned long, long, unsigned long*) + 900
    22 ...ple.CoreServices.CarbonCore 0x90bdf11c CallComponentFunctionCommon + 1112
    23 com.apple.applescript 0x98985418 AppleScriptComponent + 1712
    24 ...ple.CoreServices.CarbonCore 0x90bdec60 CallComponent + 260
    25 com.apple.applescript 0x98984694 AGenericManager::HandleOSACall(ComponentParameters*) + 72
    26 com.apple.applescript 0x989842e4 GenericComponent + 216
    27 ...ple.CoreServices.CarbonCore 0x90bdec60 CallComponent + 260
    28 com.apple.openscripting 0x930ea878 OSAExecuteEvent + 52
    29 com.apple.Foundation 0x92cdd9dc -[NSAppleScript(NSPrivate) _executeAppleEvent:withMode:error:] + 164
    30 com.apple.MessageFramework 0x9a31fdb0 -[NSAppleScript(MessageRuleAdditions) executeHandlerWithEventClass:eventID:andArguments:error:] + 596
    31 com.apple.MessageFramework 0x9a31f8e0 +[NSAppleScript(MessageRuleAdditions) executeHandlerWithEventClass:eventID:inScriptAtPath:withArguments:error:] + 112
    32 com.apple.MessageFramework 0x9a2d2be4 -[MessageRule _performAppleScriptActionWithMessages:] + 264
    33 com.apple.MessageFramework 0x9a2c178c -[MessageRule performActionsOnMessages:destinationStores:rejectedMessages:messagesToBeDeleted :] + 172
    34 com.apple.MessageFramework 0x9a2c15f0 _routeMessagesInDictionary + 168
    35 com.apple.MessageFramework 0x9a2c0b58 -[MessageRouter routeMessages:fromStores:] + 1660
    36 com.apple.mail 0x000eeedc 0x1000 + 974556
    37 libobjc.A.dylib 0x90a461f4 objc_msgSendv + 180
    38 com.apple.Foundation 0x92bdcc94 -[NSInvocation invoke] + 944
    39 com.apple.MessageFramework 0x9a24e800 -[MonitoredInvocation invoke] + 144
    40 com.apple.MessageFramework 0x9a24e67c +[WorkerThread _execute:] + 76
    41 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    42 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...apple.AddressBook.framework 0x94dcdcac -[ABRemoteImageLoader workLoop] + 132
    3 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000947d154c srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x44482224 xer: 0x0000000000000004 lr: 0x00000000947d1530 ctr: 0x0000000000000000
    r0: 0x00000000947cbb40 r1: 0x00000000bfffdac0 r2: 0x0000000000000000 r3: 0x0000000005e136d0
    r4: 0x000000000000002a r5: 0x0000000000000010 r6: 0x0000000000000006 r7: 0x0000000000000000
    r8: 0x0000000000000001 r9: 0x0000000005e136d0 r10: 0x0000000005f0026d r11: 0x0000000028482222
    r12: 0x000000009012a680 r13: 0x0000000005e12c50 r14: 0x00000000bfffe720 r15: 0x0000000005e13680
    r16: 0x0000000005e13900 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x00000000bfffdb50
    r20: 0x0000000005e13900 r21: 0x00000000052fb230 r22: 0x0000000005e14770 r23: 0x0000000000000001
    r24: 0x0000000005e136e4 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x0000000005e12cb0
    r28: 0x0000000000000000 r29: 0x0000000005e136d0 r30: 0x0000000005e136d0 r31: 0x00000000947d1530
    Binary Images Description:
    0x1000 - 0x199fff com.apple.mail 2.1 (752) /Applications/Mail.app/Contents/MacOS/Mail
    0x5565000 - 0x5578fff com.apple.Mail.Syncer 1.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x5c5e000 - 0x5c60fff com.apple.AutomatorCMM 1.0 (48) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x5c63000 - 0x5c67fff com.apple.FolderActionsMenu 1.3 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x5c73000 - 0x5c73fff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x5c85000 - 0x5c85fff com.apple.applescript.component 1.10.7 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x5ca0000 - 0x5ca0fff com.apple.osax.digihub 1.0 /System/Library/ScriptingAdditions/Digital Hub Scripting.osax/Contents/MacOS/Digital Hub Scripting
    0x5d0c000 - 0x5d49fff com.apple.osax.standardadditions 1.10.7 (???) /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/Standa rdAdditions
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90215000 - 0x9021afff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021c000 - 0x90269fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90294000 - 0x90345fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90374000 - 0x9072ffff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bc000 - 0x90895fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.9 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd3fff com.apple.CFNetwork 4.0 (129.20) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x91414fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91427000 - 0x91432fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91437000 - 0x9143ffff libbsm.dylib /usr/lib/libbsm.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91cdffff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce4000 - 0x91d21fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d28000 - 0x91d41fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d46000 - 0x91d49fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4b000 - 0x91e29fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e49000 - 0x91e49fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4b000 - 0x91f30fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f38000 - 0x91f57fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc3000 - 0x92031fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203c000 - 0x920d1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920eb000 - 0x92673fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a6000 - 0x929d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a01000 - 0x92aeffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af2000 - 0x92b7afff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbb000 - 0x92de6fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f04000 - 0x92f0efff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x92f13000 - 0x92f31fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3c000 - 0x92f96fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb4000 - 0x92fb4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb6000 - 0x92fcafff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe2000 - 0x92ff2fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffe000 - 0x93013fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93025000 - 0x930acfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c0000 - 0x930cbfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d5000 - 0x93102fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311c000 - 0x9312bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93137000 - 0x9319dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931ce000 - 0x9321dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324b000 - 0x93268fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327a000 - 0x93287fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93290000 - 0x9359efff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936ee000 - 0x936fafff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936ff000 - 0x9371ffff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93773000 - 0x93773fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93775000 - 0x93da8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94135000 - 0x941a7fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e0000 - 0x942a4fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f6000 - 0x942f6fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942f8000 - 0x944b8fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94502000 - 0x9453ffff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94547000 - 0x94597fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a0000 - 0x945b4fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945f9000 - 0x9463efff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x946c5000 - 0x946e1fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x946f5000 - 0x94739fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9475d000 - 0x9476cfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94774000 - 0x94781fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947c7000 - 0x947e0fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94b80000 - 0x94bf1fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94d8c000 - 0x94ebcfff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f4e000 - 0x94f5dfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94f65000 - 0x94f92fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94f99000 - 0x94fa9fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94fad000 - 0x94fdcfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94fec000 - 0x95009fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95507000 - 0x95635fff edu.mit.Kerberos 5.5.23 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95722000 - 0x957b0fff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9580c000 - 0x958a2fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x958df000 - 0x95bebfff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95d74000 - 0x95d9dfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95da5000 - 0x95e21fff com.apple.syncservices 2.5 (194) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x95fc9000 - 0x95ffbfff com.apple.PDFKit 1.0.3 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96013000 - 0x96018fff com.apple.URLMount 2.1.3 /System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
    0x96f6f000 - 0x96f8efff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x975ff000 - 0x97624fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97a61000 - 0x97a77fff com.apple.AppleShareClient 1.5.1 /System/Library/Frameworks/AppleShareClient.framework/Versions/A/AppleShareClie nt
    0x97a81000 - 0x97abffff com.apple.AppleShareClientCore 1.5.1 /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
    0x9801d000 - 0x9802bfff com.apple.DMNotification 1.0.4 (37) /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x9823c000 - 0x9830dfff com.apple.QuartzComposer 1.2.4 (32.22) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9838a000 - 0x9838afff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98503000 - 0x9851bfff com.apple.slideshow 1.0.4 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    0x988d8000 - 0x9891bfff com.apple.ISSupport 1.0.3 (16) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x98941000 - 0x98968fff com.apple.DotMacSyncManager 1.0.4 (155) /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x98983000 - 0x98a2dfff com.apple.applescript 1.10.7 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x98a92000 - 0x98ad5fff com.apple.PAPICommon 2.5 (131) /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x9a228000 - 0x9a233fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a23e000 - 0x9a397fff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Power Mac G4 (dual 1GH mirror)   Mac OS X (10.4.9)  
    Power Mac G4 (dual 1GH mirror)   Mac OS X (10.4.9)  
    Power Mac G4 (dual 1GH mirror)   Mac OS X (10.4.9)  
    Power Mac G4 (dual 1GH mirror)   Mac OS X (10.4.9)  

    I saw that link you mentioned when I googled previously to comming here looking for similar issues.
    Here is Apple's example script, you can easily view it by turning on the Script menu bar in the AppleScript Utility application, then in Mail hold down the option key while accessing the script menu, Mail Scripts -> Rule Actions -> Sample Rule Action Script
    Sample Rule Action Script
    Copyright © 2003 Apple Computer, Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction. This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours. You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes. If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    This script is an example of how to write an AppleScript that can be
    attached as a rule action. See Mail Help for details and Mail's
    AppleScript dictionary for the full terminology for the 'perform mail
    action with messages' handler.
    If you attach this script to a rule action, and the rule
    matches an incoming message, a dialog box will display, showing
    the name of the rule that matched and the subject of the message
    that matched. One dialog per matched message will appear.
    This is also an example of how you can write scripts that appear in the
    Scripts menu and can pass in parameters for the selected messages and/or
    mailboxes in Mail's main viewer window.
    using terms from application "Mail"
    on perform mail action with messages theMessages for rule theRule
    tell application "Mail"
    set theText to "This AppleScript is intended to be used as an AppleScript rule action, but is also an example of how to write scripts that act on a selection of messages or mailboxes." & return & return & "To view this script, hold down the option key and select it again from the Scripts menu."
    repeat with eachMessage in theMessages
    set theSubject to subject of eachMessage
    try
    -- If this is not being executed as a rule action,
    -- getting the name of theRule variable will fail.
    set theRuleName to name of theRule
    set theText to "The rule named '" & theRuleName & "' matched this message:"
    set theText to theText & return & return & "Subject: " & theSubject
    display dialog theText
    set theText to ""
    end try
    end repeat
    if theText is not equal to "" then
    display dialog theText buttons {"OK"} default button 1
    end if
    end tell
    end perform mail action with messages
    end using terms from
    As far as Mail being busy I've disabled, junk mail filtering, set Check for New Mail to Manually and disabled all other rules except the one that I'm trying to debug here. Additionally Mail is only configured for 2 POP mail boxes that are completely empty except for the 1 email message that would meet the rule's condition. I run the rule by right clicking on the email and then selecting Apply Rules.
    The following AppleScript works... instead of using display dialog, I create a new mail message and set the body of the message to the text I want to display... work great!
    using terms from application "Mail"
    on perform mail action with messages theMessages for rule theRule
    tell application "Mail"
    repeat with eachMessage in theMessages
    set theNewBody to subject of eachMessage & return
    set theNewBody to theNewBody & sender of eachMessage & return
    set theNewSubject to "display dialog message..."
    set newMessage to make new outgoing message with properties {subject:theNewSubject, content:theNewBody & return & return}
    tell newMessage
    set visible to true
    end tell
    end repeat
    end tell
    end perform mail action with messages
    end using terms from
    So it definitely appears to be an issue with the Display Dialog command. Makes debugging scripts kind of hard
    Thanks for your help debugging the issue. I profess I don't know how to read the crash logs, how could you tell that it was the display dialog command, causing Mail to crash? Is there any other info that is in there that could help us figure out why it only crashes about 95% of the time?
    Is there anyway to tell if this has been submitted to apple as a mail/applescript bug? But is there any know work around?
    Regards,
    -- Greg

  • Iphoto crashes when trying to open with the existing db

    Hi there,
    iPhoto keeps crashing when i try to launch it with the existing db. I can open it with a new db but am not sure how I can get the old one working.
    I love using iPhoto with all the events, faces and other features. Is there a way to get all them back?
    Thank you in advance
    Here is the crash log:
    Process:         iPhoto [270]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.3 (9.4.3)
    Build Info:      iPhotoProject-720091000000000~1
    App Item ID:     408981381
    App External ID: 15017489
    Code Type:       X86 (Native)
    Parent Process:  launchd [123]
    User ID:         501
    Date/Time:       2013-08-30 17:40:29.477 +0300
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          223 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  8 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      14DBC6AD-2C67-87D4-F3EB-208F45A7B3D8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x921a0e8b __raiseError + 219
    1   libobjc.A.dylib                     0x95c5a52e objc_exception_throw + 230
    2   CoreFoundation                      0x920ac07b -[__NSArrayM insertObject:atIndex:] + 299
    3   CoreFoundation                      0x920abf40 -[__NSArrayM addObject:] + 64
    4   iPhoto                              0x00069858 iPhoto + 256088
    5   iPhoto                              0x00350d0c iPhoto + 3300620
    6   iPhoto                              0x0026065c iPhoto + 2315868
    7   libdispatch.dylib                   0x982f1cb1 _dispatch_barrier_sync_f_slow_invoke + 80
    8   libdispatch.dylib                   0x982ebc82 _dispatch_client_callout + 46
    9   libdispatch.dylib                   0x982f12e3 _dispatch_main_queue_callback_4CF + 223
    10  CoreFoundation                      0x9209cc29 __CFRunLoopRun + 1961
    11  CoreFoundation                      0x9209c01a CFRunLoopRunSpecific + 378
    12  CoreFoundation                      0x9209be8b CFRunLoopRunInMode + 123
    13  HIToolbox                           0x92a48f5a RunCurrentEventLoopInMode + 242
    14  HIToolbox                           0x92a48cc9 ReceiveNextEventCommon + 374
    15  HIToolbox                           0x92a48b44 BlockUntilNextEventMatchingListInMode + 88
    16  AppKit                              0x997c993a _DPSNextEvent + 724
    17  AppKit                              0x997c916c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    18  AppKit                              0x997bf5cc -[NSApplication run] + 855
    19  AppKit                              0x997625f6 NSApplicationMain + 1053
    20  iPhoto                              0x0003b0b9 iPhoto + 65721
    21  iPhoto                              0x0003a705 iPhoto + 63237
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x921a16a7 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                         0x95c5a52e objc_exception_throw + 230
    2   com.apple.CoreFoundation                0x920ac07b -[__NSArrayM insertObject:atIndex:] + 299
    3   com.apple.CoreFoundation                0x920abf40 -[__NSArrayM addObject:] + 64
    4   com.apple.iPhoto                        0x00069858 0x2b000 + 256088
    5   com.apple.iPhoto                        0x00350d0c 0x2b000 + 3300620
    6   com.apple.iPhoto                        0x0026065c 0x2b000 + 2315868
    7   libdispatch.dylib                       0x982f1cb1 _dispatch_barrier_sync_f_slow_invoke + 80
    8   libdispatch.dylib                       0x982ebc82 _dispatch_client_callout + 46
    9   libdispatch.dylib                       0x982f12e3 _dispatch_main_queue_callback_4CF + 223
    10  com.apple.CoreFoundation                0x9209cc29 __CFRunLoopRun + 1961
    11  com.apple.CoreFoundation                0x9209c01a CFRunLoopRunSpecific + 378
    12  com.apple.CoreFoundation                0x9209be8b CFRunLoopRunInMode + 123
    13  com.apple.HIToolbox                     0x92a48f5a RunCurrentEventLoopInMode + 242
    14  com.apple.HIToolbox                     0x92a48cc9 ReceiveNextEventCommon + 374
    15  com.apple.HIToolbox                     0x92a48b44 BlockUntilNextEventMatchingListInMode + 88
    16  com.apple.AppKit                        0x997c993a _DPSNextEvent + 724
    17  com.apple.AppKit                        0x997c916c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    18  com.apple.AppKit                        0x997bf5cc -[NSApplication run] + 855
    19  com.apple.AppKit                        0x997625f6 NSApplicationMain + 1053
    20  com.apple.iPhoto                        0x0003b0b9 0x2b000 + 65721
    21  com.apple.iPhoto                        0x0003a705 0x2b000 + 63237
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9496c9ae kevent + 10
    1   libdispatch.dylib                       0x982eec71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x982ee7a9 _dispatch_mgr_thread + 53
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x9496980e semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x982f0e70 _dispatch_thread_semaphore_wait + 25
    2   libdispatch.dylib                       0x982f0ccc _dispatch_barrier_sync_f_slow + 149
    3   libdispatch.dylib                       0x982ed3fb dispatch_barrier_sync_f + 37
    4   libdispatch.dylib                       0x982f1c5a _dispatch_sync_slow + 70
    5   com.apple.iPhoto                        0x002605fc 0x2b000 + 2315772
    6   com.apple.Foundation                    0x913c9f27 -[NSBlockOperation main] + 188
    7   com.apple.Foundation                    0x9139d259 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x9139cf64 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x913a5039 __block_global_6 + 135
    10  libdispatch.dylib                       0x982eff8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x982ebc82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x982ecf02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x995c0e72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x995a8d2a start_wqthread + 30

    Here's how to repair your iPhoto database.
    How to Rebuild/Repair an iPhoto Library.

  • Illustrator CC keeps crashing when opening a file with placed image

    I get this message:
    and regardless of what I click (Replace, Ignore, Cancel) the program crashes.
    Below is the crash report I get:
    Process:         Adobe Illustrator [954]
    Path:            /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         256 (17.0.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [170]
    User ID:         501
    Date/Time:       2013-09-30 10:41:13.521 -0400
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          61535 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  37856 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      A312EF8F-A9EC-D426-709E-D538E4DA0B32
    Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminate called without an active exception
    abort() called
    Thread 0 Crashed:: Main Thread  Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff85071212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8e6ccb54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8e710dce abort + 143
    3   libc++abi.dylib                         0x00007fff86c799eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff86c773a8 default_terminate() + 42
    5   libc++abi.dylib                         0x00007fff86c773c9 safe_handler_caller(void (*)()) + 8
    6   libc++abi.dylib                         0x00007fff86c77424 std::terminate() + 16
    7   libc++abi.dylib                         0x00007fff86c7861b __cxa_rethrow + 85
    8   com.adobe.illustrator.plugins.svgFileFormat          0x00000001192b4c01 0x119232000 + 535553
    9   com.adobe.illustrator.plugins.svgFileFormat          0x00000001192b55a9 0x119232000 + 538025
    10  com.adobe.illustrator.plugins.svgFileFormat          0x00000001192b7643 0x119232000 + 546371
    11  com.adobe.illustrator.plugins.svgFileFormat          0x00000001192b3069 0x119232000 + 528489
    12  com.adobe.illustrator.plugins.svgFileFormat          0x00000001192b3129 0x119232000 + 528681
    13  com.adobe.illustrator.plugins.svgFileFormat          0x00000001192b2c9b 0x119232000 + 527515
    14  com.adobe.illustrator.plugins.svgFileFormat          0x00000001192b74b3 0x119232000 + 545971
    15  com.adobe.illustrator.plugins.svgFileFormat          0x0000000119261540 0x119232000 + 193856
    16  com.adobe.illustrator.plugins.SVGFilterEffect          0x000000012aba6903 0x12ab9d000 + 39171
    17  com.adobe.illustrator.plugins.SVGFilterEffect          0x000000012aba18ff 0x12ab9d000 + 18687
    18  com.adobe.illustrator.plugins.SVGFilterEffect          0x000000012aba399f 0x12ab9d000 + 27039
    19  com.adobe.illustrator.plugins.SVGFilterEffect          0x000000012aba34d0 0x12ab9d000 + 25808
    20  com.adobe.illustrator.plugins.SVGFilterEffect          0x000000012aba0d74 0x12ab9d000 + 15732
    21  com.adobe.illustrator.plugins.SVGFilterEffect          0x000000012ab9e69d PluginMain + 301
    22  com.adobe.illustrator                   0x0000000100aba158 spEdgeCallPlugin(SPAccess*, char const*, char const*, void*, int*) + 152
    23  com.adobe.illustrator                   0x0000000100ab5423 SPCallPlugin + 99
    24  com.adobe.illustrator                   0x0000000100ab8066 SPSendMessage + 646
    25  com.adobe.illustrator                   0x00000001006b6605 fxCallPlugin(SPPlugin*, char const*, void*) + 1573
    26  com.adobe.illustrator                   0x0000000100856261 _t_AILiveEffectOpaque::Execute(Ref<CAIFilterExecution, CountedObject::Traits>, ArtObject*, Ref<CAIArtStyle, CountedObject::Traits>) const + 5297
    27  com.adobe.illustrator                   0x00000001002b9bf1 CAIFilterExecution::Execute(ArtObject*, Ref<CAIArtStyle, CountedObject::Traits>) + 241
    28  com.adobe.illustrator                   0x00000001002a71e3 CAIChainStyleFilter::Execute(Ref<CAIFilterExecution, CountedObject::Traits>, ArtObject*, Ref<CAIArtStyle, CountedObject::Traits>, ArtObject*) const + 2467
    29  com.adobe.illustrator                   0x00000001002a7791 CAIChainStyleFilter::Execute(Ref<CAIFilterExecution, CountedObject::Traits>, ArtObject*, Ref<CAIArtStyle, CountedObject::Traits>) const + 129
    30  com.adobe.illustrator                   0x00000001002a8bef CAICompoundFilterExecution::Execute(ArtObject*, Ref<CAIArtStyle, CountedObject::Traits>) + 127
    31  com.adobe.illustrator                   0x0000000100284a44 CAIArtStyle::ExecActiveStyle(ArtObject*) + 1028
    32  com.adobe.illustrator                   0x000000010028341d CAIArtStyle::Execute(ArtObject*) + 1341
    33  com.adobe.illustrator                   0x0000000100282972 CAIArtStyle::GetStyledArt(ArtObject*, bool) + 722
    34  com.adobe.illustrator                   0x0000000100282489 CAIArtStyle::CleanupDirtyDescendants(ArtObject* const&) + 233
    35  com.adobe.illustrator                   0x00000001002825cc CAIArtStyle::CleanupDirtyDescendants(ArtObject* const&) + 556
    36  com.adobe.illustrator                   0x000000010016c652 Artwork::ExecuteRemainingStyles() + 146
    37  com.adobe.illustrator                   0x000000010016c589 ValidatePluginObjectsAndStyles(Artwork*) + 41
    38  com.adobe.illustrator                   0x00000001007734ab PluginArtIdle(unsigned long) + 59
    39  com.adobe.illustrator                   0x00000001006e5a31 PluginsIdle(IdlePurpose) + 65
    40  com.adobe.illustrator                   0x000000010051e55b WindowIdle(IdlePurpose) + 443
    41  com.adobe.illustrator                   0x000000010042f67a CAIApplication::Idle(IdlePurpose) + 170
    42  com.adobe.illustrator                   0x00000001001fa97d CommandDoInternal(CAIEvent*, int, int) + 301
    43  com.adobe.illustrator                   0x0000000100486598 CAIExoAppEventHandler::DispatchMenuEvent(CAIEvent&) + 376
    44  com.adobe.illustrator                   0x00000001004863ba CAIExoAppEventHandler::HandleAIEvent(CAIEvent&) + 42
    45  com.adobe.illustrator                   0x0000000100486e34 CAIExoAppEventHandler::DispatchKeyEvent(CAIEvent&) + 1284
    46  com.adobe.illustrator                   0x00000001003f6f9f CAIExoAppMacEventHandler::DispatchKeyEvent(CAIEvent&) + 223
    47  com.adobe.illustrator                   0x00000001003f6e85 CAIExoAppMacEventHandler::DispatchKeyEvent(unsigned short const&, unsigned short const&, unsigned long const&) + 197
    48  com.adobe.illustrator                   0x00000001003f6d35 CAIExoAppMacEventHandler::HandleForwardedEvent(dvaui::ui::OS_Event const&) + 293
    49  com.adobe.illustrator                   0x00000001003f6a10 CAIExoAppMacEventHandler::PreProcessEvent(dvaui::ui::OS_Event const&) + 448
    50  com.adobe.illustrator                   0x00000001004895ff CAIExoAppImpl::DoPreEventProcessing(dvaui::ui::OS_Event const&) + 47
    51  com.adobe.exo.framework                 0x00000001097eb98d exo::app::AppBase::PreEventProcessing(dvaui::ui::OS_Event const&) + 13
    52  com.adobe.exo.framework                 0x00000001097f41a4 boost::detail::function::function_obj_invoker0<boost::_bi::bind_t<bool, boost::_mfi::mf1<bool, exo::app::AppBase, dvaui::ui::OS_Event const&>, boost::_bi::list2<boost::_bi::value<exo::app::OS_AppBase*>, boost::_bi::value<dvaui::ui::OS_Event> > >, bool>::invoke(boost::detail::function::function_buffer&) + 36
    53  com.adobe.illustrator                   0x0000000100401207 int dvacore::config::ErrorManager::ExecuteFunction<bool>(boost::function0<bool>*, bool*) + 71
    54  com.adobe.illustrator                   0x0000000100489a52 DroverErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0<int>) + 66
    55  com.adobe.illustrator                   0x00000001004010bc bool dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<bool>(boost::f unction0<bool>, bool*) + 140
    56  com.adobe.illustrator                   0x0000000100400c9d bool dvacore::config::ExecuteTopLevelFunction<bool>(boost::function0<bool>, bool*) + 125
    57  com.adobe.exo.framework                 0x00000001097f03c7 -[ExoMacApplication sendEvent:] + 359
    58  com.apple.AppKit                        0x00007fff8e97d21a -[NSApplication run] + 636
    59  com.adobe.exo.framework                 0x00000001097efeb8 exo::app::OS_AppBase::RunEventLoop() + 56
    60  com.adobe.illustrator                   0x0000000100488195 CAIExoAppImpl::RunEventLoop() + 21
    61  com.adobe.illustrator                   0x000000010042e74c CAIApplication::RunApp() + 396
    62  com.adobe.illustrator                   0x0000000100419a57 main + 135
    63  com.adobe.illustrator                   0x0000000100002c94 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff85071d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8ccb2dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8ccb29ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.AGM                           0x0000000103894dcb 0x103552000 + 3419595
    3   com.adobe.AGM                           0x000000010389587d 0x103552000 + 3422333
    4   com.adobe.AGM                           0x00000001038ab8a8 0x103552000 + 3512488
    5   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff85071322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8e507f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff85071386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8e755800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff8e755717 usleep + 54
    3   com.adobe.illustrator.plugins.dBrushTool          0x000000011981b723 0x1197c3000 + 362275
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011981c077 0x1197c3000 + 364663
    Thread 21:: IPCClient rcvr: FMClient.501.954.140735140422016.1
    0   libsystem_kernel.dylib                  0x00007fff85071322 __select + 10
    1   com.extensis.cpp-core-framework          0x000000012651b169 GIPCReceiver::OSWaitForData() + 2975
    2   com.extensis.cpp-core-framework          0x000000012650fb40 GIPCClient::ReceiverThreadProc(GThread*) + 798
    3   com.extensis.cpp-core-framework          0x000000012658ded9 GThread::PthreadInternal(void*) + 223
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 22:: Agent IF Message Handler
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.extensis.cpp-core-framework          0x000000012654d3ce GSemaphore::TimedWait(unsigned int) + 76
    3   com.extensis.cpp-core-framework          0x00000001265143f9 GIPCClient::GIPCMTDataAccumulator::WaitForData(unsigned int, std::vector<char, std::allocator<char> >&, bool) + 37
    4   com.extensis.ExtensisFontManagement.sdk          0x0000000126adc271 GAgentIFMessageHandlerThread::RunMessageHandlerThread() + 445
    5   com.extensis.ExtensisFontManagement.sdk          0x0000000126adc98e GAgentIFMessageHandlerThread::AgentIFMessageHandlerThreadFunc(GThread*) + 42
    6   com.extensis.cpp-core-framework          0x000000012658ded9 GThread::PthreadInternal(void*) + 223
    7   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 23:: IPCDataHandler for rcvr: FMClient.501.954.140735140422016.1
    0   libsystem_kernel.dylib                  0x00007fff85071322 __select + 10
    1   com.extensis.cpp-core-framework          0x00000001265173d1 -[IPCDataHandler handleDataFromSocket:] + 2197
    2   com.apple.Foundation                    0x00007fff88440562 __NSThread__main__ + 1345
    3   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff85071386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8e755800 nanosleep + 163
    2   com.adobe.illustrator.plugins.ScriptingSupport          0x0000000118973d38 ScObjects::Thread::wait(unsigned int) + 56
    3   com.adobe.illustrator.plugins.ScriptingSupport          0x000000011895c10e ScObjects::BridgeTalkThread::run() + 174
    4   com.adobe.illustrator.plugins.ScriptingSupport          0x00000001189738f5 ScObjects::Thread::go(void*) + 165
    5   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 25:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 26:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 27:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 28:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 29:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 30:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 31:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 32:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 33:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8506f686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8506ec42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e4c3233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e4c8916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e4c80e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff883e2546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff88440562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff850712aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x0000000129fdc231 0x129fc4000 + 98865
    2   ServiceManager-Launcher.dylib           0x0000000129fdb5d6 0x129fc4000 + 95702
    3   ServiceManager-Launcher.dylib           0x0000000129fda678 0x129fc4000 + 91768
    4   ServiceManager-Launcher.dylib           0x0000000129fda6e6 0x129fc4000 + 91878
    5   ServiceManager-Launcher.dylib           0x0000000129fd52e4 0x129fc4000 + 70372
    6   ServiceManager-Launcher.dylib           0x0000000129fd5cfe 0x129fc4000 + 72958
    7   ServiceManager-Launcher.dylib           0x0000000129fd5c0b 0x129fc4000 + 72715
    8   ServiceManager-Launcher.dylib           0x0000000129fd936e 0x129fc4000 + 86894
    9   ServiceManager-Launcher.dylib           0x0000000129fd94b2 0x129fc4000 + 87218
    10  ServiceManager-Launcher.dylib           0x0000000129fd926d 0x129fc4000 + 86637
    11  ServiceManager-Launcher.dylib           0x0000000129fd91e6 0x129fc4000 + 86502
    12  ServiceManager-Launcher.dylib           0x0000000129fc7916 0x129fc4000 + 14614
    13  ServiceManager-Launcher.dylib           0x0000000129fcbb05 0x129fc4000 + 31493
    14  ServiceManager-Launcher.dylib           0x0000000129fd9e46 0x129fc4000 + 89670
    15  ServiceManager-Launcher.dylib           0x0000000129fdbef3 0x129fc4000 + 98035
    16  libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    17  libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 35:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 36:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 37:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 38:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 39:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 40:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 41:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 42:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100a71edb boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 155
    3   com.adobe.illustrator                   0x0000000100a70bc3 (anonymous namespace)::ThreadControllerContinous::Run() + 1267
    4   com.adobe.illustrator                   0x0000000100a6ecda (anonymous namespace)::ThreadController::operator()() + 266
    5   com.adobe.boost_threads.framework          0x0000000107a9a6d4 thread_proxy + 164
    6   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 43:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff8506f686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8506ec42 mach_msg + 70
    2   com.apple.QuartzCore                    0x00007fff852cc17b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x00007fff85350dc6 thread_fun + 25
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 44:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 45:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 46:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 47:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 48:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 49:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 50:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 51:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 52:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 53:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 54:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 55:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 56:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 57:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 58:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 59:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 60:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 61:
    0   libsystem_kernel.dylib                  0x00007fff8506f6c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000ce79 basic::detail::thread_function_base::operator()() + 217
    2   com.adobe.illustrator                   0x000000010000d6b7 basic::thread_base::_call(void*) + 119
    3   com.apple.CoreServices.CarbonCore          0x00007fff8595e7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 62:
    0   libsystem_kernel.dylib                  0x00007fff850710fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6cffe9 _pthread_cond_wait + 869
    2   com.adobe.AFlame                        0x00000001415c7b1b 0x14144c000 + 1555227
    3   com.adobe.AFlame                        0x000000014157f234 0x14144c000 + 1258036
    4   libsystem_c.dylib                       0x00007fff8e6cb7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8e6b81e1 thread_start + 13
    Thread 63:
    0   libsystem_kernel.dylib                  0x00007fff850716d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6cdf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8e6cdd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8e6b81d1 start_wqthread + 13
    Thread 64:
    0   libsystem_kernel.dylib                  0x00007fff850716d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6cdf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8e6cdd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8e6b81d1 start_wqthread + 13
    Thread 65:
    0   libsystem_kernel.dylib                  0x00007fff850716d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6cdf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8e6cdd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8e6b81d1 start_wqthread + 13
    Thread 66:
    0   libsystem_kernel.dylib                  0x00007fff850716d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6cdf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8e6cdd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8e6b81d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbfcad8  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfcb00  rsp: 0x00007fff5fbfcad8
       r8: 0x00007fff740d5278   r9: 0x0000000000000013  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5fbfc

    Identified the Issue and the same will be resolved. The crash is happening for file with SVG filters and there is a missing link.

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

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

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

  • AE 2014.2 crash when switching preview panel with Matrox

    I newly bought a pc with Matrox M9138 card, and using it for professional use. All works fine, except for Adobe After Effects CC 2014.2: it simply crashes when switching between the Preview-panel and Render-Cue panel.
    When I look in AE preferences under Video-preview > Mercury transmit doesn't even show that there is a Matrox-card. The only option there is Adobe DV. So, I guess AE doesn't find and even makes use of my Matrox card.
    Technical info:
    Windows Version: 8.1
    Processor: Intel Core i7-4790 CPU, 3.6 GHz
    RAM: 16GB
    Type: 64bits
    Matrox M9138 LP PCIex16
    Driver version 2.4.3.2 (4.4.3.2) for Win 8-64bit
    Adobe CC After effects 2014.2
    After Efects error: "Crash in progress. Last logged message was: <816><ae.blitpipe><2> Making New Context"
    First I installed the Matrox driver, and then Adobe CC, but After effects crashed when switching between preview-panel and render-cue-panel (No Matrox recognition in AE preferences > Mercury transmit)
    Now I did it in other order:
    - I removed Adobe CC (AE included) and all parts
    - Did extra checkup removal with Adobe CC cleaner
    - Removed the Matrox driver
    - Restarted PC
    - Reinstalled Adobe CC with AE
    - Reinstalled Matrox Driver
    - Restarted PC
    - matrox fully installed and working perfectly (no errors in Display Adapters info).
    But still, After effects crashed (Still no Matrox recognition in AE preferences > Mercury transmit)
    I contacted Matrox technical support, and as I suspected, they say they haven't had this problem before and all works fine.
    Typical...
    Does someone has an idea what the problem would be?
    Help or info would be very appreciated.

    Solution:
    My graphics card did not supported the "Mercury Playback Engine GPU Acceleration (Open CL)". You can change it into "Mercury Playback Engine Software Only" in your Project Settings.
    But this is in the wrong place in my opinion. Why not in "Edit/Preferences"? I could've changed it by myself but I did not find the menu.
    Thanks Michaela from the Adobe Support Chat!

  • SCVMM service crash when trying to connect with admin console

    Hello,
    i'm using SCVMM for a while but from the beginning of the year (2010), the vmm service crash when i try to connect with the vmm admin consol .
    More in detail:
    vmm service is running on serverA. (vmmservice 2.0.3444.0)
    Admin console is running on serverA (vmmadmin 2.0.3444.0)
    ServerA is running W2008 Sp2
    on this serverA, i launch vmm admin console to connect to server localhost:8100.
    i get the following erro message
    You cannot access Virtual Machine manager server localhost
    Contact the virtual machine manager administrator to verify that your account is a mamber of a valid user role and then try the operation again
    ID: 1604
    And i can see in system log at the same time an error (see detail at the end)
    i get the ods log from vmm according to the link i see in an other post http://blogs.technet.com/chengw/archive/2008/05/08/how-to-collect-scvmm-traces.aspx
    thanks in advance
    Log Name:      System
    Source:        Service Control Manager
    Date:          05/01/2010 11:44:20
    Event ID:      7031
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      PYAQ9G.INETPSA.com
    Description:
    The Virtual Machine Manager service terminated unexpectedly.  It has done this 1 time(s).  The following corrective action will be taken in 100 milliseconds: Restart the service.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Service Control Manager" Guid="{555908D1-A6D7-4695-8E1E-26931D2012F4}" EventSourceName="Service Control Manager" />
        <EventID Qualifiers="49152">7031</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2010-01-05T10:44:20.000Z" />
        <EventRecordID>21683</EventRecordID>
        <Correlation />
        <Execution ProcessID="0" ThreadID="0" />
        <Channel>System</Channel>
        <Computer>PYAQ9G.INETPSA.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="param1">Virtual Machine Manager</Data>
        <Data Name="param2">1</Data>
        <Data Name="param3">100</Data>
        <Data Name="param4">1</Data>
        <Data Name="param5">Restart the service</Data>
      </EventData>
    </Event>

     Hi Mike,
    I have same kind of
     VMM Crashing  issue but error looks different.
    I have one SCVMM Server ( Win2008 R2 SP1) and to manage 20 host servers with 300 clients and it was running fine since 30 months. Recently I observed
    that Virtual Machine manager service is not getting started  automatically , due to that SCVMM console is not establishing the connection. If we forced to start the VMM service, then we are able connect the SCVMM console. But every 5 or 10 min console
    was disconnecting and restarting the console. We are getting below 2 error codes. Please help me on this.
    I have hosted IN-SCVMM1 server on
     hyper-v virtual machine with 16GBRAM and 2 Processors.
    Error1:
    Log Name:      VM Manager
    Source:       
    Virtual Machine Manager
    Date:         
    7/24/2012 12:19:31 PM
    Event ID:      1
    Task Category: None
    Level:        
    Error
    Keywords:      Classic
    User:         
    N/A
    Computer:      IN-SCVMM1.ingrnet.com
    Description:
    System.OverflowException: Failed to convert parameter value from a UInt16 to a Int16. ---> System.OverflowException: Value was either too large or too small for an Int16.
       at System.UInt16.System.IConvertible.ToInt16(IFormatProvider provider)
       at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
       at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType)
       --- End of inner exception stack trace ---
       at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType)
       at System.Data.SqlClient.SqlParameter.GetCoercedValue()
       at System.Data.SqlClient.SqlParameter.Validate(Int32 index, Boolean isCommandProc)
       at System.Data.SqlClient.SqlCommand.SetUpRPCParameters(_SqlRPC rpc, Int32 startCount, Boolean inSchema, SqlParameterCollection parameters)
       at System.Data.SqlClient.SqlCommand.BuildRPC(Boolean inSchema, SqlParameterCollection parameters, _SqlRPC& rpc)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.Adhc.Host.Update(HostData hostData, SqlContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDatabase()
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.UpdateAllInformation(Host host, HostUpdateInformation hostUpdateInfo, Guid taskID)
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.RefreshData(HostReference hostRef)
       at Microsoft.VirtualManager.Engine.RefreshDriver`1.RefreshThreadFunction(Object obj)-2146233066
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Virtual Machine Manager" />
        <EventID Qualifiers="0">1</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2012-07-24T06:49:31.000000000Z" />
        <EventRecordID>4888059</EventRecordID>
        <Channel>VM Manager</Channel>
        <Computer>IN-SCVMM1.ingrnet.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>System.OverflowException: Failed to convert parameter value from a UInt16 to a Int16. ---&gt; System.OverflowException: Value was either too large or too small for an Int16.
       at System.UInt16.System.IConvertible.ToInt16(IFormatProvider provider)
       at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
       at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType)
       --- End of inner exception stack trace ---
       at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType)
       at System.Data.SqlClient.SqlParameter.GetCoercedValue()
       at System.Data.SqlClient.SqlParameter.Validate(Int32 index, Boolean isCommandProc)
       at System.Data.SqlClient.SqlCommand.SetUpRPCParameters(_SqlRPC rpc, Int32 startCount, Boolean inSchema, SqlParameterCollection parameters)
       at System.Data.SqlClient.SqlCommand.BuildRPC(Boolean inSchema, SqlParameterCollection parameters, _SqlRPC&amp; rpc)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.Adhc.Host.Update(HostData hostData, SqlContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDatabase()
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.UpdateAllInformation(Host host, HostUpdateInformation hostUpdateInfo, Guid taskID)
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.RefreshData(HostReference hostRef)
       at Microsoft.VirtualManager.Engine.RefreshDriver`1.RefreshThreadFunction(Object obj)-2146233066</Data>
        <
    Error2 :
    Log Name:      System
    Source:       
    Service Control Manager
    Date:         
    7/24/2012 12:19:32 PM
    Event ID:      7031
    Task Category: None
    Level:        
    Error
    Keywords:      Classic
    User:         
    N/A
    Computer:      IN-SCVMM1.ingrnet.com
    Description:
    The Virtual Machine Manager service terminated unexpectedly. 
    It has done this 1 time(s).  The following corrective action will be taken in 100 milliseconds: Restart the service.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
        <EventID Qualifiers="49152">7031</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2012-07-24T06:49:32.179030700Z" />
        <EventRecordID>29790</EventRecordID>
        <Correlation />
        <Execution ProcessID="564" ThreadID="5840" />
        <Channel>System</Channel>
        <Computer>IN-SCVMM1.ingrnet.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="param1">Virtual Machine Manager</Data>
        <Data Name="param2">1</Data>
        <Data Name="param3">100</Data>
        <Data Name="param4">1</Data>
        <Data Name="param5">Restart the service</Data>
      </EventData>
    </Event>
    Please help on this situation.
    Ratnakar.c
    Ratnakar

  • Labview 8 crashes when saving a vi with a 'Bundle By Name' function

    We have a working vi (Get_AN_Fast.vi), created with Labview 7.1.
    Trying to open this vi with Labview 8 crashes Labview.
    Problem seems to be related to a 'Bundle by Name' function, but it is not that simple as using this function by itself wirks fine.
    Any ideas would be a help.
    Attachments:
    Labview_Upgrade_Crash.zip ‏117 KB

    Sorry for the delay, I have been testing on other machines.
    We can reproduce the error on other machines, with completly fresh installs of Labview 8.
    The ActiveX Object we are connecting to is our own COM server, for interfacing to USB based data acquisition devices.
    I have found that when our COM server is not installed on a computer, then the VI will open, but with errors related the the missing COM Server.
    When the COM Server is installed, Labview 8 crashes when opening the vi.
    I realise that our COM server might have bugs, but it worked fine with Labview 6 and 7, and it is Labview 8 that gives the error, not our COM Server (which is a stand-alone executable).
    I have attached a zip file with our COM server, it just needs to be unzipped to a temporary file, and then run the 'register.bat' file to register the server.
    It will not install any other files on your computer and, can just be deleted when you are finished.
    Thanks
    Charlie.
    Attachments:
    COM_Server.zip ‏659 KB
    Labview_Upgrade_Crash.zip ‏117 KB

  • ITunes 7.7.1 CRASH when connecting to computer with Windows Remote Desktop

    I upgraded to 7.7.1.11 and now when I connect to my computer with Remote Desktop iTunes crashes. Is this a known problem? If so, where can I download a previous version of iTunes that doesn't have this bug?
    Contents of Error:
    iTunes has encountered a problem and needs to close. We are sorry for the inconvenience. If you were in the middle of something, the information you were working on might be lost. Please tell Microsoft about this problem. We have created an error report that you can send us. We will treat this report as confidential and anonymous. To see what data this error report contains, click here.
    Error signature
    appname: itunes.exe appver: 7.7.1.11 modname: quicktime.qts modver: 7.50.61.0 Offset: 00188860
    Exception Information
    Code: 0xc0000005 Flags: 0x0000000
    Record: 0x0000000000000
    address 0x000000000066988860
    System Information
    Windows NT 5.1 Build 2600
    CPU Vendor Code: 68747541 - 69746e65 - 444d4163
    CPU version: 00000681 CPU Feature Code: 0383fbff
    CPU AMD Feature code: c1cbfbff
    Erin: Module 1
    itunes.exe
    Image Base: 0x00400000 Image Sice: 0x00000000
    Checksum: 0x0135124f Time Stamp: 0x4890a5ee

    are you still at iTunes 7.1.0.59? to check, go "help > about iTunes", and wait for the version number to scroll up from the bottom of the screen.
    if you've got a 7.1.0.59, try upgrading to 7.1.1.5:
    iTunes 7.1.1.5 installer
    do you still get the crash when playing music with that in place?

  • VS 2013 SP4 crashes when opening a Form with large Numbers of elements on Windows 8 32-Bit

    Hi, I have made a C#-Project, which is fully functional but opening the main form causes VS 2013 Sp4 to crash. I can build the solution an open all Files. Only when i open the form in Designer, VS crashes and want to restart. There are no Log-Entrys. Only
    in the event-log there is an Event-Id 1000 with code 0x0000409. I can open the form on two other Windows 8.1 64-Bit machines without Problems. Looking on "free Mem" while opening in Resourcemonitor it crashes when at least are around 190 MB free.
    How can I investigate this Problem?

    Hi Frank,
    If the same solution works well in other machine, I doubt that it is your Environment issue.
    Of course, to make sure that it is not the project files issue, please create a blank solution, and then add all project files to this new solution, test it again.
    Maybe you could delete .suo file in your solution folder, and then re-open your .sln file, test it again.
    If there are many projects in the same solution, I suggest you create different solutions for them, test it again.
    But as your previous description, I doubt that it would be related to your VS/Windows Environment.
    Please disable all add-ins in your VS, maybe you could run your VS in safe mode, test it again.
    http://msdn.microsoft.com/en-us/library/ms241278.aspx
    To make sure that it is not the account issue, please run your VS as the admin.
    In addition, the most important issue is that we have make sure that it is not the Window Configuration issue.
    For example, when you run your windows for a long time, or your task manager is so busy, or other processes take high CPU and so on, I think they will impact your VS or other software performance.
    Please restart your PC, close other processes which take high memory, please also close third party tools like firewall or the Anti-virus. If you open a few VS Editors, just close them, and then just open one, test it again.
    Best Regards,
    Jack 
    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.

  • Compressor crash when attempting import files with 00* in name

    I produce several short video files every day and name them using a sequential five digit numerical naming convention.
    I'm finding that whenever I'm near, at or shortly after crossing a 100 mark Compressor crashes when I try and import single files with the following filenames (these are the most recent examples):
    20993
    21000
    21001
    21005
    The only way to import these problematic files is to select the file before, or after, then Command click on the filename causing the crash. Click Open to import both into the batch, and then click on the file I first clicked on and hit Delete to remove it from the batch, leaving the file with the problematic name.
    For Example. I want to import 21005 into Compressor for processing, but every time I try and import it Compressor crashes. So I re-launch Compressor, click the little Q button and click on 21004, then press Command and click on 21005. Click Open, import window goes away to reveal the Batch window. Click on 21004, press Delete button on keyboard leaving me with the file that was causing the crash.
    FWIW apart from the file duration/size, there's no difference between these files. In fact I can change the names and the files that used to import fine now crash Compressor when attempt to import with any of the filenames above.
    Here's the info behind two of the problem files and also that of the two adjacent files that import fine:
    (all files: Dimension: 720 x 480. Codecs: DV/DVCPRO - NTSC. Channel Count: 2. Kind: Final Cut Pro Movie File. No color labels.
    20999 (Imports Fine):
    File Size: 394,475,469 bytes
    Duration: 01'44
    21000 (Compressor Crasher):
    File Size: 324,052,925 bytes
    Duration: 01'26
    21001 (Compressor Crasher):
    File Size: 339.730.909 bytes
    Duration: 01'30
    21002 (Imports Fine):
    File Size: 348,707,181 bytes
    Duration: 01'32
    Compressor 2 - 2.0.1
    Dual 2 GHz PowerPC G5
    1.5 B DDR SDRAM
    Mac OS X 10.4.8

    Hello,
    Thanks for the replies/info.
    Yes the Panther and Jaguar install disks are retail versions, not specific machine versions. And the Jaguar ones worked for the Powerbook before.
    The Powerbook I have is the Firewire 500mhz one, Pismo I think it's called. The hard drive is a 60GB one. I didn't have to partition it before.
    Reviewing all the above, it would appear that the problem is me not being able to use an internal, built in CD/DVD drive to install from this time? The only other thing it could be I think is the crash I recently had has had some bad effect -- but that's unlikely right? So, I need to get a new DVD drive? Or is there any other way to get the OS onto the Powerbook without getting another internal DVD/CD drive? Is there anyway to install onto the PB from another machine maybe?
    Does that sound right?: not being able to use internal DVD/CD drive is the source of my current problem?
    Thanks.

  • Diadem 11 crashed when using AOP5 plugin with no specific error

    We have a ASAM-ODS database and are running a Avalon v4.2e server. DIAdem data TDM file is uploaded using openMDM client.
    We have installed AOP5 plugin on 2 systems running DIAdem 11 to access the data directly from the ASAM-ODS database. On one machine it is working fine.
    On the second machine with the same parameters, when we try to connect, DIAdem hangs and then crashes with no specific error in the log file. DIAdem is not able to refresh the Navigator window and show the data stored in the ASAM-ODS server. The relevant errors are attached and also the log file of the plugin.
    How do we debug and resolve the issue? Any pointers would be welcome. We are using aop5dataplugin2_0_1.exe downloaded from the NI site.
    Regards,
    Shailesh
    Attachments:
    Error_1.JPG ‏83 KB
    Error_2.JPG ‏49 KB
    MDM AOP5 plugin.log ‏783 KB

    Hi Shailesh,
    Is it possible that the computer this worked on has had a newer version of DIAdem or LabVIEW or DataFinder on it?  All three of those NI software packages share a layer called USI, which is what the DataPlugins "plug into".  The USI layer only upgrades, so even if you installed a DIAdem 2012 evaluation version and then uninstalled it, you would keep the USI version from DIAdem 2012, and your DIAdem 11.0 would use that newer USI version.  It is possible that the latest AOP5 DataPlugin is not compatible with 11.0, which was released nearly 5 years ago.  I can look into that and get back to you.
    Alternatively, DIAdem 11.0 may be struggling to work with a USI version from LabVIEW 2012 or DIAdem 2012.  We do regression testing every release with multiple older DIAdem versions, but at some point the newer features don't work with the older software.
    Brad

  • Error with Project Parameters when executing the package with dtexec command

    Hi,
    We have started migrating our SSIS package from 2005 version to SSIS 2012. In SSIS 2005 we were using XML configuration files and executing the packages with dtexec command from the packages folder (without deploying packages to filesystem).
    Now in SSIS 2012, we have seen Project Parameters and created couple of package parameters and used those parameters in the package. when executing this package from solution explorer it was working fine but when i try to execute the same package from command
    line with Dtexec command, it was showing an error message of 'Not able to map Project Prameters to configurations'.
    Could you please give me an idea of how to execute the packages from command line by using dtexex command. basically i would like use project parameters in 2012 similar to configurations?
    Thanks,
    Venu.

    Refer
    http://msdn.microsoft.com/en-IN/library/hh231187.aspx
    you can pass parameter like this
    /SET \Package.Variables[$Package::ParameterName];<value> /SET \Package.Variables[$Project::ParameterName];<value>
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Maybe you are looking for

  • I updated my iTunes Software and now I cant burn CD's anymore.

    I need help. I updated my iTunes Software and now I get this: "The Registry settings used by the iTunes drivers for importing and burning CDs and DVDs are missing. This can happen as a result of installing other CD burning software. Please reinstall

  • Par file exception in production server

    Hi All, I had customized logon page for portal. It is working fine in Development and Quality system, but when i upload the same par to Production System i am getting the following error. I am uploading through the Pdk Archieve Deployer and Remover a

  • Dynamic Wartermark in AutoVue or where do the bytes come from?

    I am working on an AutoVue integration with Oracle UCM and wanting to do dynamic watermarking for PDFs based on a various inputs.  PDFWatermark is being used to statically stamp a few watermarks but will not handle true dynamic (per request) watermar

  • Where Is the Label Tag

    I am looking at the IPTC and EXIF data of pictures managed in Lightroom. I can't find the tag that stores the Label (the different color codes) information. I did a "Save Metadata to File" so it should be there. FYI, Expression Media stores it in the

  • Ndiswrapper won't work on 0.7.1 install [split]

    I can not get ndiswrapper working properly with the kernel and initrd support.