Logic, error with preferences

I have just, as always, uploaded the improvements of Logic 7. Now when starting Logic I get the error message error in writing/reading the file "com.apple.logic.express.cs" Logical end-of-file reached during read operartion. Thereafter it says "Preference are nor loaded correctly.
The resullt is that all audio track, except for the tracks 1-4 are not available anymore (although the music is still visable). When starting a totallay new song, the same problem occurs, I can only create 4 audio tracks. What can I do, I was just to send three songs for mastering this week! I would be grateul fo any help.
Many thanks T

Close Logic, delete the file... it's the Control Surface bundle/preferences.
It should rebuild.
Odd you would corrupt that, do you have plenty of room on your system drive?
Also odd the other symptoms you're having, not sure those can all be attributed to a corrupted CS file. You may want to install the updates again.
pancenter-

Similar Messages

  • Error with Preferences in Financial Reports on workspace

    Hi,
    I am unable to open Financial Reporting through workspace(File->Preferences->Financial Reports)
    Here is the error in popup window
    Handler:'com.hyperion.reporting.web.common.HRPrefrsHandler' not found for module with id: reporting HRPrefs
    Here my Query is
    1. does the issue resolved if we add ip and FR server name in Host file(windows)
    or
    2. it may be any issue with Firewall or Browser( i'm using IE8 with Hyperion Workspace v11.1.1.1)
    Could any one please help me on this..
    Thanks
    para
    Edited by: 904472 on Jan 30, 2012 5:22 AM

    This means that workspace cannot connect to financial reporting through your web server.
    Check that Financial reporting web service is up.
    Direct to the JVM
    http://svr:8200/hr (svr is where your financial reporting web service is installed)
    Through the web server:
    http://ohssvr:19000/hr
    If the first link does not work check the logs to your financial reporting web service (user_projects\domains search *.log for Financial Reporting)
    If the second does not come up, maybe reconfigure your web server using the Oracle Config tool.
    Also, make sure you are coming into workspace using port 19000 (through the web and not through the jvm port 45000)
    Nick

  • Logical error with Sockets, not closing properly

    Hi again everybody, I am still in need of help it seems. I have been working on a way to transfer files from computer a to computer b but I cannot get the Sockets/Streams to work properly!
    The problem I keep getting is "IOException: java.net.SocketException: Software caused connection abort: socket write error"
    According to some threads in this forum its either because of a firewall blocking or because of an error such as the client trying to write to a stream that is closed in the other end ( or something like that, I cannot remember 100%).
    The thing is: I am only getting this the second time I try to send the file, the first time it works just fine.
    I can solve the problem by restarting the server (resetting the socket) after every time I send the file but that is not a solution, but merely a confirmation that I indeed have a bug.
    Can you please have a look at my code and point out where I missed something? I have been staring blindly at the code on and off for over a day now.
    CLIENT:
    import java.io.*;
    import java.net.*;
    * This is the FileSender class
    * Final version will take a File and Socket pointer
    * and send the file over the socket using the according handshake-protocol.
    * Current version opens it's own socket and can only send one File.
    * parameters:
    *  // File myFile, Socket mySocket <-- Final version goal
    *  String[] args  ()
    * @author Glader
    *     @version 1.2
    public class FileSender {
         private static Socket clientSocket = null;
    //     private static DataOutputStream output; <-- ver 1.0
         private static ObjectOutputStream output = null;
         private static FileInputStream file;
         private static BufferedReader input = null;
         private static final boolean DEBUG = true;
          * @param args
         public static void main(String[] args) {  // NOTE: REBUILD BEFORE FINAL!!!
              if(args.length != 1){
    //               throw new IllegalArgumentException("Error in FileSender: recieved " + args.length + " arguments, expected 2.");
                   System.err.println("Usage: Provide the method with ONE valid filepath/filename");
              else{
                   try{
                        if(DEBUG){ // <--- DEBUG BLOCK
                             if(input != null)
                                  System.out.println("input was not null at beginning of runtime!");
                             if(output != null)
                                  System.out.println("output was not null at beginning of runtime!");
                             if(clientSocket != null)
                                  System.out.println("clientSocket was not null at beginning of runtime!");
                   file = new FileInputStream(args[0]);
                   if(DEBUG){ // <---- DEBUG BLOCK
                        System.out.println("The following argument was entered: " + args[0]);
                             File myFile = new File(args[0]);
                             String sizeString = "";
                             long fileLength = myFile.length();
                             if(fileLength == 0){ // The file does not exist
                                  sizeString = "File does not exist";
                             }else if((fileLength / 1048576) != 0){ // The file is larger than 1Mb
                                  sizeString = "Filesize: " + (fileLength / 1048576) + " Mb";
                             }else if((fileLength / 1024) != 0){ // The file is larger than 1Kb
                                  sizeString = "Filesize: " + (fileLength / 1024) + " Kb";
                             }else{ // The file is larger than 1b
                                  sizeString = "Filesize: " + fileLength + " b";
                             System.out.println(sizeString);
                   send(file);
                   try{
                   input.close();
                   output.close();
                   clientSocket.close();
                   file.close();
                   }catch(IOException e){
                   catch(FileNotFoundException ex){
                        System.err.println("Error: No file was found at " + args[0] + " Double-check and try again.");
                   }finally{
                        try{
                        file.close();
                        }catch(IOException e){
                             //Nothing we can do
               * Send method
              private static void send(FileInputStream inFile){
              try{
                   clientSocket = new Socket("192.168.0.167", 2345);  //open a socket
                   input = new BufferedReader(new InputStreamReader(clientSocket.getInputStream())); // read what the server is saying
                   output = new ObjectOutputStream(clientSocket.getOutputStream());
                   if(DEBUG){  // <----- DEBUG BLOCK
                        String debugString = "";
                        if(input == null)
                             debugString += "input is null";
                        if(debugString.length() != 0)
                             debugString += ", ";
                        if(output == null)
                             debugString += "output is null";
                        if(debugString.length() == 0)
                             debugString += "input & output are OK";
                        System.out.println("status at start of 'send'-method: " + debugString);
                   if(clientSocket != null && inFile != null){
                        try{
                             long currentTime = System.currentTimeMillis();
                             boolean finished = false;
                             int flushTicker = 0;
                             int packetTicker = 0;
                             if(DEBUG){ // <--- DEBUG BLOCK
                                  System.out.println("packet-counter at " + packetTicker + " before sending data");
                             while(!finished){
                                  byte[] buffer = new byte[1024];
                                       if(flushTicker % 100 == 0) // clear cache, prevents OutOfMemory error
                                            output.reset();
                                       flushTicker++;
                                       packetTicker++;
                                       int bytesRead = inFile.read(buffer);
                                       if(bytesRead == -1){
                                            output.writeObject(new Packet(null, "finished", false, bytesRead));
                                            finished = true;
                                            output.flush();
                                       output.writeObject(new Packet(buffer, "", true, bytesRead));
                                       output.flush();
                             if(DEBUG) // <--- DEBUG BLOCK
                                  System.out.println("Number of packets sent: " + packetTicker);
                                  if(DEBUG){ // <---- DEBUG BLOCK
                                       // System.out.println("buffer contains: " + buffer.length + " bytes");
                                  long time = 0;
                                       if(DEBUG){
                                            time = ((System.currentTimeMillis() - currentTime)/1000);
                                       if(time == 0){// The operation took a very short time, cannot measure in seconds
                                            System.out.println("The operation took ~" + (System.currentTimeMillis() - currentTime) + " ms");
                                       }else{
                                       System.out.println( "The operation took " + time + " Seconds");
                             catch(UnknownHostException e){
                                  System.err.println("Trying to connect to unknown host: " + e);
                             catch(IOException e){
                                  System.err.println("IOException: " + e);
                   else{ // SOCKET OR FILE WERE NULL!
                        String result = "";
                        if(clientSocket == null){
                             result += "socket";
                        }else if(output == null){
                             result += "output";
                        }else if(input == null){
                             result += "input";
                        System.out.println("Error occured, " + result + " was null.");
              catch(UnknownHostException e){
                   System.err.println("Couldn't find the host");
                   try{
                   clientSocket.close();
                   }catch(IOException io){
                        //Nothing left to do
              catch(IOException e){
                   System.err.println("Couldn't get I/O from the connection");
              finally{
                   try{
                        if(clientSocket != null)
                             clientSocket.close();
                   }catch(IOException e){
                        //Nothing we can do
    }SERVER:
    import java.io.*;
    import java.net.ServerSocket;
    import java.net.Socket;
    * This is the main class for listening to incoming connections
    * It listens to an incoming ObjectInputStream and is able to
    * follow user-specified commands to execute various methods.
    * @author Glader
    * @version 1.1
    public class FileListener {
         static Socket incoming = null; // Socket connection with the client
         static ServerSocket ss = null;
         static ObjectInputStream is; // Data recieved from the connection
         static OutputStream out = null; // talk back to the client
         static FileOutputStream fout;
         static String response;
         private static final boolean DEBUG = true;
          * @param args
         public static void main(String[] args) {
              int port = 2345;
              boolean finished = false;
              while(true){
                   try{ // Establish server socket
                        ss = new ServerSocket(port);
                        }catch(IOException e){
              try{ // Wait for a client to connect
                   incoming = ss.accept();
                   if(DEBUG){ // <--- DEBUG BLOCK
                        if(ss != null)
                             System.out.println("ObjectInputStream initialized");
                   try{ // Read Objects from the incoming Stream
                   is = new ObjectInputStream(incoming.getInputStream());
                   fout = new FileOutputStream(new File("min fil.avi"));
                   int packetTicker = 0;
                   while(!finished){ // read until there are no more packets incoming
                   Packet currentPacket = (Packet) is.readObject();
                   packetTicker++;               
                   String command = currentPacket.getCommand();
                   if(command.length() != 0){ // The client is telling us something
                        // Insert a checking loop for all possible commands from the client here
                        if(command.equals("initiating")){
                             OutputStream out = incoming.getOutputStream();
                             out.write(10); // 10 signals that the client is cleared to send.
                        if(command.equals("finished")){
                             finished = true;
                             if(DEBUG){ // <--- DEBUG BLOCK
                             System.out.println("Connection terminated, client said \"" + command + "\"");
                             System.out.println("Total amount of packets recieved: " + packetTicker);
                   if(currentPacket.containsFileData()){
                        if(currentPacket.amountOfData() == -1)
                             finished = true;
                        if(currentPacket.amountOfData() != 1024){ // Special handling for not entirely full packets
                                  fout.write(currentPacket.getFileData(), 0, currentPacket.amountOfData());
                        }else{
                        fout.write(currentPacket.getFileData());
                   fout.close();
                   is.close();
                   incoming.close();
                   catch(ClassNotFoundException ex){
                        System.err.println("Error when reading Packet: " + ex);
                   finally{
                        if(fout != null){
                             fout.close();
                        }if(is != null){
                             is.close();
                        }if(incoming != null){
                             incoming.close();
                        }if(out != null)
                             out.close();
              catch (IOException ex){
                   System.err.println("Error getting inputStream");
         

    Follow-up question, need more information to solve the problem:
    My server now uses a ObjectOutputStream to send packets to the client, which successfully reads them BUT:
    the problem still remains! I am still getting a "SocketException socket write error" the second time I use the sender!
    Right now this is what the send-method in FileSender looks like.
    (Look at "// Connection Loop" for the biggest change.)
    What am I doing wrong here?
              private static void send(FileInputStream inFile){
                   if(DEBUG) // <--- DEBUG BLOCK
                        System.out.println("Flag reached: Beginning of \"send\"");
              try{
                   clientSocket = new Socket("192.168.0.167", 2345);  //open a socket
                   output = new ObjectOutputStream(clientSocket.getOutputStream()); // Outgoing Packets to the server
                   if(DEBUG){  // <----- DEBUG BLOCK
                        String debugString = "";
                        if(input == null)
                             debugString += "input is null";  // Expected with current code
                        if(debugString.length() != 0)
                             debugString += ", ";
                        if(output == null)
                             debugString += "output is null";
                        if(debugString.length() == 0)
                             debugString += "input & output are OK";
                        System.out.println("status at start of 'send'-method: " + debugString);
                   if(clientSocket != null && inFile != null){
                        try{
                             long currentTime = System.currentTimeMillis();
                             boolean finished = false;
                             boolean accepted = false;
                             int flushTicker = 0;
                             int packetTicker = 0;
                             // Connection loop with 500ms timeout
                             input = new ObjectInputStream(clientSocket.getInputStream()); // Incoming Packets from the server
                             while((System.currentTimeMillis() - currentTime) <= 500){ // try connecting for 500ms
                                  output.writeObject(new Packet(null, "initiating", false, 0)); // send the first request Packet
                                  try{
                                  Packet currentPacket = (Packet) input.readObject();
                                  String command = currentPacket.getCommand();
                                  if(DEBUG) // <--- DEBUG BLOCK
                                       System.out.println("Command sent from Server: " + command);
                                  if(command.equals("ready")){
                                       accepted = true;
                                  if(accepted){
                             while(!finished){
                                  byte[] buffer = new byte[1024];
                                       if(flushTicker % 100 == 0) // clear cache, prevents OutOfMemory error
                                            output.reset();
                                       flushTicker++;
                                       packetTicker++;
                                       int bytesRead = inFile.read(buffer);
                                       if(bytesRead == -1){
                                            output.writeObject(new Packet(null, "finished", false, bytesRead));
                                            finished = true;
                                            output.flush();
                                       output.writeObject(new Packet(buffer, "", true, bytesRead));
                                       output.flush();
                             catch(ClassNotFoundException e){
                                  System.err.println("ClassNotFoundException: " + e);
                                  while(bytesRead != -1){
                                  if(DEBUG) // <--- DEBUG BLOCK
                                       System.out.println("bytesRead: " + bytesRead);
                                  else{
                                  output.writeObject(new Packet(buffer, "", true));
                                  flushTicker++;
                                  if(bytesRead == -1){ // no more bytes to be read from the file
                                  long time = 0;
                                       if(DEBUG){
                                            System.out.println("Number of packets sent: " + packetTicker);
                                            time = ((System.currentTimeMillis() - currentTime)/1000);
                                       if(time == 0){// The operation took a very short time, cannot measure in seconds
                                            System.out.println("The operation took ~" + (System.currentTimeMillis() - currentTime) + " ms");
                                       }else{
                                       System.out.println( "The operation took " + time + " Seconds");
                             catch(UnknownHostException e){
                                  System.err.println("Trying to connect to unknown host: " + e);
                             catch(IOException e){
                                  System.err.println("IOException: " + e);
                   else{ // SOCKET OR FILE WERE NULL!
                        String result = "";
                        if(clientSocket == null){
                             result += "socket";
                        }else if(output == null){
                             result += "output";
                        }else if(input == null){
                             result += "input";
                        System.out.println("Error occured, " + result + " was null.");
              catch(UnknownHostException e){
                   System.err.println("Couldn't find the host");
                   try{
                   clientSocket.close();
                   }catch(IOException io){
                        //Nothing left to do
              catch(IOException e){
                   System.err.println("Couldn't get I/O from the connection");
              finally{
                   try{
                        if(clientSocket != null)
                             clientSocket.close();
                   }catch(IOException e){
                        //Nothing we can do
              }

  • Keeping getting an error with-in the App Store. Error 100 saying that my payment can't be received at the time. I updated to Mountain Lion to download the new Logic Pro X. Now left with now recording software and it's not letting me buy the new one.

    Keeping getting an error with-in the App Store. Error 100 saying that my payment can't be received at the time. I updated to Mountain Lion to download the new Logic Pro X. Now left with now recording software and it's not letting me buy the new one.
    iMac, OS X Mountain Lion (10.8.4), trying to get Logic Pro X

    Hello jst84,
    The following article may be helpful in getting your purchase to complete.
    Mac App Store: "An unknown error occurred (100)" when purchasing
    http://support.apple.com/kb/TS3637
    Cheers,
    Allen

  • Error with Script logic

    Hello friends,
    I am getting an error with running currency conversion in an app, the error says Invalid dimension "C_Category". Here is the script logic, I dont see C_Category anywhere. For the record, the name of dimension is category.
    *RUN_PROGRAM CURR_CONVERSION
          CATEGORY     = %C_CATEGORY_SET% 
          GROUP = %GROUPS_SET% 
          TID_RA = %TIME_SET%
          RATEENTITY = GLOBAL
          OTHER = [ENTITY=%ENTITY_SET%]//For More than one other scope parameters: OTHER = [ENTITY=%ENTITY_SET%;INTCO=%INTCO_SET%...]
    *ENDRUN_PROGRAM

    Hello,
    Variable %C_CATEGORY_SET% means set of members selected for Dimension C_CATEGORY. So, if you want to use CATEGORY instead replace it with %CATEGORY_SET%, but if are running Consolidations I think you need C_CATEGORY Dimension.
    Regards,
    Gersh

  • Error with Logical System - Long SID - SOLAR01

    Hello,
    We are using Solman Ehp1, stack 25.  We have a problem in using Long SID (same SID) in Solar01
    We are creating a new system in the landscape of a project.  There was a copy of production system (called PCA) into a sandbox system keeping the same SID for both system PCA
    We define a new product system in SMSY and we use a new long SID so that it is called PCAP.  This new system recovered the logical system definition for each client which is the same for both PCA and PCAP system.  Then we create RFCs for the new PCAP long id, no problem.
    Finally we add the new system to the Logical Component Z_ERP with a new role 2 Sandbox system.
    We went to the project SOLAR_PROJECT_ADMIN and assign the new system role 2 so that is available to use it in some test.
    We go to transaction SOLAR01, switch to the new system role 2, and try to execute any transaction in the new server, it is saying that there is no logical system assigned to PCAP.... which is true, since the logical system is called PCAxxxxx.
    Can you help us with that?
    Regards
    Esteban Hartzstein

    Hello Fabricius,
    What I did is add the new PCAP system to the current Logical Component with the new system role Sandbox test  so that they can perfomed some tests on that role.  This system is a complete copy of the original PCA system, so internally everything is PCAP, and since I cannot have same SID in SMSY, I created as PCAP.  And that causes a problem with the Logical System definition.
    The actual error message is
    smsy_ppms_api044
    This error message was reported in another post back in 2009
    LIink: Error getting RFC destination for logical system SMD XXX
    Any ideas?? Help required
    Regards
    Esteban
    Edited by: Esteban Hartzstein on Oct 27, 2011 10:00 AM

  • I have recently replaced my iphone 4s front screen and made an error with the logic board. Is this fixable? picture will be linked

    Here is the picture of the logic board with the piece that has been broken off highlighted in yellow.
    https://plus.google.com/photos/118184697040837060146/albums/5873105616394112433
    Is this fixable some where? Or am i s%!t out of luck?

    If something has broken off the logic board, you'll need to get a new logic board.

  • Safari with Preference problems

    When using Safari 5.1.1 I loose my google tool bar and when trying to use my preferences it crashes.  It will not allow be to use time machine to restore, states "Safari" can't be modified or deleted because it's required by Mac OS X.  I was using 5.0 and had no problems but over the weekend I downloaded iCloud and there was a software update.  I did a reinstall with the current version since I could not modifie the current safari that I have but no change.
    I would like to be able to use iCloud which I am sure needs the updated safari.  I have removed 3rd party plug ins, extensions and cache.  I did do a disk permission repair which resolved the opening of safari. 
    A error report was posted and used the suggested from that but still have issues with preference and no google search bar.
    Any one with any other suggestions????

    Process:         Safari [367]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.1 (7534.51.22)
    Build Info:      WebBrowser-7534051022000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [153]
    Date/Time:       2011-10-19 17:21:47.859 -0500
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          15322 sec
    Crashes Since Last Report:           22
    Per-App Interval Since Last Report:  7399 sec
    Per-App Crashes Since Last Report:   22
    Anonymous UUID:                      91116336-98A6-4DA6-8B1A-7DB6FEECFD65
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000010
    VM Regions Near 0x10:
    -->
        __TEXT                 000000010a3c6000-000000010a3c7000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Enabled Extensions:
    com.unsubscribe.safariext-FXG3Y344M3 (2.6 - 2.6) Unsubscribe.com
    objc[367]: garbage collection is OFF
    Performing @selector(showPreferences:) from sender NSMenuItem 0x7f89cbd17a30
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.Safari.framework              0x00007fff8795afbf std::pair<***::HashTableIterator<std::pair<Safari::SString, void const*>, std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> >, ***::PairFirstExtractor<std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::PairHash<Safari::SString, void const*>, ***::PairHashTraits<***::HashTraits<std::pair<Safari::SString, void const*> >, ***::HashTraits<Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::HashTraits<std::pair<Safari::SString, void const*> > >, bool> ***::HashTable<std::pair<Safari::SString, void const*>, std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> >, ***::PairFirstExtractor<std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::PairHash<Safari::SString, void const*>, ***::PairHashTraits<***::HashTraits<std::pair<Safari::SString, void const*> >, ***::HashTraits<Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::HashTraits<std::pair<Safari::SString, void const*> > >::add<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;>, ***::HashMapTranslator<std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> >, ***::PairHashTraits<***::HashTraits<std::pair<Safari::SString, void const*> >, ***::HashTraits<Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::PairHash<Safari::SString, void const*> > >(std::pair<Safari::SString, void const*> const&amp;, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> const&amp;) + 21
    1   com.apple.Safari.framework              0x00007fff8795ab66 Safari::SNotifierBase<objc_object, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> >::startObserving(Safari::sel_fun1_t<void, Safari::SNotification const&amp;>, Safari::SString const&amp;, void const*) + 88
    2   com.apple.Safari.framework              0x00007fff87b6d649 -[SecurityPreferences moduleWasInstalled] + 126
    3   com.apple.AppKit                        0x00007fff8691c144 -[NSPreferences _selectModuleOwner:] + 3019
    4   com.apple.AppKit                        0x00007fff8691c36d -[NSPreferences _setupPreferencesPanelForOwner:] + 459
    5   com.apple.AppKit                        0x00007fff8691a961 -[NSPreferences showPreferencesPanelForOwner:] + 27
    6   com.apple.CoreFoundation                0x00007fff81503a1d -[NSObject performSelector:withObject:] + 61
    7   com.apple.AppKit                        0x00007fff8651e710 -[NSApplication sendAction:to:from:] + 139
    8   com.apple.Safari.framework              0x00007fff8799c475 -[BrowserApplication sendAction:to:from:] + 80
    9   com.apple.AppKit                        0x00007fff8660bbd7 -[NSMenuItem _corePerformAction] + 399
    10  com.apple.AppKit                        0x00007fff8660b90e -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    11  com.apple.AppKit                        0x00007fff868a8194 -[NSMenu _internalPerformActionForItemAtIndex:] + 38
    12  com.apple.AppKit                        0x00007fff86739ce5 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 138
    13  com.apple.AppKit                        0x00007fff8658551f NSSLMMenuEventHandler + 339
    14  com.apple.HIToolbox                     0x00007fff8c65a308 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1263
    15  com.apple.HIToolbox                     0x00007fff8c659914 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 446
    16  com.apple.HIToolbox                     0x00007fff8c6706c7 SendEventToEventTarget + 76
    17  com.apple.HIToolbox                     0x00007fff8c6b69f5 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 398
    18  com.apple.HIToolbox                     0x00007fff8c79d645 SendMenuCommandWithContextAndModifiers + 56
    19  com.apple.HIToolbox                     0x00007fff8c7e3ef9 SendMenuItemSelectedEvent + 253
    20  com.apple.HIToolbox                     0x00007fff8c6afb07 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 101
    21  com.apple.HIToolbox                     0x00007fff8c6a7245 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 600
    22  com.apple.HIToolbox                     0x00007fff8c6a680e _HandleMenuSelection2 + 580
    23  com.apple.AppKit                        0x00007fff864844ce _NSHandleCarbonMenuEvent + 250
    24  com.apple.AppKit                        0x00007fff86419941 _DPSNextEvent + 2019
    25  com.apple.AppKit                        0x00007fff86418cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    26  com.apple.Safari.framework              0x00007fff8799c0d3 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 171
    27  com.apple.AppKit                        0x00007fff8641562d -[NSApplication run] + 470
    28  com.apple.AppKit                        0x00007fff8669480c NSApplicationMain + 867
    29  com.apple.Safari.framework              0x00007fff87b4fffb SafariMain + 197
    30  com.apple.Safari                        0x000000010a3c6f24 0x10a3c6000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8a5c17e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff879105be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8790f14e _dispatch_mgr_thread + 54
    Thread 2:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff8a5c0bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88805274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x00007fff83f1e8e5 WebCore::IconDatabase::syncThreadMainLoop() + 375
    3   com.apple.WebCore                       0x00007fff83f1c2bd WebCore::IconDatabase::iconDatabaseSyncThread() + 489
    4   com.apple.WebCore                       0x00007fff83f1c0cb WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9
    5   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 3:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff8a5bf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a5bed71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff8617c569 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff8617c4a9 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 4:: Safari: CertRevocationChecker
    0   libsystem_kernel.dylib                  0x00007fff8a5bf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a5bed71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff814a0b6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff814a92d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff814a8ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Safari.framework              0x00007fff87b09cf7 Safari::MessageRunLoop::threadBody() + 163
    6   com.apple.Safari.framework              0x00007fff87b09c4f Safari::MessageRunLoop::threadCallback(void*) + 9
    7   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 5:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff8a5c0bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88805274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff8b141c40 ***::ThreadCondition::timedWait(***::Mutex&amp;, double) + 64
    3   com.apple.WebCore                       0x00007fff83f3adca ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                       0x00007fff83f3ad23 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                       0x00007fff83f3ac6b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8a5bf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a5bed71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff814a0b6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff814a92d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff814a8ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff88e1b0ab +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff88e0f7fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff88e0f776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 7:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib                  0x00007fff8a5bf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a5bed71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff814a0b6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff814a92d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff814a8ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Safari.framework              0x00007fff87b09cf7 Safari::MessageRunLoop::threadBody() + 163
    6   com.apple.Safari.framework              0x00007fff87b09c4f Safari::MessageRunLoop::threadCallback(void*) + 9
    7   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 8:: Safari: SnapshotStore
    0   libsystem_kernel.dylib                  0x00007fff8a5c0bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88805274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff8b141c40 ***::ThreadCondition::timedWait(***::Mutex&amp;, double) + 64
    3   com.apple.Safari.framework              0x00007fff87b8173f Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessage(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&amp;) + 125
    4   com.apple.Safari.framework              0x00007fff87b7eebb Safari::SnapshotStore::diskAccessThreadBody() + 305
    5   com.apple.Safari.framework              0x00007fff87b7e88b Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8a5c0df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff814f1f9b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8a5c1192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff88803594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff88804b85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8a5c1192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff88803594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff88804b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7203e760  rbx: 0x00007fff7203e760  rcx: 0x00007fff69fc47d0  rdx: 0x00007fff69fc47c0
      rdi: 0x00007fff69fc47d8  rsi: 0x0000000000000010  rbp: 0x00007fff69fc47b0  rsp: 0x00007fff69fc4740
       r8: 0x000000010a440c10   r9: 0x000000010a440c10  r10: 0x0000000000000000  r11: 0x00007f89cd3b5e80
      r12: 0x0000000000000000  r13: 0x0000000000000070  r14: 0x0000000000000000  r15: 0x00007fff69fc4820
      rip: 0x00007fff8795afbf  rfl: 0x0000000000010202  cr2: 0x0000000000000010
    Logical CPU: 0
    Binary Images:
           0x10a3c6000 -        0x10a3c6fff  com.apple.Safari (5.1.1 - 7534.51.22) <8DB30E4C-22B6-3BCE-A6E7-580F13B8903D> /Applications/Safari.app/Contents/MacOS/Safari
           0x10a6f7000 -        0x10a6f7ff5 +cl_kernels (??? - ???) <17E9ECAB-886A-46BD-A02D-0D71A7BB3CDF> cl_kernels
           0x10d519000 -        0x10d51ffef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <EAC03E33-595E-3829-8199-479FA5CD9987> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10d525000 -        0x10d528ff7  libCoreFSCache.dylib (??? - ???) <D4B5EFEA-7878-3674-A973-BA1D675E5A3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10d53c000 -        0x10d53cffd +cl_kernels (??? - ???) <B265AC7A-24A8-40A0-8469-877808DDDE72> cl_kernels
           0x10d53e000 -        0x10d5d1ff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10d5f4000 -        0x10d5f5ff3 +cl_kernels (??? - ???) <4ADA13E1-2FA0-43AF-98B8-8A5BD5B6DCC2> cl_kernels
           0x10d603000 -        0x10d604ff3 +cl_kernels (??? - ???) <5A709ABE-E656-45E1-B6DB-54CE95CC6E06> cl_kernels
           0x10d69d000 -        0x10d69effc +cl_kernels (??? - ???) <82FB002D-9BAF-4351-BAAD-4C2A8B5E4D20> cl_kernels
           0x10f75a000 -        0x10f8f2ff7  GLEngine (??? - ???) <D770A837-9F8D-3C86-AB33-CBDEF5599CA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10f926000 -        0x10fa1ffff  libGLProgrammability.dylib (??? - ???) <BCA0FD49-2103-33D8-8801-326C6A62465E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x10fa45000 -        0x10fcccfe7  com.apple.ATIRadeonX1000GLDriver (7.0.52 - 7.0.0) <2EF696D5-4B57-3B3C-8738-A9C28B612354> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
           0x10fd13000 -        0x10fd41ff7  GLRendererFloat (??? - ???) <16DF14A0-7264-31A4-83F6-E6F96CF4AB3D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
        0x7fff69fc6000 -     0x7fff69ffaac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff81470000 -     0x7fff81644fff  com.apple.CoreFoundation (6.7.1 - 635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8164a000 -     0x7fff816c0fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff816c1000 -     0x7fff816d6fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff81773000 -     0x7fff81773fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8177c000 -     0x7fff8178eff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff81aed000 -     0x7fff81afefff  SyndicationUI (??? - ???) <62A4BC15-72EA-0CC1-046A-52E576E8D751> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff82294000 -     0x7fff82336ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff82337000 -     0x7fff823b2ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff823b3000 -     0x7fff82407ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff82408000 -     0x7fff82415ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff82bfd000 -     0x7fff82d0afff  libJP2.dylib (??? - ???) <6052C973-9354-35CB-AAB9-31D00D8786F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff82d0b000 -     0x7fff83179fff  com.apple.RawCamera.bundle (3.8.2 - 579) <3D4EBC1A-4139-3E22-B407-0D4887D8D208> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8317a000 -     0x7fff83186fff  com.apple.CrashReporterSupport (10.7.2 - 347) <0F6D3509-9062-3647-B7C4-F25AF3AE9B71> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff831dd000 -     0x7fff831e0ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff831e1000 -     0x7fff831e4fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff831e5000 -     0x7fff83212fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
        0x7fff83213000 -     0x7fff83216fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff83221000 -     0x7fff832c0fff  com.apple.LaunchServices (480.21 - 480.21) <6BFADEA9-5BC1-3B53-A013-488EB7F1AB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff83660000 -     0x7fff836e5ff7  com.apple.Heimdal (2.1 - 2.0) <C92E327E-CB5F-3C9B-92B0-F1680095C8A3> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff836e6000 -     0x7fff836f1ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff836f2000 -     0x7fff8375cfff  com.apple.framework.IOKit (2.0 - ???) <87D55F1D-CDB5-3D13-A5F9-98EA4E22F8EE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8375d000 -     0x7fff83761fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <5EEAD17D-006C-3855-8093-C7A4A97EE0D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff83bcb000 -     0x7fff83de5fef  com.apple.CoreData (104 - 358.12) <33B1FA75-7970-3751-9DCC-FF809D3E1FA2> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff83de6000 -     0x7fff83e4eff7  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <7966E3BE-376B-371A-A21D-9BD763C0BAE7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83e53000 -     0x7fff83e5eff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff83e5f000 -     0x7fff83e60ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
        0x7fff83f18000 -     0x7fff84c1efef  com.apple.WebCore (7534.51 - 7534.51.22) <352D30ED-1D1D-390E-B7CB-18E954485FD3> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff84c1f000 -     0x7fff84ca3ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <FE629F2D-6BC0-3A58-9844-D8B9A6808A00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff84cb1000 -     0x7fff84cbaff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff84cbb000 -     0x7fff84cbffff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84cc0000 -     0x7fff84cc6fff  libGFXShared.dylib (??? - ???) <343AE6C0-EB02-333C-8D35-DF6093B92758> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff84cc7000 -     0x7fff84d2bfff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff84d2c000 -     0x7fff84d31ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff850b1000 -     0x7fff85324fff  com.apple.CoreImage (7.82 - 1.0.1) <282801B6-5D80-3E2C-88A4-00FE29906D5A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff85528000 -     0x7fff85553ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff8559a000 -     0x7fff855c3fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8561a000 -     0x7fff85620fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff85905000 -     0x7fff8590afff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8594a000 -     0x7fff85993fff  com.apple.framework.CoreWLAN (2.1.1 - 211.3) <0FBC6087-6872-3403-A317-CE888969CF4C> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff859fd000 -     0x7fff85a0bfff  com.apple.HelpData (2.1.0 - 70) <917CF02F-276E-3571-9042-AAAAC0D3D4E1> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff85a59000 -     0x7fff85a7dfff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff85a7e000 -     0x7fff85be4fff  com.apple.CFNetwork (520.2.5 - 520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff86002000 -     0x7fff860a6fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff860a7000 -     0x7fff860f2ff7  com.apple.SystemConfiguration (1.11.1 - 1.11) <F832FE21-5509-37C6-B1F1-48928F31BE45> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff860f3000 -     0x7fff860f8fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff86119000 -     0x7fff86179fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8617a000 -     0x7fff86319fff  com.apple.QuartzCore (1.7 - 270.0) <E8FC9AA4-A5CB-384B-AD29-7190A1387D3E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8631a000 -     0x7fff8640ffff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff86410000 -     0x7fff87011ff7  com.apple.AppKit (6.7.2 - 1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff87012000 -     0x7fff87019ff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8701a000 -     0x7fff8701dfff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87104000 -     0x7fff87104fff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff87111000 -     0x7fff87173fff  com.apple.coreui (1.2.1 - 164.1) <F7972630-F696-3FC5-9FCF-A6E1C8771078> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87174000 -     0x7fff87179fff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8717a000 -     0x7fff87292ff7  com.apple.DesktopServices (1.6.1 - 1.6.1) <4418EAA6-7163-3A77-ABD3-F8289796C81A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87293000 -     0x7fff87316fef  com.apple.Metadata (10.7.0 - 627.20) <E00156B0-663A-35EF-A307-A2CEB00F1845> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff87353000 -     0x7fff873c6fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff873c7000 -     0x7fff873d2fff  com.apple.CommonAuth (2.1 - 2.0) <BFDD0A8D-4BEA-39EC-98B3-2E083D7B1ABD> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff873d3000 -     0x7fff874d5ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff874d6000 -     0x7fff877aeff7  com.apple.security (7.0 - 55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff877af000 -     0x7fff877d8fff  com.apple.CoreServicesInternal (113.8 - 113.8) <C1A3CF1B-BC45-3FC6-82B3-1511EBBA9D51> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8783d000 -     0x7fff8788fff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8790d000 -     0x7fff8791bfff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff8791c000 -     0x7fff87930ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff87934000 -     0x7fff87942fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff87943000 -     0x7fff87dd2ff7  com.apple.Safari.framework (7534 - 7534.51.22) <CD187BAF-2088-32CF-BCD3-E4057351A821> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff87e52000 -     0x7fff87e79fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff87e7a000 -     0x7fff87e7bfff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
        0x7fff87e8f000 -     0x7fff87e95fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff87f0b000 -     0x7fff88044fef  com.apple.vImage (5.1 - 5.1) <EB634387-CD15-3246-AC28-5FB368ACCEA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff88045000 -     0x7fff8804dfff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88225000 -     0x7fff88266fff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff882db000 -     0x7fff882dbfff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff882e5000 -     0x7fff88324ff7  libGLImage.dylib (??? - ???) <2D1D8488-EC5F-3229-B983-CFDE0BB37586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff883b6000 -     0x7fff883cdfff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff883ce000 -     0x7fff88443ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff88444000 -     0x7fff88444fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88445000 -     0x7fff88445fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff88462000 -     0x7fff88495ff7  com.apple.GSS (2.1 - 2.0) <9A2C9736-DA10-367A-B376-2C7A584E6C7A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff88496000 -     0x7fff887b2ff7  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <6020C3FB-6125-3EAE-A55D-1E77E38BEDEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff887b3000 -     0x7fff88890fef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
        0x7fff888d7000 -     0x7fff88ad9fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff88b1f000 -     0x7fff88b8dfff  com.apple.CoreSymbolication (2.1 - 66) <E1582596-4157-3535-BF1F-3BAE92A0B09F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff88b9e000 -     0x7fff88be0ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff88be1000 -     0x7fff88bfeff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff88bff000 -     0x7fff88d89ff7  com.apple.WebKit (7534.51 - 7534.51.22) <A52AF4EF-A2AA-3718-AB96-576A5E0A1CB8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff88d8a000 -     0x7fff88d8afff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88db5000 -     0x7fff890ceff7  com.apple.Foundation (6.7.1 - 833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff89147000 -     0x7fff89177fff  com.apple.shortcut (2.0 - 2.0) <6E6C9F01-5DAC-35F4-876D-082D915EE782> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff893a3000 -     0x7fff893a4fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff893a5000 -     0x7fff893b4fff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
        0x7fff893b9000 -     0x7fff893c0fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89afb000 -     0x7fff89afcff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff89afd000 -     0x7fff89b01ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff89b02000 -     0x7fff89b2bff7  com.apple.framework.Apple80211 (7.1.1 - 711.1) <FD0675E6-6602-3C28-85AA-6A4AF6B36D78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff89b6b000 -     0x7fff89b81fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff89bdd000 -     0x7fff89ce2ff7  libFontParser.dylib (??? - ???) <B9A53808-C97E-3293-9C33-1EA9D4E83EC8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff89ce3000 -     0x7fff89cedff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff89cee000 -     0x7fff89d41fff  libFontRegistry.dylib (??? - ???) <57FBD85F-41A6-3DB9-B5F4-FCC6B260F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff89d9f000 -     0x7fff89da3fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff89da4000 -     0x7fff89dc1fff  libPng.dylib (??? - ???) <3C70A94C-9442-3E11-AF51-C1B0EF81680E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff89e89000 -     0x7fff89e8efff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff89e8f000 -     0x7fff8a473fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8a474000 -     0x7fff8a49cff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8a49d000 -     0x7fff8a4f4fff  libTIFF.dylib (??? - ???) <FF0D9A24-6956-3F03-81EA-3EEAD22C9DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8a4f5000 -     0x7fff8a5a8fff  com.apple.CoreText (220.11.0 - ???) <4EA8E2DF-542D-38D5-ADB9-C0DAA73F898B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8a5aa000 -     0x7fff8a5cafff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8a5cb000 -     0x7fff8a5fbff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8a5fc000 -     0x7fff8a6ddfff  com.apple.CoreServices.OSServices (478.29 - 478.29) <B487110E-C942-33A8-A494-3BDEDB88B1CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8a6de000 -     0x7fff8a702ff7  com.apple.RemoteViewServices (1.2 - 39) <862849C8-84C1-32A1-B87E-B29E74778C9F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8a88e000 -     0x7fff8a8aaff7  com.apple.GenerationalStorage (1.0 - 125) <31F60175-E38D-3C63-8D95-32CFE7062BCB> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8a8ab000 -     0x7fff8a8edfff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8a8ee000 -     0x7fff8a988ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8a989000 -     0x7fff8a9b6ff7  com.apple.opencl (1.50.63 - 1.50.63) <DB335C5C-3ABD-38C8-B6A5-8436EE1484D3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8aa0d000 -     0x7fff8aa23ff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8aa24000 -     0x7fff8aa43fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff8aa44000 -     0x7fff8aa44fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8ae77000 -     0x7fff8ae8aff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8b137000 -     0x7fff8b3c1fff  com.apple.JavaScriptCore (7534.51 - 7534.51.21) <B311DA3D-F763-32A0-BE17-5DC97820BFAB> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8b3c2000 -     0x7fff8b4c5fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <7F60B0FF-4946-3639-89AB-B540D318B249> /usr/lib/libsqlite3.dylib
        0x7fff8b4c6000 -     0x7fff8b4ecff7  com.apple.framework.familycontrols (3.0 - 300) <41A6DFC2-EAF5-390A-83A1-C8832528705C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b5b5000 -     0x7fff8b5d2ff7  libxpc.dylib (77.17.0 - compatibility 1.0.0) <72A16104-2F23-3C22-B474-1953F06F9376> /usr/lib/system/libxpc.dylib
        0x7fff8b6bb000 -     0x7fff8b6c1ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8b6c2000 -     0x7fff8b6fcfff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8b746000 -     0x7fff8b755ff7  com.apple.opengl (1.7.5 - 1.7.5) <2945F1A6-910C-3596-9988-5701B04BD821> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b756000 -     0x7fff8b757fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b766000 -     0x7fff8b76cfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8b8a9000 -     0x7fff8b8aefff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8b8af000 -     0x7fff8b8e4fff  com.apple.securityinterface (5.0 - 55004) <790DDF7E-6BA9-36DD-B818-2322A712E1F5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8b8e5000 -     0x7fff8b9c9def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff8bac5000 -     0x7fff8baccfff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <40374018-2832-3144-8114-CED417321C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8bacd000 -     0x7fff8bb94ff7  com.apple.ColorSync (4.7.0 - 4.7.0) <F325A9D7-7203-36B7-8C1C-B6A4D5CC73A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8bbea000 -     0x7fff8bc2dff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <2B1571E1-8E87-364E-BC36-C9C9B5D3EAC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8bcda000 -     0x7fff8bce7fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8bf9d000 -     0x7fff8bfabff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff8bfba000 -     0x7fff8c0c6fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c0f7000 -     0x7fff8c0f9fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8c105000 -     0x7fff8c25efff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <4877267E-F736-3019-85D3-40A32A042A80> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8c25f000 -     0x7fff8c261ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8c262000 -     0x7fff8c269fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff8c26a000 -     0x7fff8c2a5ff7  libsystem_info.dylib (??? - ???) <9C8C2DCB-96DB-3471-9DCE-ADCC26BE2DD4> /usr/lib/system/libsystem_info.dylib
        0x7fff8c2a6000 -     0x7fff8c2f4fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8c2f5000 -     0x7fff8c335ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <B7173CA4-CE16-3BAB-8D83-185FCEFA15F5> /usr/lib/libcups.2.dylib
        0x7fff8c33a000 -     0x7fff8c418fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <13E549F8-5BD6-3BAE-8C33-1D0BD269C081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8c419000 -     0x7fff8c458fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8c46a000 -     0x7fff8c47cff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8c47d000 -     0x7fff8c627fff  com.apple.WebKit2 (7534.51 - 7534.51.22) <DCE49986-D892-33DB-8B2C-1393F0CF108C> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8c652000 -     0x7fff8c976fff  com.apple.HIToolbox (1.8 - ???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8c9a8000 -     0x7fff8c9aafff  libCVMSPluginSupport.dylib (??? - ???) <61D89F3C-C64D-3733-819F-8AAAE4E2E993> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c9ab000 -     0x7fff8c9acfff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8cb13000 -     0x7fff8cb2afff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8cb2b000 -     0x7fff8cb2bfff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8cb2c000 -     0x7fff8cb9cfff  com.apple.datadetectorscore (3.0 - 179.4) <2A822A13-94B3-3A43-8724-98FDF698BB12> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8cb9d000 -     0x7fff8cb9dfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8cbe5000 -     0x7fff8cbe6fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8cbe7000 -     0x7fff8d014fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d015000 -     0x7fff8d070ff7  com.apple.HIServices (1.10 - ???) <BAB8B422-7047-3D2D-8E0A-13FCF153E4E7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d071000 -     0x7fff8d0b1fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8d10d000 -     0x7fff8d5d4fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d5d5000 -     0x7fff8d6dbfe7  com.apple.PubSub (1.0.5 - 65.21) <1F9B7C84-375D-036F-790A-02BBE7BCE445> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8d6dc000 -     0x7fff8d772ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d803000 -     0x7fff8d805fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff8d920000 -     0x7fff8e033587  com.apple.CoreGraphics (1.600.0 - ???) <A9F2451E-6F60-350E-A6E5-539669B53074> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 9
        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: 674
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=175.3M resident=122.6M(70%) swapped_out_or_unallocated=52.7M(30%)
    Writable regions: Total=1.1G written=40.3M(4%) resident=63.2M(5%) swapped_out=0K(0%) unallocated=1.1G(95%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG backing stores                    4416K
    CG image                              168K
    CG raster data                       9796K
    CG shared images                     3408K
    CoreAnimation                        22.7M
    CoreGraphics                           16K
    CoreImage                               8K
    CoreServices                         1732K
    IOKit                                2028K
    IOKit (reserved)                      512K        reserved VM address space (unallocated)
    JS JIT generated code               128.0M
    JS JIT generated code (reserved)    896.0M        reserved VM address space (unallocated)
    JS VM register file                  4096K
    JS garbage collector                   80K
    MALLOC                               70.0M
    MALLOC guard page                      48K
    Memory tag=240                          4K
    Memory tag=242                         12K
    Memory tag=251                        136K
    OpenCL                                 52K
    OpenGL GLSL                          1372K
    OpenGL GLSL (reserved)                128K        reserved VM address space (unallocated)
    SQLite page cache                    3072K
    STACK GUARD                          56.0M
    Stack                                13.2M
    VM_ALLOCATE                          16.7M
    __CI_BITMAP                            80K
    __DATA                               16.5M
    __IMAGE                              1256K
    __LINKEDIT                           47.9M
    __TEXT                              127.4M
    __UNICODE                             544K
    mapped file                          45.3M
    shared memory                        1412K
    ===========                        =======
    TOTAL                                 1.4G
    TOTAL, minus reserved VM space      576.7M
    Model: iMac5,1, BootROM IM51.0090.B09, 2 processors, Intel Core 2 Duo, 2.16 GHz, 2 GB, SMC 1.9f4
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz, 0x2C00000000000000, 0x3136485446313238363448592D3636374433
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz, 0x2C00000000000000, 0x3136485446313238363448592D3636374433
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.131.36.11)
    Bluetooth: Version 4.0.1f4, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3250824AS  Q, 250.06 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06
    USB Device: Built-in iSight, apple_vendor_id, 0x8501, 0xfd400000 / 3
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x0702, 0xfd100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8206, 0x7d100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8240, 0x7d200000 / 3
    Correct AnswerHelpful Answer

  • Logical error in the query

    create table my_employee
    (id number(4)primary key,
    last_name varchar2(25),
    first_name varchar2(25),
    userid varchar2(8),
    salary number(9,2)
    I want to write an INSERT statement to MY_EMPLOYEE table . Concatenate the first letter of the first name and first seven characters of the last name to produce user ID using a single sql statement
    I wrote the query like this and i am getting logical error
    insert into my_employee
    values(&id,'&last_name','&first_name',substr('&&first_name',1,1)||substr('&last_name',1,7),&salary);
    SQL> insert into my_employee
    2 values(&id,'&last_name','&first_name',substr('&&first_name',1,1)||substr('&last_name',1,7),&sal
    ary);
    Enter value for id: 20
    Enter value for last_name: popopopp
    Enter value for last_name: qwertyyuu
    Enter value for salary: 300000
    old 2: values(&id,'&last_name','&first_name',substr('&&first_name',1,1)||substr('&last_name',1,7),
    new 2: values(20,'popopopp','o',substr('o',1,1)||substr('qwertyyuu',1,7),300000)
    1 row created.
    it is asking the last_name two times

    you can do it with a .sql script
    c:\my_emp.sql
    PROMPT
    PROMPT instering my_employees
    PROMPT
    ACCEPT ID NUMBER PROMPT 'ID ? : '
    ACCEPT FIRST_NAME CHAR PROMPT 'FIRST_NAME ?: '
    ACCEPT LAST_NAME CHAR PROMPT 'LAST_NAME ?: '
    ACCEPT SALARY NUMBER PROMPT 'SALARY ? : '
    insert into my_employee values(&id,'&last_name','&first_name',substr('&&first_name',1,1)||substr('&last_name',1,7),&salary);
    SELECT * FROM my_employee where id=&&id;
    and then from sqlplus @c:\my_emp.sql
    scott@ORCL> @C:\MY_EMP
    instering my_employees
    ID ? : 20
    FIRST_NAME ?: john
    LAST_NAME ?: papas
    SALARY ? : 1000
    old 1: insert into my_employee values(&id,'&last_name','&first_name',substr('&&first_name',1,1)||substr('&last_name',1,7),&salary)
    new 1: insert into my_employee values( 20,'papas','john',substr('john',1,1)||substr('papas',1,7), 1000)
    1 row created.
    old 1: SELECT * FROM my_employee where id=&&id
    new 1: SELECT * FROM my_employee where id= 20
    ID LAST_NAME FIRST_NAME USERID SALARY
    20 papas john jpapas 1000
    scott@ORCL>

  • Error: The preference path does not exist

    Subject:
    Error: The preference path does not exist:
    Oracle.Portal.Page(WWC-51000)]
    I can not resolve this error.
    Have you already experienced this error?
    I'm sending more information below.
    Regards, Dime
    DETAILS:
    ========
    ORACLE Product: iAS 9i EE, v1.0.2
    Platform: RedHat Linox 6.2, kernel 2.2.18
    HW Platform:
    IBM Intellistation 6889, Intel P2 350MHz, 384MB
    Problem:
    After successful installation of the Application Server and data base creation, the installation of ORACLE Portal 3.0.6 is successful too, but the following message
    appears when we try to access the URL http://servername:port/pls/portal30:
    Error: The preference path does not exist:
    Oracle.Portal.Page (WWC-51000)
    About the Attachments:
    - init.ora.original (the original init.ora file)
    - init.ora.try1 (the file modified as described in the configuration guide)
    - init.ora.try2 (according suggestions in the discussion group on
    the ORACLE Metal Partners Site)
    - install.log (install.log generated with init.ora.try2)
    Regards,
    Dimitar Indovski,
    GORD Systems
    ATTACHMENT-1 (init.ora.original)
    db_name=DEFAULT
    db_files= 80 # SMALL
    db_file_multiblock_read_count = 8 # SMALL
    db_block_buffers = 100 # SMALL
    shared_pool_size = 3500000 # SMALL
    log_checkpoint_interval = 10000
    processes = 50 # SMALL
    parallel_max_servers = 5 # SMALL
    log_buffer = 32768 # SMALL
    max_dump_file_size = 10240 # limit trace file size to 5 Meg each
    global_names = TRUE
    control_files = (ora_control1, ora_control2)
    ATTACHMENT-2 (init.ora.try1)
    db_name=DEFAULT
    db_files = 80 # SMALL
    db_file_multiblock_read_count = 8 # SMALL
    db_block_buffers = 100 # SMALL
    shared_pool_size = 3500000 # SMALL
    log_checkpoint_interval = 10000
    processes = 50 # SMALL
    parallel_max_servers = 5 # SMALL
    log_buffer = 32768 # SMALL
    max_dump_file_size = 10240 # limit trace file size to 5 Meg each
    global_names = TRUE
    control_files = (ora_control1, ora_control2)
    max_enabled_roles = 25
    open_cursors = 50
    compatible = 8.1.0
    java_pool_size = 20
    ATTACHMENT-3 (init.ora.try2)
    db_name=DEFAULT
    db_file_multiblock_read_count = 16
    db_block_buffers = 550
    shared_pool_size = 31457280
    log_checkpoint_interval = 10000
    processes = 100
    parallel_max_servers = 5
    log_buffer = 32768
    max_dump_file_size = 10240
    global_names = TRUE
    control_files = (ora_control1, ora_control2)
    open_cursors = 300
    large_pool_size = 45000000
    java_pool_size = 32768000
    db_block_size = 8192
    ATTACHMENT-4 (install.log.gz)
    -----------------------------

    Dennis
    A general shared_pool_size Q&A is part of the Troubleshooting Guide on OTN: http://technet.oracle.com/products/iportal/htdocs/portal_troubleshooting.htm
    The Configuration Assistant determines the shared pool size from the view v$parameter,
    which lists information about the initialization parameters (populated from init.ora file). If the shared_pool_size value is more than 15728640 (for a default installation), you pass the minimal requirements set by the Portal Installer. Make sure you actually write out all the digits (i.e. 1000000000) and don't use abbreviations (1000M). Currently, the Configuration Assistant does a numeric check against the values that are set and cannot resolve the abbreviate syntax.
    Also try running the sql [select value from v$parameter where name like 'shared_pool_size';] to check if the changes you are making in the init.ora is really getting populated in the v$parameter view. As long as you restart the database once you make the change in init.ora, it should take effect.
    null

  • Errors with Time Machine (not completing backup, and needing to erase the ".inProgress" package)

    I have in a previous discussion been talking about errors with my Time Machine backup.  The errors were with a problem with Indexing a file, it fails and stops the whole backup.  Each time it attemps another backup, it fills my ".inProgress" package with a (nearly) whole backup, filling my Time Machine hard drive, and thus errasing my previous good backups.  The error occurs after about 95% completion.
    In my last post of a similar disscussion, the problem was indexing the Preference Pane files and this caused the whole backup to fail.  This was my last post there:  (below in some additional info of my situation)
    I did exclude the MobileMe.prefPane.  And I got:
    12/16/11 9:24:50.468 PM com.apple.backupd: Starting standard backup
    12/16/11 9:24:50.556 PM com.apple.backupd: Backing up to: /Volumes/3 TB GoFlex Drive/Backups.backupdb
    12/16/11 9:25:14.418 PM com.apple.backupd: Waiting for index to be ready (101)
    12/16/11 9:27:02.366 PM com.apple.backupd: Deep event scan at path:/ reason:must scan subdirs|
    12/16/11 9:27:02.366 PM com.apple.backupd: Finished scan
    12/16/11 9:33:37.119 PM com.apple.backupd: Deep event scan at path:/Volumes/Mac OS Lion GM reason:must scan subdirs|
    12/16/11 9:33:37.119 PM com.apple.backupd: Finished scan
    12/16/11 9:36:15.650 PM com.apple.backupd: 758.92 GB required (including padding), 830.32 GB available
    12/16/11 10:25:14.873 PM com.apple.backupd: Copied 22.8 GB of 630.5 GB, 782749 of 2357620 items
    12/16/11 11:25:15.335 PM com.apple.backupd: Copied 86.6 GB of 630.5 GB, 1167675 of 2357620 items
    12/17/11 12:25:16.227 AM com.apple.backupd: Copied 152.2 GB of 630.5 GB, 1393795 of 2357620 items
    Dec 17 01:25:16 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 305.2 GB of 630.5 GB, 1413946 of 2357620 items
    Dec 17 02:25:16 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 457.1 GB of 630.5 GB, 1419190 of 2357620 items
    Dec 17 03:19:07 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 1736865 files (568.3 GB) from volume Macintosh HD.
    Dec 17 03:25:16 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 572.1 GB of 630.5 GB, 1848939 of 2357620 items
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Indexing a file failed. Returned 200 for: /Volumes/Mac OS Lion GM/System/Library/PreferencePanes/Mouse.prefPane, /Volumes/3 TB GoFlex Drive/Backups.backupdb/Tom iMac/2011-12-14-171406.inProgress/7DB524DD-EFB9-42A6-8A21-0A2A312EDA6D/Mac OS Lion GM/System/Library/PreferencePanes/Mouse.prefPane
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Aborting backup because indexing a file failed.
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Stopping backup.
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 2164998 files (581.1 GB) from volume Mac OS Lion GM.
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copy stage failed with error:11
    Dec 17 03:40:50 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Backup failed with error: 11
    This time it was the Mouse.prefPane that caused the error.  I'd like to exclude the entire PreferencePanes directory.
    This was my error message this time:
    I just realized this was on my small Developers partition.  Perhaps there is an error with the build, OR an error with the initial restore.  I'd like to perhaps exclude the entire /Volumes/Mac OS Lion GM.  I expect that Time Machine is working fine with my main partition and the error happens when it's almost done with the Mac OS Lion GM partition.
    The problem now is that I only have 265 GB of 3 TB available on my Time Machine HDD.  If attempt another backup, it'll surely erase about 410 GB of my past saved backups.  I've already lost 6 months, and I only have two months left of backups.  I need to erase the ".inProgress" package again.  That'll take time, and it's impossible to do from this main partition, even at root access.  This ".inProgress" has a total of two (nearly) full backups; it didn't cleanup the first full backup attempt while starting the second,perhaps it would have had it finished.  But I fear even if I exclude the whole "Mac OS Lion GM" partition,  It'll create a third full backup before cleanup and erase ~400 GB of previous good backups.  Then, I'll have a total of 4 (nearly) full backups!  3 TB is just enough without any past backups.
    Maybe I'll just copy my documentations of my 'errasing the ".inProgress" package'  last time (from the Mac OS Lion GM partition) and do a full restore of just that partition.  Thus erasing the errors all together.  If it doesn't fix the errors then this could be a bug in the build that doesn't allow Time Machine to work.  I've always included this partition in Time Machine before, even with other Lion builds, so I suspect that it was an error in the initial restore.  (I may be answering my own questions, and that the inital restore (of the small partition) is the problem, and I just need to re-restore the small partition)
    Again, I'm going to have to erase the ".inProgress" file to regain 1.53 TB of space before proceeding.
    Also, I gave myself permission to read the ".Backup.345781513.887697.log", the log that was created last night when I first started Time Machine this last time.  It was interesting, but didn't show the error I could see from the console.
    Right now, mds and mdworker appear to be going crazy even after I just now turned off Time Machine.  I think I'll let it go for the rest of the night.  Then I'll work on erasing the ".inProgress" package from the other partition boot up.
    That was my entire last post.  To add some information, I have two OS X partitons, both Mac OS X Lion.  One is my large main partition, the other is one I don't mind testing with.  I recently replaced my internal hard drive in my iMac and restored from Time Machine both partitions.  This appeared to go smoothly.  But I have yet to create a single successful Time Machine backup since.  At first it was doing a Full Backup, which I didn't like, but now it just aborts around 95% completion.  Each, time, it tries it fills the Time Machine hard drive with duplicate (nearly) full backups errasing my older good backups.  I would like to erase the ".inProgress" file to save space.
    My main question in this new discussion is does anyone know of a good way of erasing the ".inProgress" file? This is so I can preseerve my previous backups.  ACLs and other permissions seem to make it impossible to erase from this startup partition, the one I'm running Time Machine from.  Even at root level, if I give myself permission to change permissions or delete a file, it'll say Operation not Permitted instead of Permission Denied.  I have been able to delete this ".inProgress" package before when booting from the other  partition, but with great difficulty.  I have had much help from another Member in this Support Community when it comes to solving my Time Machine problems.  I think I have found the problem (indexing files in my small OS X partition), as stated in my copy& pasted post above, but I really need to delete this inProgress package first to save space before continuing!

    Pondini wrote:
    Gator TPK wrote:
    Now I'll have to fix the small partition?  How's the best way to do this?  There could be thousands of files that won't index fine.
    See if there's anything you haven't done, that applies, in the pink box of #C3 in Time Machine - Troubleshooting
    Otherwise, since most (or all?) of the indexing errors are in OSX, you might want to just reinstall it.  Something may have gone wrong sometime, that damaged those files.
    I reviewed #C3 in Time Machine - Troubleshooting and I have already done most of those things.  I have just learned something new though:
    When I included my Main OS X partition again, I got an indexing error for the first time for that partition.  I might be interesting to note that the _spotlight process was running, and it's running again (the magnifying glass has a dot and it generically says "Indexing Tom's iMac").  mdworker, mds and backupd processes really are working hard, one moment they used over 500% of my CPU.  It's nice to know for once quad core is good for something other than video encoding.  (Now if they could just get the Finder to do more than 100.1%, only 1 thread is doing 100%, I'd like to see file size calculations 8 times quicker!)
    I never got an indexing error once in the past 2 weeks for that large Mac OS X v10.7.2 main volume, and it had appeared to finish that partition backup before running into problems with my smaller test partition.  Also, I had just updated the smaller test partition with a later build of Mac OS X.  But It appears that the beta builds are clearly not the problem.  I thought I could just restore again (from the December 4th backup) the small partition and both would be fine.
    I'll finish reviewing all the suggestions on Time Machine - Troubleshooting and go from there.  Hopefully, the _spotlight indexing simutaniously was the only problem.  It's strange that the indexing hasn't happened since the original restore last week untill I finally got a good clean complete partial Time Machine backup.  Why would the first Time Machine backup trigger indexing again?
    For now, I'm going to exclude the Main Partition again, and let another good backup run.  And try your suggestions.  (And wait till mds, mdworker, etc. to finish!)
    I have the logs of the first two sucsessful backups and the last two failed backups from the last 3 hours, if that would help.?

  • Tips for blue screen (BSOD) errors with Windows Vista and Intel Turbo Memory on T61/T61p

    Important note: The symptoms and solutions described below address only a small subset of the possible causes for blue screen errors, aka BSOD. This information can help address blue screen errors specifically related to Turbo Memory, but may not solve errors related to other issues. Please read through the instructions completely, make sure they apply to your system, and after attempting the solutions please post back with your feedback for the community.
    Some users may experience random blue screen errors with ThinkPad
    systems running Windows Vista with Intel Turbo Memory hardware. These
    blue screens may occur during normal usage on the system or they may
    occur when booting into Windows Vista. Blue screens related to the
    Intel Turbo Memory hardware may reference a stop code of 8086 with
    memory address locations of {0, 0, 0, 0}.
    There are two main steps that you can take to help resolve blue screen issues related to Intel Turbo Memory.
    Step 1: Update Intel Turbo Memory Driver
    If the driver version is before version 1.0.1.1004-7.0.3.1001, please
    update to this version.
    To determine what version of the Intel Turbo Memory driver is installed:
    1.    Click Start, then click Control Panel.
    2.    Click System and Maintenance.
    3.    Click System.
    4.    Click Device Manager.
    5.    Expand the Storage controllers category.
    6.    Double-click Intel Flash Cache Logic Chip.
    7.    Click the Driver tab. Then you will see the driver version (for example, 1.0.1.1004).
    The new driver and installation instructions can be found here.
    Note: The Intel Matrix Storage Driver is updated with this package.
    Step 2: BIOS version
    If your BIOS version is older than those listed below, please update to the version listed.
    How to check your BIOS version:
    Turn off the system.
    Turn on the system.
    While the To interrupt normal startup, press the blue ThinkVantage button message is displayed at the lower-left area of the screen, press the F1 key.
    The
    BIOS Setup Utility menu will be displayed. If you have set a supervisor
    password, the BIOS Setup Utility menu appears after you enter the
    password.
    Check BIOS Version and Embedded Controller Version.
    Turn off the system.
    System BIOS versions:
    ThinkPad T61/T61p (14.1 inch widescreen with IEEE 1394 model) - BIOS version 1.22 (7LET52WW)
    Please
    remember that these updates do not solve every possible system blue
    screen, but they do resolve several problems related to the Intel Turbo
    Memory driver.
    Message Edited by Tim_Lenovo on 11-30-2007 07:03 PM
    Tim Supples
    Lenovo Social Media
    Got a question? Don't PM me, post it on the forum!
    Lenovo Blogs
    X60 Tablet SXGA+ primary, Z61p fully loaded workhorse

    Thanks Tim,
    I do have my T61p fully up-to-date to the latest drivers and updates (via System Update and the Drivers&Software web page when the former is not that up-to-date).
    At the moment the most recurrent problem is this:
    http://forum.lenovo.com/lnv/board/message?board.id=T_Series_Thinkpads&thread.id=55
    which has been longly speculated here:
    http://forum.thinkpads.com/viewtopic.php?t=47755
    My other angst is the boot-time chkdsk hang-up problem:
    http://forum.thinkpads.com/viewtopic.php?t=52765&highlight=chkdsk
    I just wonder if this purely a Vista issue when using NV cache, the disk spinning down at almost exactly 1 hour from the beginning of the chdsk operation seems too much of a coincidence.
    This is my T61p configuration:
    Intel Core 2 Duo T7700 2.4GHz
    BIOS version 1.26-1.06
    4GB RAM 2 SO-DIMMs
    nVidia Quadro FX 570m with 512MB VRAM
    WUXGA LCD
    Seagate 7200.2 160 GB
    4GB RAM 2 SO-DIMMs
    Windows Vista Ultimate 32bit (waiting to move to 64bit)
    thanks,
    andrea
    Message Edited by abarbieri on 12-05-2007 03:48 PM
    T61p - 15.4" - T7700 - FX 570M 256MB - 4GB RAM - ST916023AS - 4965AGN - BT - FPR - 9 cell - Vista Ult. x86
    T21p - 14" - PIII 850MHz - S3 Savage/IX 8MB - 512MB RAM - 100GB 7200rpm - WinXP x86

  • Tips for blue screen (BSOD) errors with Windows Vista and Intel Turbo Memory on X61/X61s

    Important note: The symptoms and solutions described below address only a small subset of the possible causes for blue screen errors, aka BSOD.
    This information can help address blue screen errors specifically
    related to Turbo Memory, but may not solve errors related to other
    issues. Please read through the instructions completely, make sure they
    apply to your system, and after attempting the solutions please post
    back with your feedback for the community.
    Some users may experience random blue screen errors with ThinkPad
    systems running Windows Vista with Intel Turbo Memory hardware. These
    blue screens may occur during normal usage on the system or they may
    occur when booting into Windows Vista. Blue screens related to the
    Intel Turbo Memory hardware may reference a stop code of 8086 with
    memory address locations of {0, 0, 0, 0}.
    There are two main steps that you can take to help resolve blue screen issues related to Intel Turbo Memory.
    Step 1: Update Intel Turbo Memory Driver
    If the driver version is before version 1.0.1.1004-7.0.3.1001, please
    update to this version.
    To determine what version of the Intel Turbo Memory driver is installed:
    1.    Click Start, then click Control Panel.
    2.    Click System and Maintenance.
    3.    Click System.
    4.    Click Device Manager.
    5.    Expand the Storage controllers category.
    6.    Double-click Intel Flash Cache Logic Chip.
    7.    Click the Driver tab. Then you will see the driver version (for example, 1.0.1.1004).
    The new driver and installation instructions can be found here.
    Note: The Intel Matrix Storage Driver is updated with this package.
    Step 2: BIOS version
    If your BIOS version is older than those listed below, please update to the version listed.
    How to check your BIOS version:
    Turn off the system.
    Turn on the system.
    While the To interrupt normal startup, press the blue ThinkVantage button message is displayed at the lower-left area of the screen, press the F1 key.
    The
    BIOS Setup Utility menu will be displayed. If you have set a supervisor
    password, the BIOS Setup Utility menu appears after you enter the
    password.
    Check BIOS Version and Embedded Controller Version.
    Turn off the system.
    System BIOS versions:
    ThinkPad X61 or X61s - BIOS version 1.06 (7NET25WW)
    Please
    remember that these updates do not solve every possible system blue
    screen, but they do resolve several problems related to the Intel Turbo
    Memory driver.
    Tim Supples
    Lenovo Social Media
    Got a question? Don't PM me, post it on the forum!
    Lenovo Blogs
    X60 Tablet SXGA+ primary, Z61p fully loaded workhorse

    Dear Tim,
    First off, many thanks for the tips for resolving BSOD with Vista + Turbo Memory on X61.  I've been suffering from this BSOD for countless times since I bought in my X61 7673-CW9 in April 2008.
    Even prior to having the pleasure to visit this wonderful forum, I followed both steps as indicated, and updated my Intel Turbo Memory driver to 1.5.0.1013 and my BIOS to 7NETB4WW (2.14).  However, the BSOD recurrs.
    For the past two months, I've recovered my system to factory default settings using Rescue and Recovery for over twenty times, each time with the latest Intel Turbo Memory driver and BIOS.  Notwithstanding that, BSOD recurrs.
    During these painful experiences, I tried two options: 1) making my X61 up-to-date by using System Update and Windows Update (including Vista SP1 or excluding Vista SP1); 2) keeping my X61 the status as factory default (i.e. without updating through either System Update or Windows Update (the automatic/scheduled update function of both is turned off)).  In either case, BSOD recurrs.
    I'm 100% positive that the BSOD does not arise from any hardware or software/firmware I install.  I never install any hardware (e.g. RAM).  And, it is not caused by any software/firmware I install: the clear and unequivocal evidence is that at one time,I encountered BSOD while having restored back to factory setting and booting for the first time.
    I live in Taiwan, and I seldom heard this BSOD here.  All of my friends (as most of Taiwan residents) using X61 operate in Traditional Chinese environment, whereas I operate in English environment.  In Taiwan, when booting for the first time after purchase/recovery, the Windows Vista Business system provides for lanuage choice (Traditional Chinese or English), and, once chosen, the language cannot be altered later on (unless, of course, the system is restored back to factory default settings).
    My system specs are the same as the day I purchased it and are listed below (as I'm not sure if my machine type X61 7673-CW9 is applicable outside Taiwan):
    Processor: Intel(R) Core(TM)2 Duo CPU T8300 @ 2.4GHz
    Memory: 1.00 G.B.
    System: Windows Vista Business (32-bit)
    Hard Drive: 160 G.B. @ 7,200 r.p.m.
    And, of course, with Intel Turbo Memory 1 G.B.
    I contacted the Lenovo support staff here in Taiwan for countless times, but they seem to be clueless.  I learned that some friends at this forum downgraded their OS back to Windows XP, but I chose not to.  The reason is simple: my purchase price for X61 7673-CW9 includes the Intel Turbo Memory, which cannot function under Windows XP (at least so far).
    Therefore, I just wish to share my experience here and perhaps I can get some advice from you and other friends here.  Any advice will be tremendously and enormously appreciated.
    Kevin Chen @ Taiwan

  • Error opening preferences file

    When opening a pdf document in Adobe Acrobat 9 Pro, saved either locally or on the network, I receive the message "Error opening preferences file The file may be read-only, or another user may have it open.  Please save the document with a different name or in a different folder."  I've tried saving this file with a different name and I still receive this error.  If I choose to open this document with Adobe Reader 9, I have no issues.  Why would I be having this issue with Adobe Acrobat 9 Pro?

    What release of System Update are you trying to install? What OS are you using ie, win 7, 8, 8.1?
    Did you really mean IMPORT failed (not export)?
    Are your running the install . exec from a Network drive?
    Please look in  C:\users\*your id*\appdata\local\temp for the msi install log and post 50 lines of the log around where the error occurred.

  • Error with Parent-Child Hierarchies in BIEE11.1.1.5

    Hi ,
    I am using BIEE11.1.1.5, I have created a Logical Dimensions with Parent-Child Hierarchies,
    In answer,I draged the Hierarchies named 'H5 Sales Rep', then view the results,
    It has error,error message as follows:
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 22056] To use hierarchical functions, you need to associate a Closure Table with Logical Table Source 'LTS1 Sales Rep'. (HY000)
    SQL Issued: SELECT 0 s_0, "Sample Sales"."Sales Rep"."Sales Rep Name" s_1, CASE WHEN ISLEAF("Sample Sales"."Sales Rep"."H5 Sales Rep") THEN 1 ELSE 0 END s_2, IDOF("Sample Sales"."Sales Rep"."H5 Sales Rep") s_3, PARENT("Sample Sales"."Sales Rep"."H5 Sales Rep") s_4 FROM "Sample Sales" WHERE ISROOT("Sample Sales"."Sales Rep"."H5 Sales Rep")
    anyone know why???
    Thank you!

    Hi Leo,
    Did you configure closure table? http://www.rittmanmead.com/2010/11/oracle-bi-ee-11g-parent-child-hierarchies-multiple-modeling-methods/
    Also make sure to perform the hierarchy changes in offline mode.
    Regards,
    Dpka

Maybe you are looking for