JSAPI Recognition won't run twice

I'm working on an implementation of JSAPI's Recognition. 'listen' method is invoked through a web service and it runs fine for the first time. When I run it for a second time it looks like I've got two engines allocated (though I deallocate it) because everything is displayed 2 times. Then the app crashes and blocks a port. When it is run for the third time I displays everything three times and an exception is thrown due to a blocked port. I tried to use both the same Recognizer object for every 'listen' method call and creating a new object for every invocation (the output below is the second case). It doesn't help either when I use different ports for other invocations. When I restart the server it again works only once. So what I think the problem is I am not deallocating or closing sources properly. I think it is JSAPI problem but could also be RTP. Please help.
I use Cloud Garden's JSAPI implementation.
Here is the code:
package asr;
import javax.speech.*;
import javax.speech.recognition.*;
import com.cloudgarden.audio.*;
import com.cloudgarden.speech.*;
import javax.media.protocol.*;
import javax.media.*;
import javax.media.format.*;
public class RecognitionEngine {
     public RecognitionEngine(String recognitionEngineName) {
      * TODO: synchronizacja result?
      * @return
     public String listen(String destination, String port) {
          ++counter;
          System.out.println("Times called: " + counter);
          result = null;
          try {
               String rtpRecoUrl = "rtp://" + destination + ":" + port + "/audio";
               reco = Central.createRecognizer(new EngineModeDesc(null, null,
                         java.util.Locale.ENGLISH, null));
               reco.addEngineListener(new TestEngineListener());
               reco.allocate();
               reco.waitEngineState(reco.ALLOCATED);
               CGAudioManager recoAudioMan = (CGAudioManager) reco.getAudioManager();
               recoAudioMan.addAudioListener(new TestAudioListener());
               recoAudioMan.addTransferListener(new TransferListener() {
                    public void bytesTransferred(TransferEvent e) {
                         System.out.print("R" + e.getLength() + " ");
               boolean gramExists = false;
               for (RuleGrammar r : reco.listRuleGrammars()) {
                    if (r.getName().equals("gram1"))
                         gramExists = true;
               if (!gramExists) {
                    RuleGrammar gram = reco.newRuleGrammar("gram1");
                    Rule r = gram
                              .ruleForJSGF("all your base are belong to us {BASE} | hello world {HELLO} | goodbye computer {QUIT} | what time is it {TIME} | what date is it {DATE}");
                    gram.setRule("rule1", r, true);
                    gram.setEnabled(true);
               // must be called before recognizer is resumed (for SAPI5 engines)!
               reco.getRecognizerProperties().setResultAudioProvided(true);
               recoDataSink = recoAudioMan.getDataSink();
               reco.commitChanges();
               reco.requestFocus();
               reco.resume();
               reco.waitEngineState(reco.LISTENING);
               reco.addResultListener(new ResultAdapter() {
                    public void resultUpdated(ResultEvent ev) {
                         System.out.println("updated " + ev);
                    public void resultAccepted(ResultEvent ev) {
                         System.out.println("accepted " + ev);
                         FinalResult res1 = (FinalResult) ev.getSource();
                         FinalRuleResult frr = (FinalRuleResult) res1;
                         String[] tags = frr.getTags();
                         if (tags == null)
                              return;
                         String tag = tags[0];
                         // Uncomment this to hear what recognizer heard.
                         // try {
                         // reco.pause();
                         // frr.getAudio().play();
                         // reco.resume();
                         // } catch (Exception e) {
                         // e.printStackTrace();
                         if (tag.equals("QUIT")) {
                              System.out.println("Someone said goodbye computer");
                         } else if (tag.equals("HELLO")) {
                              System.out.println("Someone said hello world");
                         } else if (tag.equals("TIME")) {
                              System.out.println("Someone said what time is it");
                         } else if (tag.equals("DATE")) {
                              System.out.println("Someone said what date is it");
                         } else if (tag.equals("BASE")) {
                              System.out.println("ALL YOUR BASE ARE BELONG TO US!!");
                         result = tag;
                         close();
               javax.sound.sampled.AudioFormat fmt = recoAudioMan.getAudioFormat();
               FileTypeDescriptor cd = new FileTypeDescriptor(FileTypeDescriptor.RAW);
               Format[] outFormats = { new AudioFormat(AudioFormat.LINEAR,
                         fmt.getFrameRate(), fmt.getSampleSizeInBits(),
                         fmt.getChannels(), AudioFormat.LITTLE_ENDIAN,
                         AudioFormat.SIGNED) };
               System.out.println("DataSink = " + recoDataSink + " rtpRecoUrl="
                         + rtpRecoUrl);
               ProcessorModel pm = new ProcessorModel(
                         new MediaLocator(rtpRecoUrl), outFormats, cd);
               listening = true;
               recoProc = Manager.createRealizedProcessor(pm);
               System.out.println("RTP connection established");
               recoDataSink.setSource(recoProc.getDataOutput());
               recoProc.start();
               recoDataSink.open();
               recoDataSink.start();
               System.out.println("listening");
               reco.waitEngineState(reco.DEALLOCATED);
               System.out.println("EXITING");
          } catch (Exception e) {
               e.printStackTrace();
          } finally {
               listening = false;
          return result;
     public void close() {
          System.out.println("closing");
          try {
               recoProc.stop();
               recoProc.close(); //mine //unblocks port
               //recoProc.deallocate(); //mine
               //recoDataSink.stop(); //mine
               recoDataSink.close();
               reco.deallocate();
               reco.waitEngineState(Engine.DEALLOCATED);
               Thread.currentThread().sleep(2000);
          } catch (Exception e2) {
               e2.printStackTrace();
          System.out.println("closed!");
     public boolean isListening() {
          return listening;
     private int counter = 0;
     private boolean listening = false;
     private String result;
     private Recognizer reco;
     private Processor recoProc;
     private DataSink recoDataSink;
}

output:
//server starting
INFO: Server startup in 6153 ms
INIT!
Recognizer jest null!
Times called: 1
CloudGarden's JSAPI1.0 implementation
Version 1.7.0
Implementation contained in files cgjsapi.jar and cgjsapi170.dll
com.cloudgarden.speech.CGRecognizer@1fbc355 engineAllocatingResources
com.cloudgarden.speech.CGRecognizer@1fbc355 engineAllocated
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 changesCommitted
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 focusGained
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
DataSink = com.cloudgarden.audio.CGDataSink@800aa1 rtpRecoUrl=rtp://192.168.56.1:12346/audio
RTP connection established
listening
R1536 R6000 R144 R2304 R2304 R2304 R2304 R2304 R2304 Speech started
R2304 R2304 R2304 R2304 com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerProcessing
updated javax.speech.recognition.ResultEvent[source=Grammar:gram1, Conf:3, Tokens{}]
R2304 R2304 R2304 R2304 R2304 R2304 R2304 R2304 R2304 R2304 updated javax.speech.recognition.ResultEvent[source=Grammar:gram1, Conf:3, Tokens{hello,world}]
R2304 R2304 Speech stopped
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
updated javax.speech.recognition.ResultEvent[source=Grammar:gram1, Conf:3, Tokens{hello,world}, Tags{HELLO}]
accepted javax.speech.recognition.ResultEvent[source=Grammar:gram1, Conf:3, Tokens{hello,world}, Tags{HELLO}]
Someone said hello world
closing
R0 R-1 com.cloudgarden.speech.CGRecognizer@1fbc355 focusLost
com.cloudgarden.speech.CGRecognizer@1fbc355 engineDeallocatingResources
com.cloudgarden.speech.CGRecognizer@1fbc355 engineDeallocated
EXITING
closed!
Speech started
Speech stopped
INIT!
Recognizer jest null!
Times called: 1
com.cloudgarden.speech.CGRecognizer@1fbc355 engineAllocatingResources
com.cloudgarden.speech.CGRecognizer@1fbc355 engineAllocatingResources
com.cloudgarden.speech.CGRecognizer@1fbc355 engineAllocated
com.cloudgarden.speech.CGRecognizer@1fbc355 engineAllocated
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 changesCommitted
com.cloudgarden.speech.CGRecognizer@1fbc355 changesCommitted
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 focusGained
com.cloudgarden.speech.CGRecognizer@1fbc355 focusGained
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
DataSink = com.cloudgarden.audio.CGDataSink@800aa1 rtpRecoUrl=rtp://192.168.56.1:12346/audio
RTP connection established
listening
R-1 R-1
INIT!
Recognizer jest null!
Times called: 1
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 changesCommitted
com.cloudgarden.speech.CGRecognizer@1fbc355 changesCommitted
com.cloudgarden.speech.CGRecognizer@1fbc355 changesCommitted
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerSuspended
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 engineResumed...
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
com.cloudgarden.speech.CGRecognizer@1fbc355 recognizerListening
DataSink = com.cloudgarden.audio.CGDataSink@800aa1 rtpRecoUrl=rtp://192.168.56.1:12346/audio
Cannot create the RTP Session: Can't open local data port: 12346
javax.media.CannotRealizeException
     at javax.media.Manager.blockingCall(Manager.java:2005)
     at javax.media.Manager.createRealizedProcessor(Manager.java:794)
     at asr.RecognitionEngine.listen(RecognitionEngine.java:124)
     at service.IVRService.recognize(IVRService.java:190)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
     at java.lang.reflect.Method.invoke(Unknown Source)
     at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194)
     at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:102)
     at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
     at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:100)
     at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:176)
     at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:275)
     at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:133)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
     at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
     at java.lang.Thread.run(Unknown Source)Edited by: mr_b on Aug 17, 2010 3:11 AM

Similar Messages

  • Applet won't run twice

    My project is to create an applet that will calulate the prices and discounts for books sold. The program works fine in this regard. The problem is when I add new information in the text fields it will not run again it gives an invalid error. I can't find where the problem is.
    public void actionPerformed(ActionEvent evt)
    // Retrieve data and calucalte
    // Clear Errors
    showStatus("Ready");
    try
    // Retrieve Data from text fields
    // Change Strings to float values
    strBook = txtBook.getText();
    fltPrice = Float.parseFloat(txtPrice.getText());
    intQty=Integer.parseInt(txtQty.getText());
    strBook = txtBook.getText();
    // Calulate totals
    fltExtendedPrice = intQty * fltPrice;
    fltBookDiscount = fltExtendedPrice * fltDisc;
    fltDiscountPrice = fltExtendedPrice - fltBookDiscount;
    intTotalQty += intQty;
    fltTotalSale += fltDiscountPrice;
    fltAverage = fltTotalSale / intTotalQty;
    // Formatting Output
    NumberFormat fmtCurrency = NumberFormat.getCurrencyInstance();
    NumberFormat fmtDecimal = NumberFormat.getInstance();
    fmtDecimal.setMinimumFractionDigits(0);
    fmtDecimal.setMaximumFractionDigits(0);
    // Format float to String
    strPrice = fmtCurrency.format(fltPrice);
    strQty = fmtDecimal.format(intQty);
    strBookDiscount = fmtCurrency.format(fltBookDiscount);
    strExtendedPrice = fmtCurrency.format(fltBookDiscount);
    strDiscountPrice = fmtCurrency.format(fltDiscountPrice);
    strTotalQty = fmtDecimal.format(intTotalQty);
    strTotalSale = fmtCurrency.format(fltTotalSale);
    strExtendedPrice = fmtCurrency.format(fltExtendedPrice);
    strAverage = fmtCurrency.format(fltAverage);
    // Output in the first textArea
    txaCurrentSale.append("\n" +"Book Title: " + strBook + "\n" + "Book Price: " + strPrice + "\n" + "Quantity: " + strQty + "\n" + "BookDiscount: " + strBookDiscount + "\n" + "Extended Price: " + strExtendedPrice + "\n" + "DiscountPrice: " + strDiscountPrice + "\n");
    // Output in the Second TextArea Summary
    txaSummary.append("\n" +"Total Quantity: " + strTotalQty + "\n" + "Total Books Sales: " + strTotalSale + "\n" + "Average: " + strAverage);
    // Clear text Fields
    txtBook.setText(" ");
    txtQty.setText(" ");
    txtPrice.setText(" ");
    txtBook.requestFocus();
    //btnAdd.addActionListener(this);
    catch(NumberFormatException err)
    lblError.setForeground(Color.red);
    lblError.setText("Invalid Data entered");
    showStatus("Invalid Data entered");
    If any can help me I would greatly apperciate it. Thank You

    Yes, So you have to figure out what's causing that. The only part of your code that I can see that does any parsing is this:fltPrice = Float.parseFloat(txtPrice.getText()); so that's probably what's throwing the exception.
    So basically, you need to put some code around there to check the return value of txt.getText and see if it's in valid floating-point number format. If it's not in valid format, then when you call parseFloat, it will throw that exception.
    and I am new to programming , so I'm not quite
    for sure what you mean by code tags.It has nothing to do with programming. These forums have special markup tags. You can make text bold or italic or underlined. When you post code, put "[code]" before it and "[/code]" after it, and the forum software will display the code legibly (like it did above).

  • Java applets won't run on Safari???

    I have reinstalled Java twice, and it still won't run any Java applets. It just sits there with the cup logo and the arrow on either side. It works fine on Firefox but not Safari. Help?

    Hello
    I'm piggy backing on this thread because I too have had problems with Java and Safari
    Java runs fine for me in Firefox, however.
    I went to a federal website
    https://blrscr3.egs-seg.gc.ca/gol-ged/gov/browserdetection/BrowserCheck.html
    that uses java and received this message
    " Java applet unable to load
    To use this service, you must either install a recent version of the Sun JVM or enable "Scripting of Java applets" if it has been disabled."
    so i looked for an update and have downloaded and installed release 6, (at least, it said that it was installed, but have never been able to figure out where)
    when I check Java preferences, the choices are J2SE 1.4.2 or J2SE 5, and when I've switched to 1.4.2 I still have no luck.
    When i run firefox, i get the java console opening, but it doesn't open with safari, and I can't find the option for this to turn on in safari
    i have restarted both safari and my computer and no luck. I have repaired permissions and no changes have taken place.
    Any more suggestions?
    (thank you, by the way)

  • HP Pavilion 23t AIO PC won't run Battlefield smoothly

    My father bought me the Pavilion 23t AIO, thinking that it would be a good gaming computer, but upon me testing my game Battlefield 3 with the normal graphics and settings, and the game was incredibly laggy. I changed the settings to the lowest, and the game still won't run completely smoothly, and twice it closed itself out on me. I'm wondering if I need a new graphics card or not, please respond quickly!!
    This question was solved.
    View Solution.

    SniperProffesor, welcome to the forum.
    The good news is, you have very nice computer.  The bad news is, it is not good for gaming.  The video card slot is MXM (One PCI Express MXM slot that supports a PCI Express x16 graphics card (Generation 2 speed).  Here are the specs on it:
    One Mobile PCI Express Module (MXM) socket
    MXM 3.0 version: Type A
    <35W
    It is difficult to find these video cards because they are usually sold as OEM components.  Your best bet would be to shop ebay for one.  I am not certain that this card would even make your gaming experience better.
    Please click the "Thumbs Up+ button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • ITunes 8 won't run on my laptop (running Vista Home Premium)

    Help. Upgraded to iTunes 8 two days ago and it doesn't work. I get a message that says iTunes help module has stopped working and then a message that iTunes has experienced an error and must close (after the interim message that Windows is looking for a solution). I've tried reinstalling iTunes 8 twice with same result. It won't run and now I can't even get an older version of iTunes to install (because it says I have a "later" version already on the computer). What gives? It's very frustrating and right now I don't have a working version of iTunes! Apple folks - can you help?

    apple.com/iTunes
    Click download now and press the same button on the next screen.
    The second screen will be the subscribe by email prior to download. Just press the download key to bypass.

  • OS X Yosemite: Finder crashing / running twice

    Hi,
    Since I upgraded to Yosemite on my MBA mid 2011 Finder keeps crashing every day. Suddenly it stops working. You cannot click on the icon to open a new Finder or you can not empty the trash the message is not appearing.
    Sometimes it helps to "killall Finder" via terminal. But it takes forever to restart the Finder.
    Today I realized that the Finder is running twice (process overview to kill apo).
    Any ideas what happened here?
    JJ

    11/11/14 7:47:52.709 PM com.apple.xpc.launchd[1]: (com.apple.Finder) ThrottleInterval set to zero. You're not that important. Ignoring.
    11/11/14 7:48:00.715 PM Finder[318]: lock contention for shared file list item 0x6380001729c0
    11/11/14 7:48:00.751 PM Finder[318]: lock contention for shared file list item 0x638000172a80
    11/11/14 7:48:00.753 PM Finder[318]: lock contention for shared file list item 0x638000172c00
    11/11/14 7:48:00.753 PM Finder[318]: lock contention for shared file list item 0x638000172cc0
    11/11/14 7:48:00.755 PM Finder[318]: lock contention for shared file list item 0x638000172e40
    11/11/14 7:48:00.803 PM Finder[318]: lock contention for shared file list item 0x638000172f00
    11/11/14 7:48:10.583 PM Finder[318]: Can't open input server /Library/InputManagers/CTLoader
    11/11/14 7:48:14.014 PM Finder[318]: assertion failed: 14A389: libxpc.dylib + 97940 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x89
    11/11/14 7:48:17.016 PM Finder[318]: CoreDockSetTrashFull returned error -4956
    11/11/14 7:48:19.000 PM kernel[0]: Sandbox: Finder(318) System Policy: deny file-write-unlink /Users/vadik/Library/Saved Application State/com.apple.finder.savedState/restorecount.plist
    11/11/14 7:48:20.671 PM Finder[318]: CoreDockSetTrashFull returned error -4956
    11/11/14 7:48:23.676 PM Finder[318]: CoreDockSetTrashFull returned error -4956
    11/11/14 7:49:49.409 PM Finder[318]: objc[318]: Class ACCFinderObject is implemented in both /Applications/Utilities/Adobe Creative Cloud/CoreSyncExtension/ACCFinderBundleLoader_64.app/Contents/Frameworks/ACCFin derExtension.bundle/Contents/MacOS/ACCFinderExtension and /Applications/Utilities/Adobe Creative Cloud/CoreSyncExtension/ACCFinderBundleLoader_64.app/Contents/Frameworks/ACCFin derInnerExtesion.bundle/Contents/MacOS/ACCFinderInnerExtesion. One of the two will be used. Which one is undefined.
    11/11/14 7:49:58.583 PM Google Drive[458]: GsyncAppDeletegate.py : Finder debug level logs : False
    11/11/14 7:51:06.320 PM WindowServer[227]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    11/11/14 7:51:06.368 PM WindowServer[227]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.05 seconds (server forcibly re-enabled them after 1.00 seconds)
    11/11/14 7:51:13.305 PM WindowServer[227]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    11/11/14 7:51:15.237 PM WindowServer[227]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 2.93 seconds (server forcibly re-enabled them after 1.00 seconds)
    11/12/14 7:14:19.590 AM com.apple.xpc.launchd[1]: (com.apple.Finder) ThrottleInterval set to zero. You're not that important. Ignoring.
    11/12/14 7:14:25.046 AM Finder[324]: Can't open input server /Library/InputManagers/CTLoader
    11/12/14 7:14:25.741 AM Finder[324]: assertion failed: 14A389: libxpc.dylib + 97940 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x89
    11/12/14 7:14:29.712 AM Finder[324]: CoreDockSetTrashFull returned error -4956
    11/12/14 7:14:32.714 AM Finder[324]: CoreDockSetTrashFull returned error -4956
    11/12/14 7:14:35.719 AM Finder[324]: CoreDockSetTrashFull returned error -4956
    11/12/14 7:14:38.725 AM Finder[324]: CoreDockSetTrashFull returned error -4956
    11/12/14 7:15:11.140 AM Google Drive[444]: GsyncAppDeletegate.py : Finder debug level logs : False
    11/12/14 7:15:33.042 AM Finder[324]: objc[324]: Class ACCFinderObject is implemented in both /Applications/Utilities/Adobe Creative Cloud/CoreSyncExtension/ACCFinderBundleLoader_64.app/Contents/Frameworks/ACCFin derExtension.bundle/Contents/MacOS/ACCFinderExtension and /Applications/Utilities/Adobe Creative Cloud/CoreSyncExtension/ACCFinderBundleLoader_64.app/Contents/Frameworks/ACCFin derInnerExtesion.bundle/Contents/MacOS/ACCFinderInnerExtesion. One of the two will be used. Which one is undefined.
    11/12/14 7:37:21.306 AM SubmitDiagInfo[448]: Submitted problem report file:///Library/Logs/DiagnosticReports/Finder_2014-11-11-172718_G5.hang
    11/12/14 7:37:21.347 AM SubmitDiagInfo[448]: Submitted problem report file:///Library/Logs/DiagnosticReports/Finder_2014-11-11-184341_G5.hang
    11/12/14 8:21:55.671 AM Finder[324]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application." (connection to service named com.apple.internetaccounts) UserInfo=0x630000070780 {NSDebugDescription=connection to service named com.apple.internetaccounts}; {
        NSDebugDescription = "connection to service named com.apple.internetaccounts";
    11/12/14 8:24:11.107 AM Google Chrome[751]: Cannot find function pointer SampleCMPluginFactory for factory 3487BB5A-3E66-11D5-A64E-003065B300BC in CFBundle/CFPlugIn 0x83c79d40 </Users/vadik/Library/Contextual Menu Items/A Better Finder Context Menu.plugin> (not loaded)
    Process:               dynamiclinkmanager [5355]
    Path:                  /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/MacOS/dynamiclinkmanager
    Identifier:            com.adobe.dynamiclinkmanager
    Version:               6.0.0 (6.0.0)
    Code Type:             X86 (Native)
    Parent Process:        ??? [1]
    Responsible:           dynamiclinkmanager [5355]
    User ID:               501
    Date/Time:             2014-11-08 15:29:51.218 -0800
    OS Version:            Mac OS X 10.10 (14A389)
    Report Version:        11
    Anonymous UUID:        6FC7D8D0-AFED-A5D3-1480-74806996DAC2
    Time Awake Since Boot: 21000 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminating
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x9035c69e __pthread_kill + 10
    1   libsystem_pthread.dylib       0x91f94fd5 pthread_kill + 101
    2   libsystem_c.dylib             0x9a4aaefe abort + 156
    3   libc++abi.dylib               0x956162f9 abort_message + 169
    4   libc++abi.dylib               0x956393a2 default_terminate_handler() + 47
    5   libc++abi.dylib               0x95636ac0 std::__terminate(void (*)()) + 14
    6   libc++abi.dylib               0x95636b5e std::terminate() + 94
    7   com.adobe.dynamiclinkmanager   0x00006714 main + 772
    8   com.adobe.dynamiclinkmanager   0x00003c26 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x9035d8d2 kevent64 + 10
    1   libdispatch.dylib             0x9048973f _dispatch_mgr_invoke + 245
    2   libdispatch.dylib             0x904893a2 _dispatch_mgr_thread + 52
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xa0e426d0  ecx: 0xbffff1fc  edx: 0x00000000
      edi: 0xa05231d4  esi: 0x00000006  ebp: 0xbffff218  esp: 0xbffff1fc
       ss: 0x00000023  efl: 0x00000206  eip: 0x9035c69e   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xa0e40a00
    Logical CPU:     0
    Error Code:      0x00080148
    Trap Number:     132
    Binary Images:
        0x1000 -    0x53ff3 +com.adobe.dynamiclinkmanager (6.0.0 - 6.0.0) <182DDE06-F536-C156-6D32-4C0725A3C4E2> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/MacOS/dynamiclinkmanager
       0xe5000 -    0xebff7 +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <09A2FC8A-015D-10D9-E24E-31E02B370F7F> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_date_time.fram ework/Versions/A/boost_date_time
      0x10b000 -   0x119ff3 +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <E64D388C-A773-3232-BF7C-7A822E5C919D> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_threads.framew ork/Versions/A/boost_threads
      0x13d000 -   0x2f7fef +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <7B46AC03-C7A1-4647-C60A-764C1CD2FC43> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvacore.framework/Ve rsions/A/dvacore
      0x50d000 -   0x510fff +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <FFA9E16A-F75C-0926-6A9A-454E173B2906> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_system.framewo rk/Versions/A/boost_system
      0x518000 -   0x541ff3 +com.adobe.dvamediatypes.framework (6.0.0 - 6.0.0.0) <99FECDBB-2293-8336-9EB9-C5E7903F1006> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvamediatypes.framew ork/Versions/A/dvamediatypes
      0x578000 -   0x5d5ffb +com.adobe.dvatransport.framework (6.0.0 - 6.0.0.0) <4EAE9BF9-5CBC-A2C4-2F15-C39E4A178F12> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvatransport.framewo rk/Versions/A/dvatransport
      0x655000 -   0x68dfff +com.adobe.dvamarshal.framework (6.0.0 - 6.0.0.0) <75D2CE81-FEED-DD94-3028-AAC6B79A8DAA> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvamarshal.framework /Versions/A/dvamarshal
      0x726000 -   0x906fe7 +com.adobe.dynamiclink.framework (6.0.0 - 6.0.0.0) <D57C61FB-C2D2-836D-8AB7-5C2C84B3066B> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dynamiclink.framewor k/Versions/A/dynamiclink
    0x8fe7e000 - 0x8feb1e03  dyld (353.2.1) <EBFF7998-58E8-32F5-BF0D-9690278EC792> /usr/lib/dyld
    0x90008000 - 0x9005efff  libc++.1.dylib (120) <D8DE4962-66CD-3491-904E-9291EEE5E570> /usr/lib/libc++.1.dylib
    0x9005f000 - 0x90065ff3  libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib
    0x90066000 - 0x900d2ffb  com.apple.datadetectorscore (6.0 - 396.1) <77C29022-34D1-3556-95F6-FDBE4576CAF9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x900d6000 - 0x901cdfff  libFontParser.dylib (134) <95F8F2D1-B28D-3687-95A9-45033FEE0504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x901ce000 - 0x901cffff  libremovefile.dylib (35) <49DCAF7B-4466-3775-9E58-EA5D7CBA8AE0> /usr/lib/system/libremovefile.dylib
    0x901d0000 - 0x9022bffb  libTIFF.dylib (1231) <14F5E31A-4ABC-3DF7-AB85-9DB406D3613C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9022c000 - 0x9022efff  libCVMSPluginSupport.dylib (11.0.7) <A87C589A-DA64-3D62-8BDE-065784993B1A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x90343000 - 0x90362fff  libsystem_kernel.dylib (2782.1.97) <9F86CA37-93FC-31F0-8ACC-53D244AF9EC2> /usr/lib/system/libsystem_kernel.dylib
    0x90363000 - 0x903b6ff7  com.apple.HIServices (1.22 - 519) <5B54AB76-C487-367B-ACD5-2AF6BC85E1B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x903b7000 - 0x903d6ffb  libresolv.9.dylib (57) <C2C3810A-A45E-3375-B41D-6E1BECE1BA3C> /usr/lib/libresolv.9.dylib
    0x90427000 - 0x90484ff3  com.apple.print.framework.PrintCore (10.0 - 451) <2563665B-7B7F-3B8A-83B1-E5AC8D389909> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90485000 - 0x904acfff  libdispatch.dylib (442.1.4) <B26A176C-39F7-3362-B128-27B1211068B9> /usr/lib/system/libdispatch.dylib
    0x904ad000 - 0x904c4ff3  libLinearAlgebra.dylib (1128) <B20FAAAA-1C76-3B20-B100-5FC90F7FE023> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x90e74000 - 0x90e7fff7  com.apple.NetAuth (5.0 - 5.0) <D6C31218-47E4-3553-9208-D1091A81044E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x90f71000 - 0x90f73ff7  libsystem_sandbox.dylib (358.1.1) <12A90EA1-A218-3B6B-A441-E1A8F866FA44> /usr/lib/system/libsystem_sandbox.dylib
    0x90f90000 - 0x90f98ffb  com.apple.NetFS (6.0 - 4.0) <141BFE7E-634E-32A0-8EC9-0A1A4DFEA7D9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x90f99000 - 0x910afff7  com.apple.CoreText (352.0 - 454.1) <02F310BE-E185-328C-A461-6D6B762D4A6D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x910b0000 - 0x910b0fff  liblaunch.dylib (559.1.22) <2FDDB7A5-C022-3C40-A263-1DC74F0B446D> /usr/lib/system/liblaunch.dylib
    0x910b1000 - 0x910b2fff  libSystem.B.dylib (1213) <77FA0B3F-4412-31F6-A798-21D068AE16C3> /usr/lib/libSystem.B.dylib
    0x91129000 - 0x91129fff  libunc.dylib (29) <CE960997-9D4A-3848-BAC7-B2255E6765FD> /usr/lib/system/libunc.dylib
    0x911b9000 - 0x911d2fff  libsystem_malloc.dylib (53.1.1) <58CD8BC7-55D1-3862-8E5D-728EE2EBE447> /usr/lib/system/libsystem_malloc.dylib
    0x911eb000 - 0x91318ff7  com.apple.coreui (2.1 - 305) <8D2978A1-8152-32CB-B265-4C923FDF3017> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91319000 - 0x9135cfff  libGLU.dylib (11.0.7) <3519CD46-386A-3702-A5EE-AE59923C5AA7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91381000 - 0x91383ffb  libRadiance.dylib (1231) <2F86BE82-404D-335C-B83E-F71D3C4969B8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x9143e000 - 0x91444ff7  libsystem_trace.dylib (72.1.3) <E1985F9C-78FC-3098-8683-81F0DCEE54BB> /usr/lib/system/libsystem_trace.dylib
    0x91445000 - 0x9144eff7  libsystem_notify.dylib (133.1.1) <B8503E99-214B-3AC3-A7CA-CC837ABD7B25> /usr/lib/system/libsystem_notify.dylib
    0x9156c000 - 0x91586ff7  liblzma.5.dylib (7) <D0BC984D-5B33-328C-8F1E-7E9C41813433> /usr/lib/liblzma.5.dylib
    0x91587000 - 0x91589fff  libsystem_configuration.dylib (699.1.5) <CDD8D1DA-3414-3A19-B340-EA116D52EA21> /usr/lib/system/libsystem_configuration.dylib
    0x9158a000 - 0x9159bff3  libsystem_coretls.dylib (35.1.2) <87AE2CBB-A397-3392-A152-02AEA6D194D6> /usr/lib/system/libsystem_coretls.dylib
    0x9159c000 - 0x91636fff  com.apple.ColorSync (4.9.0 - 4.9.0) <091CDCEC-1B25-3FE7-94C2-8AEFA6564E95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x918ff000 - 0x918fffff  libOpenScriptingUtil.dylib (162) <9872C464-DF90-37C2-9871-8A3F53C615EC> /usr/lib/libOpenScriptingUtil.dylib
    0x91900000 - 0x91909fff  libGFXShared.dylib (11.0.7) <AFC7CCD1-D935-3968-8CE3-303C13354F2B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9190a000 - 0x9195bfff  libcups.2.dylib (408) <08C5D411-533C-345A-B820-092C96215F2E> /usr/lib/libcups.2.dylib
    0x9195c000 - 0x919d6fff  com.apple.ApplicationServices.ATS (360 - 375) <7E075657-314E-3130-97A7-AFD826000C7B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x919d7000 - 0x919e3ff3  libcommonCrypto.dylib (60061) <024B3913-15C6-3005-9E5A-EB24918F6977> /usr/lib/system/libcommonCrypto.dylib
    0x919e4000 - 0x919e8fff  libheimdal-asn1.dylib (398.1.2) <71FCB9F7-A330-3C02-89F3-B483B1C67E54> /usr/lib/libheimdal-asn1.dylib
    0x919e9000 - 0x91a3cfff  libstdc++.6.dylib (104.1) <D0EB2C99-5939-3ABA-9C18-D9AD75CE23A1> /usr/lib/libstdc++.6.dylib
    0x91a3d000 - 0x91a7dfff  com.apple.Symbolication (1.4 - 56045) <BE1C4846-DA11-365D-9B46-3FF130401839> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x91a7e000 - 0x91eb9feb  com.apple.vImage (8.0 - 8.0) <56F6B317-9D70-3DC5-9868-BB6D7CB6E55D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91eba000 - 0x91ebbfff  libsystem_blocks.dylib (65) <5D98F022-E863-31D4-8ADE-D53B2AE0D331> /usr/lib/system/libsystem_blocks.dylib
    0x91ef1000 - 0x91f55ff7  com.apple.AE (681 - 681) <EEE62980-421B-33BD-BB88-6BDE269A3060> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91f56000 - 0x91f59fff  libdyld.dylib (353.2.1) <6533C0BC-6FE5-3E43-A44D-EF2193978EC0> /usr/lib/system/libdyld.dylib
    0x91f90000 - 0x91f98fff  libsystem_pthread.dylib (105.1.4) <D90BD4F4-8DFA-3683-9C26-313D2F4F8C41> /usr/lib/system/libsystem_pthread.dylib
    0x91f99000 - 0x91fc8fff  com.apple.CoreVideo (1.8 - 145.1) <A59466FC-6B5A-3B36-BDD4-AC9CD581B7A1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91fc9000 - 0x91ff3fff  libxslt.1.dylib (13) <0F55B64A-6C55-304E-ACE0-B531027AA066> /usr/lib/libxslt.1.dylib
    0x92026000 - 0x9206dff3  com.apple.AppleJPEG (1.0 - 1) <C14A2B49-A664-3EDE-9B9B-6A678ED7F8DE> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x9206e000 - 0x92070ffb  libsystem_secinit.dylib (18) <3CBA3BD3-8BA2-358D-BD1A-A1C3DF5D84E6> /usr/lib/system/libsystem_secinit.dylib
    0x92071000 - 0x920abff7  com.apple.DebugSymbols (115 - 115) <D01FFA10-1734-31C5-B5A1-9CB61463FC15> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x920ac000 - 0x920befff  com.apple.Sharing (328.3 - 328.3) <460DD833-B33A-369E-A5EF-B21D5AA231EF> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x920bf000 - 0x9212aff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <632A811D-4706-3ED7-85E3-DD2CDB47CF8F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x9212b000 - 0x9212dfff  libsystem_coreservices.dylib (9) <20E66A47-8D67-344A-A393-73926F0E5FB2> /usr/lib/system/libsystem_coreservices.dylib
    0x9212e000 - 0x92420ffb  com.apple.CoreImage (10.0.33) <75B23F45-8D99-3521-89AE-AF2AF4487096> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x92422000 - 0x924d1fff  com.apple.Bluetooth (4.3.0 - 4.3.0f10) <6BE1AED1-C590-36BE-B796-2F3856318633> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x92533000 - 0x9270f2ef  libobjc.A.dylib (646) <EF789AF0-508F-3D49-A988-376CE2E1107C> /usr/lib/libobjc.A.dylib
    0x92710000 - 0x927b0fff  com.apple.QD (301 - 301) <4DFE3689-59DE-3FBC-806B-6A4056573E52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x927b2000 - 0x9289efe7  libvMisc.dylib (512) <56B7DE45-36B1-32BE-B823-DB14F315EEB9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x928ee000 - 0x929fafe3  libvDSP.dylib (512) <54403134-29AE-3806-89D7-2CBA7B455736> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92a51000 - 0x92a8eff7  libsystem_network.dylib (411) <4D5BCDE3-5155-3D97-84C5-778D56A5122A> /usr/lib/system/libsystem_network.dylib
    0x9339d000 - 0x933adff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <DBECFAD5-DB53-390C-AE92-09549733C861> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x933e5000 - 0x933eefff  com.apple.CommonAuth (4.0 - 2.0) <88D8A3D8-5F27-3545-8CD2-456FFDE5383D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x933ef000 - 0x93465ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <B6F346D2-BF88-3925-B962-E59267FA2268> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x937e9000 - 0x938e9ff7  com.apple.LaunchServices (644.10 - 644.10) <9A64517C-7DAE-3247-AD6E-FD3FB49A54D8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x938fa000 - 0x93908ff3  libxar.1.dylib (254) <D7C4FDEB-61AA-3FC1-8B7B-0AE3A3A64492> /usr/lib/libxar.1.dylib
    0x93909000 - 0x939a6fff  com.apple.ink.framework (10.9 - 213) <F47949BC-ABEE-329B-B568-71C6FEF761F6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x939a7000 - 0x939d6ff7  com.apple.DictionaryServices (1.2 - 229) <1F5C35C7-67AA-30A0-A366-EB4B361152A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93f41000 - 0x94329ff7  libLAPACK.dylib (1128) <4E3D1289-2C98-3E53-BB8D-AD911357FF66> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9432a000 - 0x9432cfff  com.apple.loginsupport (1.0 - 1) <47A71885-BB14-3DB8-AE19-F74ABA120290> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x94335000 - 0x94361fff  com.apple.ChunkingLibrary (2.1 - 163.1) <2B0CBB85-EF91-351A-8750-A185996E4CDB> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x94364000 - 0x943cdff7  libcorecrypto.dylib (233.1.2) <F188C1A7-E88F-3EC5-A6AA-22C02E3F0C93> /usr/lib/system/libcorecrypto.dylib
    0x94e3c000 - 0x94e44fff  com.apple.CoreServices.FSEvents (1210 - 1210) <FC372799-6E8E-3290-9816-6981D39BC9D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x94e45000 - 0x94e52ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <DD10F01B-45E7-31A0-A19B-2AEEB689C6C4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x950d9000 - 0x950e8ff3  com.apple.opengl (11.0.7 - 11.0.7) <C4738E5F-C178-3A01-B941-C638E6A14D7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x950e9000 - 0x9522dfff  com.apple.ImageIO.framework (3.3.0 - 1038) <98EC2248-5270-3CB5-84FD-CD225A9875D4> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9522e000 - 0x9525cff7  libarchive.2.dylib (30) <8758D35F-ADF8-30F6-8EB2-9B852876EAC8> /usr/lib/libarchive.2.dylib
    0x9525d000 - 0x952aefff  com.apple.opencl (2.4.2 - 2.4.2) <33B19D84-C463-3762-B1AB-C5CB8F7DC87F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x952af000 - 0x952b2fff  com.apple.xpc.ServiceManagement (1.0 - 1) <942B9491-B97C-36DB-A9F0-3EA3273FCD2C> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x952b3000 - 0x952b8ff7  libcompiler_rt.dylib (35) <6630682F-AB76-3E55-BE51-0A3E61B6CFC2> /usr/lib/system/libcompiler_rt.dylib
    0x953c8000 - 0x953d5fff  com.apple.OpenDirectory (10.10 - 187) <94A3ED17-CD64-3D4A-8470-69C937CABF50> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x953d6000 - 0x95409fe3  libsystem_m.dylib (3086.1) <951F633F-57B7-398B-912F-F6ED4DB1C597> /usr/lib/system/libsystem_m.dylib
    0x9540a000 - 0x95418ff7  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <637E7AB2-1077-319C-A6A2-D0D0F01951BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
    0x95419000 - 0x9541dffb  libGIF.dylib (1231) <9DE811E6-6151-32B2-8C89-AD97EC7815B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9541e000 - 0x95614fff  libicucore.A.dylib (531.30) <BD09E200-FF42-3E9D-814C-0BC8F2C0EAC9> /usr/lib/libicucore.A.dylib
    0x95615000 - 0x9563bff3  libc++abi.dylib (125) <E9AF8CA1-D54D-37E3-8363-A3E8C0840F71> /usr/lib/libc++abi.dylib
    0x95666000 - 0x9568cffb  libPng.dylib (1231) <A9ACFC7E-9F25-3F15-AFAB-C74C3DAA1D06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95790000 - 0x95b86ff3  com.apple.CoreGraphics (1.600.0 - 772) <0D322365-219E-3D67-96BB-2B2416ACB4F5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x95cfd000 - 0x95da2fff  com.apple.Metadata (10.7.0 - 916) <2776B7E6-9047-3E30-9297-DD5CF53D7C42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95da3000 - 0x95dc2ff7  com.apple.GenerationalStorage (2.0 - 209.11) <34CF76B2-8052-359D-816D-092608FB6919> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x95dc3000 - 0x961f6ff3  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <EF92C25B-3E33-379F-A862-75C2FCA8B386> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x961f7000 - 0x961feff3  libunwind.dylib (35.3) <29D9343F-9A0A-3535-B0AE-E7CC761D95EE> /usr/lib/system/libunwind.dylib
    0x96221000 - 0x9623afff  com.apple.Kerberos (3.0 - 1) <92735F11-CF1C-3FA6-8682-9A30AC9E2651> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9623b000 - 0x9623efff  libextension.dylib (55) <E191881E-EAFD-3FD4-A8C1-7620DDC6F125> /usr/lib/libextension.dylib
    0x964db000 - 0x964dbfff  com.apple.ApplicationServices (48 - 48) <76C301A4-705B-33DE-BA11-C89DCF1EDCDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x964dc000 - 0x96502ffb  libxpc.dylib (559.1.22) <CB6B442F-8BE4-37B6-9A00-4753BC1C368C> /usr/lib/system/libxpc.dylib
    0x96503000 - 0x96707ff3  com.apple.CFNetwork (720.0.9 - 720.0.9) <7CDEA161-4DDC-381D-A2EF-B5F7B2154B8A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x96708000 - 0x96715ff7  libbz2.1.0.dylib (36) <6BC7B049-8F03-3217-9840-B1804CCBF742> /usr/lib/libbz2.1.0.dylib
    0x96716000 - 0x9672bffb  com.apple.MultitouchSupport.framework (260.30 - 260.30) <2E28AF1C-AC6C-364F-B181-C5926A7F5A4D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x96761000 - 0x96765ffb  libcache.dylib (69) <55501A00-AF64-3554-8F46-8D5AFEDEC332> /usr/lib/system/libcache.dylib
    0x96766000 - 0x9676ffff  com.apple.DiskArbitration (2.6 - 2.6) <D906604A-1D8C-31BF-8F22-EA219FFC858F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97815000 - 0x97b6dfff  libmecabra.dylib (666) <2248841A-A8F6-3F98-AFA2-F60F7539B788> /usr/lib/libmecabra.dylib
    0x97b6e000 - 0x97baeffb  libGLImage.dylib (11.0.7) <1F2F2EFE-1EFA-398F-80D6-8AC6EA5160DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97baf000 - 0x97bbffff  libGL.dylib (11.0.7) <2AF64D8C-3447-3C85-B4A1-77F03456E402> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97bc6000 - 0x97be9ffb  com.apple.framework.Apple80211 (10.0 - 1000.57.3) <73620B5D-1E69-37DE-B186-AE9E8E7834D8> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x97bea000 - 0x97bfbfff  libbsm.0.dylib (34) <C9F0C608-2794-3F6B-8078-583FC0046039> /usr/lib/libbsm.0.dylib
    0x97bfc000 - 0x97c08ff7  libkxld.dylib (2782.1.97) <779DF7F9-9B34-3FD9-9BC1-482CDA59E17A> /usr/lib/system/libkxld.dylib
    0x97c09000 - 0x97c09fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <180BFBE5-2218-3A6F-A1B2-CCA1C92B66F7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x97c0a000 - 0x97c27fff  libCRFSuite.dylib (34) <781A92EF-410E-39B2-953D-FEE12748D834> /usr/lib/libCRFSuite.dylib
    0x97c28000 - 0x97c30fff  libsystem_dnssd.dylib (561.1.1) <45CDAF46-03DE-33DB-A627-14F245993EF2> /usr/lib/system/libsystem_dnssd.dylib
    0x97c31000 - 0x97ca7fff  com.apple.securityfoundation (6.0 - 55126) <64E4CE02-8BE6-3408-99A5-23E5CF7545BC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x97ca8000 - 0x97ca9fff  libDiagnosticMessagesClient.dylib (100) <3EE83437-AA9C-356B-810B-589346B73797> /usr/lib/libDiagnosticMessagesClient.dylib
    0x97cc5000 - 0x97ce2ffb  com.apple.Ubiquity (1.3 - 313) <9ED23769-0725-3D4B-B7F4-AF08020D73C3> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x97ce3000 - 0x97cf6fff  libcmph.dylib (1) <2449B048-208E-36FB-9DFA-47E0F3BCF132> /usr/lib/libcmph.dylib
    0x97cf7000 - 0x97cfbffb  com.apple.IOSurface (97 - 97) <ADB57CD2-455A-317C-818E-6379BF427D10> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97d30000 - 0x97e34ff7  libJP2.dylib (1231) <77B25D2E-F9DE-3565-894A-970DE207B0EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97e5f000 - 0x97e5ffff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <64ED443E-25D5-3A2C-A028-0D0C7FAF57C6> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97e60000 - 0x98a4cfff  com.apple.AppKit (6.9 - 1343.14) <8A4EA92C-E6DE-3F03-9B88-A183FCDD6644> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x98a4d000 - 0x98b63ff3  com.apple.desktopservices (1.9 - 1.9) <01A07F2E-9F9A-3847-AB11-C550827B3778> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x98b64000 - 0x98ba4fff  libauto.dylib (186) <1609D0F9-6E3A-3C67-87EF-BB0BD93EDAC9> /usr/lib/libauto.dylib
    0x98ba5000 - 0x98f7bff7  com.apple.HIToolbox (2.1.1 - 756) <5204085A-4D56-3430-889F-11C42E43729B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98f7c000 - 0x98fd1ff3  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <F5A586C3-A440-3E0E-966A-7841A182E5B2> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98fd2000 - 0x99161ff3  libsqlite3.dylib (168) <C3F78985-C19B-3320-9F71-543969632128> /usr/lib/libsqlite3.dylib
    0x99172000 - 0x99176ffb  com.apple.TCC (1.0 - 1) <BFA66EA1-2839-3648-80F6-96AE136A6838> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x99177000 - 0x99177fff  com.apple.CoreServices (62 - 62) <FF296ED2-0F90-3055-BBE4-7BF9E42322EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x99178000 - 0x9917ffff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <5D268178-3812-3777-92A6-D7D3395405B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x99180000 - 0x992f1ffb  libBLAS.dylib (1128) <ACEF468C-5DB1-38F3-BCB2-6F3D7F2B2040> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9930b000 - 0x99319ff7  libz.1.dylib (55) <DF3B8F77-8931-3A6B-8BDF-DB67315050E6> /usr/lib/libz.1.dylib
    0x9931a000 - 0x99324ffb  com.apple.audio.SoundManager (4.2 - 4.2) <4312D0A7-4B6F-3A1E-9A47-24C6E8C65E51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x99353000 - 0x994deffb  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <44BCEAB8-306D-307F-92C8-6656F3578220> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x994df000 - 0x996a3ff3  com.apple.QuartzCore (1.10 - 361.11) <9CED60CF-9B7F-3288-A7E9-3AE087F9E076> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99757000 - 0x99757fff  libkeymgr.dylib (28) <06DDCEF8-EB84-3F68-9E19-FD1A12B764FD> /usr/lib/system/libkeymgr.dylib
    0x99758000 - 0x9975bfff  libpam.2.dylib (20) <E2F34522-448A-3392-BC1D-6625BEB612B9> /usr/lib/libpam.2.dylib
    0x999f6000 - 0x99a7dfff  com.apple.CoreServices.OSServices (640.3 - 640.3) <8DD52AC8-238C-3E5C-ADBB-ABDA770D708A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x99a7e000 - 0x99a84ff7  libsystem_networkextension.dylib (167.1.10) <FC20E3AD-A53D-3346-AC71-829E82832AE8> /usr/lib/system/libsystem_networkextension.dylib
    0x99a85000 - 0x99af9fff  com.apple.Heimdal (4.0 - 2.0) <5D2BE254-CFCD-3A15-9A89-1CBBDE0FF265> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99b16000 - 0x99b93ff3  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <C3A9E799-0B67-3292-AF44-43CCA846C169> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x99c60000 - 0x99c86ff7  com.apple.IconServices (47.1 - 47.1) <9C537499-B375-3F84-BF4A-EEF757FC26A9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x99d4b000 - 0x99e3cffb  libiconv.2.dylib (42) <4AF77F10-0BEC-3BE0-99DF-C5170EDB316B> /usr/lib/libiconv.2.dylib
    0x99e3d000 - 0x99eb0ffb  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <F46A7092-ADC6-3596-B046-8026F2814D8D> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x99eb1000 - 0x99ebafff  libcopyfile.dylib (118.1.2) <FAF3268F-C580-33D3-A5B4-74B8A8713216> /usr/lib/system/libcopyfile.dylib
    0x99ece000 - 0x99f4dfff  com.apple.SystemConfiguration (1.14 - 1.14) <89A67A1E-850F-3ED1-AB7D-9057A5B0FF0D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x99f4e000 - 0x9a080ffb  com.apple.UIFoundation (1.0 - 1) <00A59CFF-A217-3998-B22E-6E452278A302> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x9a081000 - 0x9a085fff  libCoreVMClient.dylib (79) <85CBF1F3-3CE1-304F-88DF-15608C9A2367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9a39b000 - 0x9a3befff  libJPEG.dylib (1231) <33D03A5B-CED8-3FDC-8892-723DD6E423FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9a3bf000 - 0x9a44bff3  com.apple.PerformanceAnalysis (1.0 - 1) <CB175B15-8AA3-3ECA-88ED-E561D7722DFB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9a44c000 - 0x9a4e1ff3  libsystem_c.dylib (1044.1.2) <819FD4E2-3B29-38F0-AC5C-BEE865489F5F> /usr/lib/system/libsystem_c.dylib
    0x9a4e2000 - 0x9a895fff  com.apple.CoreFoundation (6.9 - 1151.16) <2F4FE1E8-D09B-3C62-B884-7A41111F4FBB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9ab8f000 - 0x9ae8dff7  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <C18EC809-6E67-3D9C-82D5-34170A81254C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9ae8e000 - 0x9aeb7ff7  libsystem_info.dylib (459) <4F7A7111-7F0D-3891-9DC9-41F5D79949FE> /usr/lib/system/libsystem_info.dylib
    0x9aeb8000 - 0x9aed3ff7  com.apple.CFOpenDirectory (10.10 - 187) <12F3D599-88CE-3952-8987-7F6CEA2A809A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9aed4000 - 0x9b233ffb  com.apple.Foundation (6.9 - 1151.16) <76BF64BB-34C4-3409-BB6F-CAACDEE7681A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9b234000 - 0x9b4c7ff7  com.apple.CoreData (110 - 526) <C2C79A0B-70B1-3D88-951D-1C19D35B78E1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9b975000 - 0x9b975fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <96675103-6E3D-326A-83C0-82D3A34C3A1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9b976000 - 0x9b9a8ff7  com.apple.GSS (4.0 - 2.0) <36CBBD76-19AC-333E-AB52-A93800ABC89A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9b9a9000 - 0x9ba72fff  com.apple.backup.framework (1.6 - 1.6) <3CE096B0-65A6-3696-8726-E0B28D062834> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9ba73000 - 0x9ba78ff7  libmacho.dylib (862) <48DE74F8-09E3-344F-A82F-665083A3BF8F> /usr/lib/system/libmacho.dylib
    0x9ba9c000 - 0x9bd18ff3  com.apple.security (7.0 - 57031.1.35) <4721C22E-D6C2-3202-B80D-5E67169466D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9bd19000 - 0x9bd74fff  com.apple.LanguageModeling (1.0 - 1) <9B39E059-F48E-31AF-B1B3-B0872F362627> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x9bd75000 - 0x9be6bff7  libxml2.2.dylib (26) <2F37833C-4D55-3A09-9A0C-5904E8B6892A> /usr/lib/libxml2.2.dylib
    0x9be6c000 - 0x9beb5ffb  libFontRegistry.dylib (134) <023BB8A2-8BBA-30DC-B0C2-A5F0AE3667D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9c020000 - 0x9c05cff3  com.apple.RemoteViewServices (2.0 - 99) <2839C2F1-88DA-3843-87BF-441A374A8967> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9c05d000 - 0x9c0effff  com.apple.CoreSymbolication (3.1 - 56072) <BADFFEF1-5CD8-37BC-B8FD-7C955EF0D0A1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9c144000 - 0x9c14fff7  com.apple.CrashReporterSupport (10.10 - 629) <BB92BB57-6F2F-3348-BEF4-58036DF40FA4> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9c153000 - 0x9c154fff  liblangid.dylib (117) <34A0F807-755F-300B-B01F-AABAE3838451> /usr/lib/liblangid.dylib
    0x9c155000 - 0x9c168fff  com.apple.CoreBluetooth (1.0 - 1) <DF406F6F-C173-3598-8785-8A2014F770EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x9c172000 - 0x9c174fff  libquarantine.dylib (76) <9ADD861F-A66E-3AD1-A77E-C622E91BD203> /usr/lib/system/libquarantine.dylib
    0x9c324000 - 0x9c33bfff  libsystem_asl.dylib (267) <85BD88AD-618E-3325-AC31-10DBAB8E9AF3> /usr/lib/system/libsystem_asl.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 11908
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=152.7M resident=48.7M(32%) swapped_out_or_unallocated=104.0M(68%)
    Writable regions: Total=61.0M written=1708K(3%) resident=2060K(3%) swapped_out=0K(0%) unallocated=59.0M(97%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Kernel Alloc Once                     4K
    MALLOC                             51.7M
    MALLOC (admin)                       48K
    Stack                              64.1M
    VM_ALLOCATE                        1212K
    VM_ALLOCATE (reserved)               16K        reserved VM address space (unallocated)
    __DATA                             6576K
    __IMAGE                             528K
    __LINKEDIT                         47.0M
    __OBJC                             2208K
    __TEXT                            105.8M
    __UNICODE                           544K
    mapped file                       103.1M
    shared memory                         4K
    ===========                      =======
    TOTAL                             382.4M
    TOTAL, minus reserved VM space    382.4M
    System Profile:
    Network Service: Ethernet 1, Ethernet, en0
    Bluetooth: Version 4.3.0f10 14890, 3 services, 19 devices, 1 incoming serial ports
    PCI Card: NVIDIA GeForce GT 120, Display Controller, Slot-1
    PCI Card: CalDigit USB3 Adapter, USB eXtensible Host Controller, Slot-2@9,0,0
    PCI Card: pci1b4b,9123, AHCI Controller, Slot-2@8,0,0
    PCI Card: pci1b4b,91a4, IDE Controller, Slot-2@8,0,1
    Thunderbolt Bus:
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: > LaCie d2 DVD-RW Firewire, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: My Book, WD, Up to 800 Mb/sec
    Memory Module: DIMM 1, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 2, 2 GB, DDR3 ECC, 1066 MHz, 0x857F, 0x463732353655363446393333334700000000
    Memory Module: DIMM 3, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 4, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 5, 2 GB, DDR3 ECC, 1066 MHz, 0x857F, 0x463732353655363446393333334700000000
    Memory Module: DIMM 6, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 7, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 8, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    USB Device: My Book
    USB Device: Hub
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    USB Device: Vendor-Specific Device
    USB Device: HP USB Laser Mouse
    USB Device: Hub
    USB Device: Display iSight
    USB Device: Apple LED Cinema Display
    USB Device: Display Audio
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Backup+ Desk
    USB Device: USB-SATA Bridge
    Serial ATA Device: HL-DT-ST DVD-RW GH41N
    Serial ATA Device: Hitachi HDS723020BLA642, 2 TB
    Serial ATA Device: WDC WD10EADS-00L5B1, 1 TB
    Serial ATA Device: Hitachi HDS722020ALA330, 2 TB
    Serial ATA Device: WDC WD20EADS-11R6B1, 2 TB
    Serial ATA Device: MARVELL VIRTUALL
    Model: MacPro4,1, BootROM MP41.0081.B07, 8 processors, Quad-Core Intel Xeon, 2.26 GHz, 10 GB, SMC 1.39f5
    Graphics: NVIDIA GeForce GT 120, NVIDIA GeForce GT 120, PCIe, 512 MB

  • Existing piece won't run video files on windows 7 and vista

    hi, folks - I need some help.
    we have a series of older (2003) authorware pieces that use .mpg and .mov files. We run the lessons (exams, actually) at 10 or so sites across the country, twice a year. They've been running fine for 7 years with occasional updates and tinkering. At the sitting last week we had problems with a lab that just converted to Windows 7 and another laptop that runs Vista Business. In both cases the authorware file loads and runs until a screen that tries to load a video file. The placeholder shows up (a square with an x across it indicating its size), but the piece freezes and nothing runs. The piece runs fine on all the other sites and on a variety of pc's at our location.
    In both cases, we are able to load and run the video files directly from the hard drive through Media Players, but they will not load in authorware.
    I've tried recompressing the files into .wmv, mp4, mov, and avi. Still won't run. Tried recompressing on a different machine and still no joy.
    would really appreciate any ideas or help on this.
    thanks,
    Ron

    thanks, Steve and Eric. Replaced it and it's running fine - appreciate the response and advice.
    Regards,
    Ron

  • HTML DB won't run after Install

    I've installed htmldb twice using the htmldb_1.6.0.zip file. In both instances it won't run, with identical behavior. Here's my configuration:
    dads.conf:
    Alias /i/ "C:\oracle\product\10.1.0\MT\Apache\Apache\images/"
    <Location /pls/htmldb>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
    PlsqlDatabasePassword ######
    PlsqlDatabaseConnectString localhost:1521:dev
    PlsqlDefaultPage htmldb
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlAuthenticationMode Basic
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    </Location>
    marvel.conf:
              <Location /pls/htmldb>
              SetHandler pls_handler
              Order deny,allow
              Allow from all
              AllowOverride None
              PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
              PlsqlDatabasePassword ######
              PlsqlDatabaseConnectString 127.0.0.1:1521:dev
              PlsqlDefaultPage htmldb
              PlsqlDocumentTablename wwv_flow_file_objects$
              PlsqlDocumentPath docs
              PlsqlDocumentProcedure wwv_flow_file_manager.process_download
              PlsqlAuthenticationMode Basic
              PlsqlNLSLanguage AMERICAN_AMERICA.WE8ISO8859P1
              </Location>
    Error Log:
    [Wed Apr 06 16:03:43 2005] [notice] FastCGI: process manager initialized
    [Wed Apr 06 16:03:50 2005] [error] [client 127.0.0.1] [ecid: 1112825030:192.168.1.6:4040:3216:1,0] mod_plsql: DAD '/pls/htmldb' is disabled because of misconfiguration. Please refer to the log entries during server startup up for more information.
    [Wed Apr 06 16:03:50 2005] [error] [client 127.0.0.1] [ecid: 1112825030:192.168.1.6:4040:552:1,0] File does not exist: c:/oracle/product/10.1.0/mt/apache/apache/htdocs/favicon.ico
    The file favicon.ico does not exist anywhere in the oracle directory tree. I can log into my database using sqlplus and the username/password listed in the dads.conf. I don't see anything else that I should check...any ideas?

    418849,
    favicon.ico is not the issue
    I see two issues:
    1) If both dads.conf and marvel.conf are included in the Apache configuration, then that will be an error as you cannot have two Database Access Descriptors defined with the same name.
    2) You're missing the 'ServiceNameFormat' string after your value for PlsqlDatabaseConnectString.
    Joel

  • CS3 installs but won't run

    Ok - not sure if this goes in this section or not.. but it's a technical question.
    My b/f bought me a Dell Laptop last week. It has the recommended minimum of everything adobe says it needs for photoshop CS3 (see below for 1721 specs)
    When I installed it on the laptop - it was slow, but said it installed. But when I go to open up Photoshop, it opens the screen - and then just hangs. After about 5 minutes it says not responding and I close it. Any of the other programs that came with won't even get that far. I click on them and it gives the little "thinking" circle (as I call it.. lol) and then nothing.
    I have read that CS3 has issues with Vista - but their site says the home premium should work. I've also read about 64 bit issues.. but the OS is 32 bit - so it's capable of running 32bit systems... I guess.
    I called adobe yesterday after installing and reinstalling CS3 15+ times... with the same issue. I was on the phone for about 2 hours with them. Basically - they have NO CLUE what it would be since it installs fine and opens with no error messages. I checked the log files and there is nothing in there I see that says any kind of error.
    I have disable windows defender, uninstalled McAfee and google desktop (all are known to cause issues with CS3), I have ALL non MS startup services turned off.. I have turned off the MS users control.. all suggested by the adobe tech.
    I have installed using the run as administrator. Nothing. Created a new admin account and installed on that user and opened on reg admin account. Nothing. (again typical things that correct cs3 install issues)
    The last thing the guy said was that it might be a video issue. I checked and there aren't any issues mentioned and no driver updates listed.
    We tryed installing this on my b/f's laptop. He bought the exact one I have (except his is red.. mine blue.. lol) and it does the EXACT same thing...
    So today we called dell. they say it's a software issue and won't answer any questions for free. Apparently only hardware support is free... But they won't accept this is a hardware conflict with the software..
    errrrr
    Anybody have any clues on this?
    =======================================
    LAPTOP SPECS:
    Inspiron 1721 Notebook: AMD Turion 64 X2 Mobile Technology TL-56 (1MB/1.8GHz) Genuine Windows Vista Home Premium
    Operating System
    Genuine Windows Vista Home Premium
    Memory
    2 GB DDR2 SDRAM 677MHz (2 DIMMs)
    Hard Disk Drive
    120 GB SATA Hard Drive (5400 RPM)
    Video
    ATI RADEON Xpress1270 HyperMemory
    Media Bay
    8X DVD +/- RW w/dbl layer write capability
    Base
    Inspiron 1721 Notebook: AMD Turion 64 X2 Mobile Technology TL-56 (1MB/1.8GHz)
    Bluetooth Wireless
    Bluetooth Wireless Card 355
    Software Upgrade
    Microsoft Works 8.5
    Premium Pack - Advanced Photo+Music: Deluxe Pack + Paint Shop Pro XI
    NoteBook Screen
    17 inch WXGA+ TrueLife Glossy Notebook Screen
    Hardware Upgrade
    No Camera
    6 Cell Primary Battery
    90W AC Adapter
    Network Interface Card
    Dell 1505 Wireless-N

    Rob - thanks for taking a stab at this.
    I have tried installing from the DVD and also from the zip file. the zip file was extracted to the hard drive brfore I ran it - and I ran it as administrator.
    And when it stalls - it gives the (NOT RESPONDING) tag on the window - which usually means that even if I leave it (and I have for up to 20 minutes) - still nothing.
    Here's the update from my dealings with DEll today...
    Dell tech support guy told me that it was a know issue that CS3 WON'T run on Vista and that Adobe is working the issue
    Told them that I knew others that were running it on Vista and it worked fine. They had no answer.
    Then I waited for the Technical support manger to call. This is after expressing my displeasure to the technical supervisor about them trying to pawn this issue off on anyone else but themselves. Why can't they go grab a 1721 off the shelf and replicate the issue and try to figure it out from there?!?!?!
    I used to work on a network helpdesk.. if I tried to pull that crap answer without trying to replicate the issue and AT LEAST try to find an answer.. I wouldn't have lasted very long at all!!!!
    The Tech manager told me to call customer support and ask for an OS swap (from vista to XP) because they don't know what the problem is and so it muct be a Vista compatibility issue
    I call customer support. They say that they no longer will give out XP since it is a step backwards. And to install XP on the machine ourselves (even a liscensed copy) would void the warranty. They suggest I talk to sales about swapping the laptop out with a "more compatible" one. Which isn't a totally bad idea since I really do think it is an AMD/ATI conflict.
    They transfer me to Sales.. ohh - you used the Employee Purchase program.. you need to talk to them.. and they transfer me.
    The EPP people tell me.. ohhhh you didn't actually go through us since you bought it off the Dell Outlet store. So they transfer me.
    The dell outlet store says they will be more than happy to swap me out to an Intel based machine.
    Only catch is the Intels are more expensive. They don't have any for the price we paid for the amd's. Fot about $40 more I can get one with a slower processer, a gig less ram, no dvd writer, but with a 160gb hd. To get compatible to mine - would be about $150 more.
    And they only have silver in the low end, and black or brown in the higher. Not that I really give a s@!t what the color is.. but it brings up the main reason I am sooo pissed abput all of this....
    Why should I have to pay more money, settle on doing without option/features want/need.. just because THEY don't want to take the time to figure out what the real issue is?!?!?! Why isn't it them doing these calls and doing all this troubleshooting.. Why am I being peanilzed for THEM not wanting to do their jobs....
    Told the B/F that I am done with Dell. That I don't want the laptop anymore and I don't want any other one from them. He says he'll pay the extra and get me the other one.. but that isn't the point....
    Not sure what my next move is.

  • How do I install the FM10 licensing fix when Adobe Update Installer won't run?

    Adobe Update Installer won't run so can't install FM10 licensing fix
    This question is Not Answered.(Mark as assumed answered)
    Aug 9, 2013 12:09 PM
           Tags (edit): none (add)  
    Because FM10 began crashing with "fatal" errors whenever I tried to generate a TOC for a small (65 page) book, I researched workarounds and none of them worked. Now that I have delivered a crippled deliverable via Acrobat manipulations, I would like to fix FM. I uninstalled it and reinstalled it, got some updates, and then received the "licensing fix" error that popped up in January. I'm wondering why this fix was included not in the updates. That said, the licensing fix package, first, would not unzip so I downloaded it again. I unzipped it but I got a message that Adobe Updater Installer could not run and after several clicks I found that file. I reinstalled Adoble Update Installer but it still does not run.
    I am running Windows XP and have TCS 3.5.I uninstalled FM and RH but not Acrobat, Captivate, or Photoshop.
    So, now what? Listen to my supervisor who says never use FM again?
    P.S. Why do I have to enter a title for my question and then do it again when this page opens??

    Give Adobe Support a call or contact the TCS team at [email protected] - something in your environment is causing the installer to fail (I'd guess).

  • Action steps that won't run correctly in PSE 7/8/9 (but did in 4 and 6)

    I have a wonderful action that was written to work in PSE 3/4/6.  It won't run in PSE 7/8/9.  After fooling around for a while, I think I understand why.  Adobe changed the way Adjustment Layers are handled.  In earlier versions of Photoshop and Elements, Adjustment Layers threw up a modal dialog box.  That changed so that Adjustment Layers now appear in the Palette Bin as a palette.
    Here a sample of some of the action steps that won't work correctly:
    Make adjustment layer
    Using: adjustment layer
    Type: levels
    Set Selection
    To: none
    Set current layer
    To: layer
    Name:  “Adjustment 1”
    Set current layer
    To: layer
    Mode: luminosity
    Stop
    Message:  “Move gray slider left”
    With Continue
    Set current adjustment layer
    To: levels
    In earlier versions of PS and PSE, the way these steps would work is that a new adjustment layer would be created, the dialog box giving the instruction would open, it would be dismissed by clicking "Continue," and then the "Set current adjustment layer to: Levels" would generate a model adjustment layer dialog box would open up which would let one make the adjustment.
    In newer versions, since Adjustment Layers are handled in the Palette Bin, after dismissing the instructions, the action doesn't stop to allow the user to make change the sliders on the adjustment layer.
    The action runs perfectly in CS4 and CS5 and throws up the levels adjustment modal box as it did in PSE 4 and PSE 6, but the action doesn't throw the modal box in PSE 7/8/9
    Does anyone know of a way to alter the action steps to allow the action to stop to allow the adjustment and then to resume again?

    Adding a new levels adjustment layer on top of the Midtone contrast layer
    should work, just use a clipping mask to restrict the adjustments to the
    areas of the levels adjustment layer below. The histogram will be different, but
    actually testing the action is really the only way to know if that makes any difference.
    Replacing the levels adjustment layer is another option, though it requires a few more steps.
    The following assumes when the action gets to this point,
    the Midtone contrast adjustment layer is the active (selected) layer.
    To record this part of the action:
    1. Duplicate current channel (in the channels panel. drag the Midtone contrast mask
        down to the Create new channel icon at the bottom of the channels panel)
    2. Ctrl+click on the newly created channel (Midtone contrast mask copy)
        This loads the selection of that channel.
    3. Drag the new channel (midtone contrast mask copy) to the trash icon at the bottom
       of the channels panel.
    4. Back in the layers panel, delete the Midtone Contrast adjustment layer.
    5. Go to Layer>New Adjustment Layer>Levels
        This creates a new levels adjustment layer using the selection loaded from
        the duplicated channel and opens the levels dialog.
    To load the RGB (composite) as a selection, Ctrl+click on the rgb in the channels panel
    and the same is true for the red, green and blue channels.
    With layer masks, elements doesn't seem to want to load them as selections in actions,
    so that's the reason for the action steps above.
    MTSTUNER

  • CS2 won't run

    CS2 won't run, says activation code no longer usable. Been running win7 on this system 3 years. Adobe says it won't activate in win7. Well, it did, and ran just fine. what's up?

    I assume when you say "Adobe says it won't activate in win7" that you talked to customer support....
    A drive change could trigger the need for reactivation.  Did you tell them that you're running from a mirrored drive?
    It sounds to me that they're being aggressive about trying to get you to upgrade when they should still be supporting you with active maintenance of their activation database.
    But unfortunately if you can't get them to adjust their database you're out of luck.
    -Noel

  • I have a Windows 2003 Server 64-Bit, and when I upgraded to Firefox 4.0.1 now it won't run, it keeps saying to restart to complete the installation, but I've restarted theserver 4 times, and I still can't use it.

    I have a Windows 2003 Server 64-Bit, and when I upgraded to Firefox 4.0.1 now it won't run, it keeps saying to restart the computer to complete the installation, but I've restarted theserver 4 times, and I still can't use it.

    I ended up putting it in DFU mode.  It's kinda hard to tell it was in DFU mode because nothing showed on the screen, it was just black, but the sounds from the computer helped to tell me it was connected.
    Itunes still didn't recognize the device for whatever reason.
    So I used redsn0w.  I don't know if I can say that on these forums, but considering itunes was worthless at this point I am going to give credit where credit is due.
    Now I am giving itunes a second chance to upgrade to 5.1, if it doesn't work, well, back to redsnow and maybe I will even jailbreak it this time rather than just using the fecovery fix found under extras.

  • How do I roll-back to the previous version of Firefox? An auto update occurred and now one of the programs used at the office (ACT! v6.0 SwiftMail) won't run with the browser.

    The office I work in uses a very old version of ACT!, an accounting package. This package has a component called SwiftPage, an antiquated email system that enables us to email from the ACT DB. SwiftPage runs via the web browser.
    Firefox just did an auto update (that I will have to find out how to turn off) and now SwiftPage won't run as it is not compatible.
    Can I "roll-back" my version of Firefox or do I have to uninstall and try to re-install an older version?
    HELP!

    Try loading and using the add-on from this link: https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/
    Many add-ons do in fact work if you force them to run. The procedure to roll-back is given in this article: [[installing previous versions of firefox]]
    Unfortunately the official Firefox policy is that you downgrade to 3.6 which is supported for a while longer, and not the now unsupported Firefox 4. If after installing and running the ''add-on compatibility reporter'' you still have problems there are ways around the official policy.
    I think it is absurd that Firefox 4 may be used by tens of millions of users one day and a few days later those that upgrade to Firefox 5 should be not only told not to use a now unsupported browser, if they need to revert due to problems, but are actually obstructed in attempts to do so. See also [/questions/840397#answer-205154]

  • FMS won't run on RHEL 6.2 EC2 instance - _defaultRoot__edge1 experienced 1 failure

    I've got a fresh RHEL 6.2 64-bit instance on EC2. I've turned off the firewall and have  installed an FMS 4.5 dev server. In the logs directory I have admin and master logs (only). The admin logs look ok:
    #Fields: date
    time
    x-pid
    x-status
    x-ctx
    x-comment
    2012-02-29
    09:24:26
    1144
    (i)2581173
    FMS detected IPv6 protocol stack!
    2012-02-29
    09:24:26
    1144
    (i)2581173
    FMS config <NetworkingIPv6 enable=false>
    2012-02-29
    09:24:26
    1144
    (i)2581173
    FMS running in IPv4 protocol stack mode!
    2012-02-29
    09:24:26
    1144
    (i)2581173
    Host: ip-10-204-143-55 IPv4: 10.204.143.55
    2012-02-29
    09:24:26
    1144
    (i)2571011
    Server starting...
    2012-02-29
    09:24:26
    1144
    (i)2631174
    Listener started ( FCSAdminIpcProtocol ) : localhost:11110/v4
    2012-02-29
    09:24:27
    1144
    (i)2631174
    Listener started ( FCSAdminAdaptor ) : 1111/v4
    2012-02-29
    09:24:28
    1144
    (i)2571111
    Server started (./conf/Server.xml).
    The master logs contain these lines, repeating every 5 seconds:
    2012-02-29
    10:43:17
    1076
    (i)2581226
    Edge (2790) is no longer active.
    2012-02-29
    10:43:17
    1076
    (w)2581255
    Edge (2790) _defaultRoot__edge1 experienced 1 failure[s]!
    2012-02-29
    10:43:17
    1076
    (i)2581224
    Edge (2793) started, arguments : -edgeports ":1935,80" -coreports "localhost:19350" -conf "/opt/adobe/fms/conf/Server.xml" -adaptor "_defaultRoot_" -name "_defaultRoot__edge1" -edgename "edge1".
    The FMS install failed, complaining about a missing libcap.so until I installed the libcap.i686 package. The following libcap packages are now installed:
    libcap.i686               
    2.16-5.5.el6    
    @rhui-us-east-1-rhel-server-releases
    libcap.x86_64             
    2.16-5.5.el6    
    @koji-override-0/$releasever
    libcap-ng.x86_64          
    0.6.4-3.el6_0.1 
    @koji-override-0/$releasever
    libpcap.x86_64            
    14:1.0.0-6.20091201git117cb5.el6
    Any help would be most appreciated.
    /Ed.

    I had the same problem on CentOS 6.2 x86_64, albeit not on EC2. It seems that the installer creates a symlink to the i686 libpcap (libcap.so.1 -> /lib/libcap.so.2) and fmsedge won't run with it. Manually removing that symlink and instead linking to the libcap.so.2 in /lib64 solved the problem for me.
    cd /opt/adobe/fms
    rm libcap.so.1
    ln -s /lib64/libcap.so.2 libcap.so.1
    HTH, Jeremy

Maybe you are looking for

  • IMessage on MacBook Pro

    Recently I created my own Apple ID, and so I changed my iPhone and Mac to run my Apple ID rather than the old one. Everything is fine on my iPhone but on my Mac my iMessage is still running off the old ID, does anyone know how to switch it to my new

  • MainStage 2.2.1 released

    Symptoms MainStage 2.2.1 is a software update for MainStage 2.2. MainStage 2.2 is a feature upgrade for MainStage 1.0 and 2.0 customers available for purchase on the Mac App Store. MainStage 2.2 includes several new features and fixes. Installation R

  • I purchased a book and downloaded the book on my pc, but I am unable to authorize and transfer this to my other devices

    As mentioned above, I purchased a book and downloaded it on my pc, but I am unable to authorize and transfer this purchase to my other devices.  I downloaded bluefire reader per online instructions and added the pdf book file to this app on itunes. 

  • Applet newbie question

    Hello I have a class that compiles and executes fine. What do I have to do to have the System.out.println commands show in the applet window. They are just showing on std out. Shouldnt this be automatic? Again sorry for the naivete, but this is where

  • MIFI data usage is up to 9.61 GB in just two weeks

    It appears my e-mail downloads are using up 10 GB. What can be done? I know I have far too many e-mails. Could you tell me how to transfer or delete these email so that they are not downloading each time I open up my e-mail account. Midori Tani (559)