Problem in "Process.waitFor()" in multithreaded application (UNIX OS)

Hello all
This is very urgent for me.
I am using the follwing code to invoke the child process which calls a shell script in the unix OS,and it is going fine when runs in single thread. But if i run it as the multhreaded appln, anyone of the thread hangs in the 'Process.waitfor()' call. But sometimes all the threads are returning successfully. I am calling this code from the one or more threads. This is tested in the java1.2 and 1.3. so can u suggest me how to change the code or any way to fix up the problem.
// the code starts
String s[] = new String[3];
s[0] = "/bin/sh";
s[1] = "-c";
s[2] = "encrypt.sh"; //some .sh filename to do the task
Runtime runtime = Runtime.getRuntime();
Process proc;
proc = runtime.exec(s);
InputStream is = proc.getInputStream();
byte buf[] = new byte[256];
int len;
while( (len=is.read(buf)) != -1) {
String s1 = new String(buf,0,len);
System.out.println(s1);
InputStream es = proc.getErrorStream();
buf = new byte[256];
while( (len=es.read(buf)) != -1) {
String s1 = new String(buf,0,len);
System.out.println("Error Stream : " + s1);
// place where it hang
retValue = proc.waitFor();
//code ends
i am handling the errorstream and output stream and not getting any error stream output and not printing any messages in the child process. When i synchronize the whole function, it went fine, but spoils the speed performance. I tried all the option but i could not solve the problem.
thanks

You're first reading all of the standard output, then reading all of the standard error. What if the process generates too much output to standard error and hangs while it waits for your program to read it? I would suggest having two threads, one which reads the standard output and the other which reads standard error.

Similar Messages

  • Process.getInputStream() and process.waitfor() block in web application

    Hi folks,
    i am really stuck with a problem which drives me mad.....
    What i want:
    I want to call the microsoft tool "handle" (see http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/Handle.mspx) from within my web-application.
    Handle is used to assure that no other process accesses a file i want to read in.
    A simple test-main does the job perfectly:
    public class TestIt {
       public static void main(String[] args){
          String pathToFileHandleTool = "C:\\tmp\\Handle\\handle.exe";
          String pathToFile = "C:\\tmp\\foo.txt";
          String expectedFileHandleSuccessOutput = "(.*)No matching handles found(.*)";
          System.out.println("pathToFileHandleTool:" + pathToFileHandleTool);
          System.out.println("pathToFile: " + pathToFile);
          System.out.println("expectedFileHandleSuccessOutput: " + expectedFileHandleSuccessOutput);
          ProcessBuilder builder = null;
          // check for os
          if(System.getProperty("os.name").matches("(.*)Windows(.*)")) {
             System.out.println("we are on windows..");
          } else {
             System.out.println("we are on linux..");
          builder = new ProcessBuilder( pathToFileHandleTool, pathToFile);
          Process process = null;
          String commandOutput = "";
          String line = null;
          BufferedReader bufferedReader = null;
          try {
             process = builder.start();
             // read command output
             bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
              while((line = bufferedReader.readLine()) != null) {
                 commandOutput += line;
              System.out.println("commandoutput: " + commandOutput);
             // wait till process has finished
             process.waitFor();
          } catch (IOException e) {
             System.out.println(e.getMessage());
             e.printStackTrace();
          }  catch (InterruptedException e) {
             System.out.println(e.getMessage());
             e.printStackTrace();      }
          // check output to assure that no process uses file
          if(commandOutput.matches(expectedFileHandleSuccessOutput))
             System.out.println("no other processes accesses file!");
          else
             System.out.println("one or more other processes access file!");
    } So, as you see, a simple handle call looks like
    handle foo.txtand the output - if no other process accesses the file - is:
    Handle v3.2Copyright (C) 1997-2006 Mark RussinovichSysinternals - www.sysinternals.com
    No matching handles found.
    no other processes accesses file!(Wether the file exists or not doesnt matter to the program)
    If some processes access the file the output looks like this:
    commandoutput: Handle v3.2Copyright (C) 1997-2006 Mark RussinovichSysinternals - www.sysinternals.com
    WinSCP3.exe        pid: 1108    1AC: C:\tmp\openSUSE-10.2-GM-i386-CD3.iso.filepart
    one or more other processes access file!So far, so good.........but now ->
    The problem:
    If i know use the __exact__ same code (even the paths etc. hardcoded for debugging purposes) within my Servlet-Webapplication, it hangs here:
    while((line = bufferedReader.readLine()) != null) {if i comment that part out the application hangs at:
    process.waitFor();I am absolutely clueless what to do about this....
    Has anybody an idea what causes this behaviour and how i can circumvent it?
    Is this a windows problem?
    Any help will be greatly appreciated.....
    System information:
    - OS: Windows 2000 Server
    - Java 1.5
    - Tomcat 5.5
    More information / What i tried:
    - No exception / error is thrown, the application simply hangs. Adding
    builder.redirectErrorStream(true);had no effect on my logs.
    - Tried other readers as well, no effect.
    - replaced
    while((line = bufferedReader.readLine()) != null)with
    int iChar = 0;
                  while((iChar = bufferedReader.read()) != -1) {No difference, now the application hangs at read() instead of readline()
    - tried to call handle via
    runtime = Runtime.getRuntime();               
    Process p = runtime.exec("C:\\tmp\\Handle\\handle C:\\tmp\\foo.txt");and
    Process process = runtime.exec( "cmd", "/c","C:\\tmp\\Handle\\handle.exe C:\\tmp\\foo.txt");No difference.
    - i thought that maybe for security reasons tomcat wont execute external programs, but a "nslookup www.google.de" within the application is executed
    - The file permissions on handle.exe seem to be correct. The user under which tomcat runs is NT-AUTORIT-T/SYSTEM. If i take a look at handle.exe permission i notice that user "SYSTEM" has full access to the file
    - I dont start tomcat with the "-security" option
    - Confusingly enough, the same code works under linux with "lsof", so this does not seem to be a tomcat problem at all
    Thx for any help!

    Hi,
    thx for the links, unfortanutely nothing worked........
    What i tried:
    1. Reading input and errorstream separately via a thread class called streamgobbler(from the link):
              String pathToFileHandleTool = "C:\\tmp\\Handle\\handle.exe";
              String pathToFile = "C:\\tmp\\foo.txt";
              String expectedFileHandleSuccessOutput = "(.*)No matching handles found(.*)";
              logger.debug("pathToFileHandleTool: " + pathToFileHandleTool);
              logger.debug("pathToFile: " + pathToFile);
              logger.debug("expectedFileHandleSuccessOutput: " + expectedFileHandleSuccessOutput);
              ProcessBuilder builder = new ProcessBuilder( pathToFileHandleTool, pathToFile);
              String commandOutput = "";
              try {
                   logger.debug("trying to start builder....");
                   Process process = builder.start();
                   logger.debug("builder started!");
                   logger.debug("trying to initialize error stream gobbler....");
                   StreamGobbler errorGobbler = new StreamGobbler(process.getErrorStream(), "ERROR");
                   logger.debug("error stream gobbler initialized!");
                   logger.debug("trying to initialize output stream gobbler....");
                   StreamGobbler outputGobbler = new StreamGobbler(process.getInputStream(), "OUTPUT");
                   logger.debug("output stream gobbler initialized!");
                   logger.debug("trying to start error stream gobbler....");
                   errorGobbler.start();
                   logger.debug("error stream gobbler started!");
                   logger.debug("trying to start output stream gobbler....");
                   outputGobbler.start();
                   logger.debug("output stream gobbler started!");
                   // wait till process has finished
                   logger.debug("waiting for process to exit....");
                   int exitVal = process.waitFor();
                   logger.debug("process terminated!");
                   logger.debug("exit value: " + exitVal);
              } catch (IOException e) {
                   logger.debug(e.getMessage());
                   logger.debug(e);
              }  catch (InterruptedException e) {
                   logger.debug(e.getMessage());
                   logger.debug(e);
         class StreamGobbler extends Thread {
              InputStream is;
             String type;
             StreamGobbler(InputStream is, String type) {
                 this.is = is;
                 this.type = type;
             public void run() {
                  try {
                     InputStreamReader isr = new InputStreamReader(is);
                     BufferedReader br = new BufferedReader(isr);
                     String line=null;
                     logger.debug("trying to call readline() .....");
                     while ( (line = br.readline()) != null)
                         logger.debug(type + ">" + line);   
                 } catch (IOException ioe) {
                         ioe.printStackTrace(); 
         }Again, the application hangs at the "readline()":
    pathToFileHandleTool: C:\tmp\Handle\handle.exe
    pathToFile: C:\tmp\openSUSE-10.2-GM-i386-CD3.iso
    expectedFileHandleSuccessOutput: (.*)No matching handles found(.*)
    trying to start builder....
    builder started!
    trying to initialize error stream gobbler....
    error stream gobbler initialized!
    trying to initialize output stream gobbler....
    output stream gobbler initialized!
    trying to start error stream gobbler....
    error stream gobbler started!
    trying to start output stream gobbler....
    output stream gobbler started!
    waiting for process to exit....
    trying to call readline().....
    trying to call readline().....Then i tried read(), i.e.:
         class StreamGobbler extends Thread {
              InputStream is;
             String type;
             StreamGobbler(InputStream is, String type) {
                 this.is = is;
                 this.type = type;
             public void run() {
                  try {
                     InputStreamReader isr = new InputStreamReader(is);
                     BufferedReader br = new BufferedReader(isr);
                     logger.debug("trying to read in single chars.....");
                     int iChar = 0;
                     while ( (iChar = br.read()) != -1)
                         logger.debug(type + ">" + iChar);   
                 } catch (IOException ioe) {
                         ioe.printStackTrace(); 
         }Same result, application hangs at read()......
    Then i tried a dirty workaround, but even that didnt suceed:
    I wrote a simple batch-file:
    C:\tmp\Handle\handle.exe C:\tmp\foo.txt > C:\tmp\handle_output.txtand tried to start it within my application with a simple:
    Runtime.getRuntime().exec("C:\\tmp\\call_handle.bat");No process, no reading any streams, no whatever.....
    Result:
    A file C:\tmp\handle_output.txt exists but it is empty..........
    Any more ideas?

  • I have a problem with my safari. I deleted then installed but now when i try to open the message below is displayed: Process:         Safari [264] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:

    Process:         Safari [264]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         6.0.4 (7536.29.13)
    Build Info:      WebBrowser-7536029013000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [123]
    Date/Time:       2013-04-26 14:00:43.687 +0200
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          194465 sec
    Crashes Since Last Report:           46
    Per-App Crashes Since Last Report:   45
    Anonymous UUID:                      E2A3C96F-BC33-4EAD-BC34-18C714228A60
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
      Referenced from: /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    Reason: image not found
    Binary Images:
           0x10fdf9000 -        0x10fdf9fff  com.apple.Safari (6.0.4 - 7536.29.13) <48D345F9-0B52-349A-AF27-07ECB0C24CE8> /Applications/Safari.app/Contents/MacOS/Safari
           0x10fdfd000 -        0x110304fff  com.apple.Safari.framework (8536 - 8536.29.13) <8AB54860-C5A0-3FC2-A486-DDD3151B0555> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
        0x7fff6f9f9000 -     0x7fff6fa2dbaf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
        0x7fff8d9ec000 -     0x7fff8da19fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <6E5C8AC3-DBB7-31CB-BEB7-D6ED8E6DE0CE> /usr/lib/libSystem.B.dylib
    Model: MacBookAir4,2, BootROM MBA41.0077.B0F, 2 processors, Intel Core i5, 1.7 GHz, 4 GB, SMC 1.73f66
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM128C, 121,33 GB
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821f, 0xfa113000 / 7
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x024d, 0xfa120000 / 4
    USB Device: FaceTime Camera (Built-in), apple_vendor_id, 0x850a, 0xfa200000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8404, 0xfd110000 / 3

    This from the crash log
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
      Referenced from: /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    indicates there is a missing library on your system. What problems were you having before that caused you to delete Safari? How did you delete it?
    You're best bet in this case is to re-install the OS. While doing a re-install will not normally harm your user data having a good working backup in cases like this is essential.

  • Pro*c multithreaded application has memory leak

    Hi there,
    I posted this message a week ago in OCI section, nobody answer me.
    I am really curious if my application has a bug or the pro*c has a bug.
    Anyone can compile the sample code and test it easily.
    I made multithreaded application which queries dynamic SQL, it works.
    But the memory leaks when i query the SQL statement.
    The more memory leaks, the more i query the SQL statement, even same SQL
    statement.
    I check it with top, shell command.
    My machine is SUN E450, Solaris 8. Oracle 9.2.0.1
    Compiler : gcc (GCC) 3.2.2
    I changed source code which is from
    $(ORACLE_HOME)/precomp/demo/proc/sample10.pc
    the sample10 doesn't need to be multithreaded. But i think it has to work
    correctly if i changed it to multithreaded application.
    the make file and source code will be placed below.
    I have to figure out the problem.
    Please help
    Thanks in advance,
    the make file is below
    HOME = /user/jkku
    ORA = $(ORACLE_HOME)
    CC = gcc
    PROC = proc
    LC_INCL = -I$(HOME)/work/dbmss/libs/include
    lc_incl = include=$(HOME)/work/dbmss/libs/include
    SYS_INCL =
    sys_incl =
    ORA_INCL = -I. \
    -I$(ORA)/precomp/public \
    -I$(ORA)/rdbms/public \
    -I$(ORA)/rdbms/demo \
    -I$(ORA)/rdbms/pbsql/public \
    -I$(ORA)/network/public \
    -DSLMXMX_ENABLE -DSLTS_ENABLE -D_SVID_GETTOD
    INCLUDES = $(LC_INCL) $(SYS_INCL) $(ORA_INCL)
    includes = $(lc_incl) $(sys_incl)
    LC_LIBS =
    SYS_LIBS = -lpthread -lsocket -lnsl -lrt
    ORA_LIBS = -L$(ORA)/lib/ -lclntsh
    LIBS = $(LC_LIBS) $(SYS_LIBS) $(ORA_LIBS)
    # Define C Compiler flags
    CFLAGS += -D_Solaris64_ -m64
    CFLAGS += -g -D_REENTRANT
    # Define pro*c Compiler flags
    PROCFLAGS += THREADS=YES
    PROCFLAGS += CPOOL=YES
    # Our object files
    PRECOMPS = sample10.c
    OBJS = sample10.o
    .SUFFIXES: .o .c .pc
    .c.o:
    $(CC) -c $(CFLAGS) $(INCLUDES) $*.c
    .pc.c:
    $(PROC) $(PROCFLAGS) $(includes) $*.pc $*.c
    all: sample10
    sample10: $(PRECOMPS) $(OBJS)
    $(CC) $(CFLAGS) -o sample10 $(OBJS) $(LIBS)
    clean:
    rm -rf *.o sample10 sample10.c
    the source code is below which i changed the oracle sample10.pc to
    multithreaded application.
    Sample Program 10: Dynamic SQL Method 4
    This program connects you to ORACLE using your username and
    password, then prompts you for a SQL statement. You can enter
    any legal SQL statement. Use regular SQL syntax, not embedded SQL.
    Your statement will be processed. If it is a query, the rows
    fetched are displayed.
    You can enter multi-line statements. The limit is 1023 characters.
    This sample program only processes up to MAX_ITEMS bind variables and
    MAX_ITEMS select-list items. MAX_ITEMS is #defined to be 40.
    #include <stdio.h>
    #include <string.h>
    #include <setjmp.h>
    #include <sqlda.h>
    #include <stdlib.h>
    #include <sqlcpr.h>
    /* Maximum number of select-list items or bind variables. */
    #define MAX_ITEMS 40
    /* Maximum lengths of the names of the
    select-list items or indicator variables. */
    #define MAX_VNAME_LEN 30
    #define MAX_INAME_LEN 30
    #ifndef NULL
    #define NULL 0
    #endif
    /* Prototypes */
    #if defined(__STDC__)
    void sql_error(void);
    int oracle_connect(void);
    int alloc_descriptors(int, int, int);
    int get_dyn_statement(void);
    void set_bind_variables(void);
    void process_select_list(void);
    void help(void);
    #else
    void sql_error(/*_ void _*/);
    int oracle_connect(/*_ void _*/);
    int alloc_descriptors(/*_ int, int, int _*/);
    int get_dyn_statement(/* void _*/);
    void set_bind_variables(/*_ void -*/);
    void process_select_list(/*_ void _*/);
    void help(/*_ void _*/);
    #endif
    char *dml_commands[] = {"SELECT", "select", "INSERT", "insert",
    "UPDATE", "update", "DELETE", "delete"};
    EXEC SQL INCLUDE sqlda;
    EXEC SQL INCLUDE sqlca;
    EXEC SQL BEGIN DECLARE SECTION;
    char dyn_statement[1024];
    EXEC SQL VAR dyn_statement IS STRING(1024);
    EXEC SQL END DECLARE SECTION;
    EXEC ORACLE OPTION (ORACA=YES);
    EXEC ORACLE OPTION (RELEASE_CURSOR=YES);
    SQLDA *bind_dp;
    SQLDA *select_dp;
    /* Define a buffer to hold longjmp state info. */
    jmp_buf jmp_continue;
    char *db_uid="dbmuser/dbmuser@dbmdb";
    sql_context ctx;
    int err_sql;
    enum{
    SQL_SUCC=0,
    SQL_ERR,
    SQL_NOTFOUND,
    SQL_UNIQUE,
    SQL_DISCONNECT,
    SQL_NOTNULL
    int main()
    int i;
    EXEC SQL ENABLE THREADS;
    EXEC SQL WHENEVER SQLERROR DO sql_error();
    EXEC SQL WHENEVER NOT FOUND DO sql_not_found();
    /* Connect to the database. */
    if (connect_database() < 0)
    exit(1);
    EXEC SQL CONTEXT USE :ctx;
    /* Process SQL statements. */
    for (;;)
    /* Allocate memory for the select and bind descriptors. */
    if (alloc_descriptors(MAX_ITEMS, MAX_VNAME_LEN, NAME_LEN) != 0)
    exit(1);
    (void) setjmp(jmp_continue);
    /* Get the statement. Break on "exit". */
    if (get_dyn_statement() != 0)
    break;
    EXEC SQL PREPARE S FROM :dyn_statement;
    EXEC SQL DECLARE C CURSOR FOR S;
    /* Set the bind variables for any placeholders in the
    SQL statement. */
    set_bind_variables();
    /* Open the cursor and execute the statement.
    * If the statement is not a query (SELECT), the
    * statement processing is completed after the
    * OPEN.
    EXEC SQL OPEN C USING DESCRIPTOR bind_dp;
    /* Call the function that processes the select-list.
    * If the statement is not a query, this function
    * just returns, doing nothing.
    process_select_list();
    /* Tell user how many rows processed. */
    for (i = 0; i < 8; i++)
    if (strncmp(dyn_statement, dml_commands, 6) == 0)
    printf("\n\n%d row%c processed.\n", sqlca.sqlerrd[2], sqlca.sqlerrd[2] == 1 ? '\0' : 's');
    break;
    /* Close the cursor. */
    EXEC SQL CLOSE C;
    /* When done, free the memory allocated for pointers in the bind and
    select descriptors. */
    for (i = 0; i < MAX_ITEMS; i++)
    if (bind_dp->V != (char *) 0)
    free(bind_dp->V);
    free(bind_dp->I); /* MAX_ITEMS were allocated. */
    if (select_dp->V != (char *) 0)
    free(select_dp->V);
    free(select_dp->I); /* MAX_ITEMS were allocated. */
    /* Free space used by the descriptors themselves. */
    SQLSQLDAFree(ctx, bind_dp);
    SQLSQLDAFree(ctx, select_dp);
    } /* end of for(;;) statement-processing loop */
    disconnect_database();
    EXEC SQL WHENEVER SQLERROR CONTINUE;
    EXEC SQL COMMIT WORK RELEASE;
    puts("\nHave a good day!\n");
    return;
    * Allocate the BIND and SELECT descriptors using sqlald().
    * Also allocate the pointers to indicator variables
    * in each descriptor. The pointers to the actual bind
    * variables and the select-list items are realloc'ed in
    * the set_bind_variables() or process_select_list()
    * routines. This routine allocates 1 byte for select_dp->V
    * and bind_dp->V, so the realloc will work correctly.
    alloc_descriptors(size, max_vname_len, max_iname_len)
    int size;
    int max_vname_len;
    int max_iname_len;
    int i;
    * The first sqlald parameter determines the maximum number of
    * array elements in each variable in the descriptor. In
    * other words, it determines the maximum number of bind
    * variables or select-list items in the SQL statement.
    * The second parameter determines the maximum length of
    * strings used to hold the names of select-list items
    * or placeholders. The maximum length of column
    * names in ORACLE is 30, but you can allocate more or less
    * as needed.
    * The third parameter determines the maximum length of
    * strings used to hold the names of any indicator
    * variables. To follow ORACLE standards, the maximum
    * length of these should be 30. But, you can allocate
    * more or less as needed.
    if ((bind_dp =
    SQLSQLDAAlloc(ctx, size, max_vname_len, max_iname_len)) ==
    (SQLDA *) 0)
    fprintf(stderr,
    "Cannot allocate memory for bind descriptor.");
    return -1; /* Have to exit in this case. */
    if ((select_dp =
    SQLSQLDAAlloc(ctx, size, max_vname_len, max_iname_len)) == (SQLDA *)
    0)
    fprintf(stderr,
    "Cannot allocate memory for select descriptor.");
    return -1;
    select_dp->N = MAX_ITEMS;
    /* Allocate the pointers to the indicator variables, and the
    actual data. */
    for (i = 0; i < MAX_ITEMS; i++) {
    bind_dp->I = (short *) malloc(sizeof (short));
    select_dp->I = (short *) malloc(sizeof(short));
    bind_dp->V = (char *) malloc(1);
    select_dp->V = (char *) malloc(1);
    return 0;
    int get_dyn_statement()
    char *cp, linebuf[256];
    int iter, plsql;
    for (plsql = 0, iter = 1; ;)
    if (iter == 1)
    printf("\nSQL> ");
    dyn_statement[0] = '\0';
    fgets(linebuf, sizeof linebuf, stdin);
    cp = strrchr(linebuf, '\n');
    if (cp && cp != linebuf)
    *cp = ' ';
    else if (cp == linebuf)
    continue;
    if ((strncmp(linebuf, "EXIT", 4) == 0) ||
    (strncmp(linebuf, "exit", 4) == 0))
    return -1;
    else if (linebuf[0] == '?' ||
    (strncmp(linebuf, "HELP", 4) == 0) ||
    (strncmp(linebuf, "help", 4) == 0))
    help();
    iter = 1;
    continue;
    if (strstr(linebuf, "BEGIN") ||
    (strstr(linebuf, "begin")))
    plsql = 1;
    strcat(dyn_statement, linebuf);
    if ((plsql && (cp = strrchr(dyn_statement, '/'))) ||
    (!plsql && (cp = strrchr(dyn_statement, ';'))))
    *cp = '\0';
    break;
    else
    iter++;
    printf("%3d ", iter);
    return 0;
    void set_bind_variables()
    int i, n;
    char bind_var[64];
    /* Describe any bind variables (input host variables) */
    EXEC SQL WHENEVER SQLERROR DO sql_error();
    bind_dp->N = MAX_ITEMS; /* Initialize count of array elements. */
    EXEC SQL DESCRIBE BIND VARIABLES FOR S INTO bind_dp;
    /* If F is negative, there were more bind variables
    than originally allocated by sqlald(). */
    if (bind_dp->F < 0)
    printf ("\nToo many bind variables (%d), maximum is %d\n.",
    -bind_dp->F, MAX_ITEMS);
    return;
    /* Set the maximum number of array elements in the
    descriptor to the number found. */
    bind_dp->N = bind_dp->F;
    /* Get the value of each bind variable as a
    * character string.
    * C contains the length of the bind variable
    * name used in the SQL statement.
    * S contains the actual name of the bind variable
    * used in the SQL statement.
    * L will contain the length of the data value
    * entered.
    * V will contain the address of the data value
    * entered.
    * T is always set to 1 because in this sample program
    * data values for all bind variables are entered
    * as character strings.
    * ORACLE converts to the table value from CHAR.
    * I will point to the indicator value, which is
    * set to -1 when the bind variable value is "null".
    for (i = 0; i < bind_dp->F; i++)
    printf ("\nEnter value for bind variable %.*s: ",
    (int)bind_dp->C, bind_dp->S);
    fgets(bind_var, sizeof bind_var, stdin);
    /* Get length and remove the new line character. */
    n = strlen(bind_var) - 1;
    /* Set it in the descriptor. */
    bind_dp->L = n;
    /* (re-)allocate the buffer for the value.
    sqlald() reserves a pointer location for
    V but does not allocate the full space for
    the pointer. */
    bind_dp->V = (char *) realloc(bind_dp->V, (bind_dp->L + 1));
    /* And copy it in. */
    strncpy(bind_dp->V, bind_var, n);
    /* Set the indicator variable's value. */
    if ((strncmp(bind_dp->V, "NULL", 4) == 0) ||
    (strncmp(bind_dp->V, "null", 4) == 0))
    *bind_dp->I = -1;
    else
    *bind_dp->I = 0;
    /* Set the bind datatype to 1 for CHAR. */
    bind_dp->T = 1;
    return;
    void process_select_list()
    int i, null_ok, precision, scale;
    if ((strncmp(dyn_statement, "SELECT", 6) != 0) &&
    (strncmp(dyn_statement, "select", 6) != 0))
    select_dp->F = 0;
    return;
    /* If the SQL statement is a SELECT, describe the
    select-list items. The DESCRIBE function returns
    their names, datatypes, lengths (including precision
    and scale), and NULL/NOT NULL statuses. */
    select_dp->N = MAX_ITEMS;
    EXEC SQL DESCRIBE SELECT LIST FOR S INTO select_dp;
    /* If F is negative, there were more select-list
    items than originally allocated by sqlald(). */
    if (select_dp->F < 0)
    printf ("\nToo many select-list items (%d), maximum is %d\n",
    -(select_dp->F), MAX_ITEMS);
    return;
    /* Set the maximum number of array elements in the
    descriptor to the number found. */
    select_dp->N = select_dp->F;
    /* Allocate storage for each select-list item.
    sqlprc() is used to extract precision and scale
    from the length (select_dp->L).
    sqlnul() is used to reset the high-order bit of
    the datatype and to check whether the column
    is NOT NULL.
    CHAR datatypes have length, but zero precision and
    scale. The length is defined at CREATE time.
    NUMBER datatypes have precision and scale only if
    defined at CREATE time. If the column
    definition was just NUMBER, the precision
    and scale are zero, and you must allocate
    the required maximum length.
    DATE datatypes return a length of 7 if the default
    format is used. This should be increased to
    9 to store the actual date character string.
    If you use the TO_CHAR function, the maximum
    length could be 75, but will probably be less
    (you can see the effects of this in SQL*Plus).
    ROWID datatype always returns a fixed length of 18 if
    coerced to CHAR.
    LONG and
    LONG RAW datatypes return a length of 0 (zero),
    so you need to set a maximum. In this example,
    it is 240 characters.
    printf ("\n");
    for (i = 0; i < select_dp->F; i++)
    char title[MAX_VNAME_LEN];
    /* Turn off high-order bit of datatype (in this example,
    it does not matter if the column is NOT NULL). */
    sqlnul ((unsigned short *)&(select_dp->T), (unsigned short
    *)&(select_dp->T), &null_ok);
    switch (select_dp->T)
    case 1 : /* CHAR datatype: no change in length
    needed, except possibly for TO_CHAR
    conversions (not handled here). */
    break;
    case 2 : /* NUMBER datatype: use sqlprc() to
    extract precision and scale. */
    sqlprc ((unsigned int *)&(select_dp->L), &precision,
    &scale);
    /* Allow for maximum size of NUMBER. */
    if (precision == 0) precision = 40;
    /* Also allow for decimal point and
    possible sign. */
    /* convert NUMBER datatype to FLOAT if scale > 0,
    INT otherwise. */
    if (scale > 0)
    select_dp->L = sizeof(float);
    else
    select_dp->L = sizeof(int);
    break;
    case 8 : /* LONG datatype */
    select_dp->L = 240;
    break;
    case 11 : /* ROWID datatype */
    case 104 : /* Universal ROWID datatype */
    select_dp->L = 18;
    break;
    case 12 : /* DATE datatype */
    select_dp->L = 9;
    break;
    case 23 : /* RAW datatype */
    break;
    case 24 : /* LONG RAW datatype */
    select_dp->L = 240;
    break;
    /* Allocate space for the select-list data values.
    sqlald() reserves a pointer location for
    V but does not allocate the full space for
    the pointer. */
    if (select_dp->T != 2)
    select_dp->V = (char *) realloc(select_dp->V,
    select_dp->L + 1);
    else
    select_dp->V = (char *) realloc(select_dp->V,
    select_dp->L);
    /* Print column headings, right-justifying number
    column headings. */
    /* Copy to temporary buffer in case name is null-terminated */
    memset(title, ' ', MAX_VNAME_LEN);
    strncpy(title, select_dp->S, select_dp->C);
    if (select_dp->T == 2)
    if (scale > 0)
    printf ("%.*s ", select_dp->L+3, title);
    else
    printf ("%.*s ", select_dp->L, title);
    else
    printf("%-.*s ", select_dp->L, title);
    /* Coerce ALL datatypes except for LONG RAW and NUMBER to
    character. */
    if (select_dp->T != 24 && select_dp->T != 2)
    select_dp->T = 1;
    /* Coerce the datatypes of NUMBERs to float or int depending on
    the scale. */
    if (select_dp->T == 2)
    if (scale > 0)
    select_dp->T = 4; /* float */
    else
    select_dp->T = 3; /* int */
    printf ("\n\n");
    /* FETCH each row selected and print the column values. */
    EXEC SQL WHENEVER NOT FOUND GOTO end_select_loop;
    for (;;)
    EXEC SQL FETCH C USING DESCRIPTOR select_dp;
    /* Since each variable returned has been coerced to a
    character string, int, or float very little processing
    is required here. This routine just prints out the
    values on the terminal. */
    for (i = 0; i < select_dp->F; i++)
    if (*select_dp->I < 0)
    if (select_dp->T == 4)
    printf ("%-*c ",(int)select_dp->L+3, ' ');
    else
    printf ("%-*c ",(int)select_dp->L, ' ');
    else
    if (select_dp->T == 3) /* int datatype */
    printf ("%*d ", (int)select_dp->L,
    *(int *)select_dp->V);
    else if (select_dp->T == 4) /* float datatype */
    printf ("%*.2f ", (int)select_dp->L,
    *(float *)select_dp->V);
    else /* character string */
    printf ("%-*.*s ", (int)select_dp->L,
    (int)select_dp->L, select_dp->V);
    printf ("\n");
    end_select_loop:
    return;
    void help()
    puts("\n\nEnter a SQL statement or a PL/SQL block at the SQL> prompt.");
    puts("Statements can be continued over several lines, except");
    puts("within string literals.");
    puts("Terminate a SQL statement with a semicolon.");
    puts("Terminate a PL/SQL block (which can contain embedded
    semicolons)");
    puts("with a slash (/).");
    puts("Typing \"exit\" (no semicolon needed) exits the program.");
    puts("You typed \"?\" or \"help\" to get this message.\n\n");
    int connect_database()
    err_sql = SQL_SUCC;
    EXEC SQL WHENEVER SQLERROR DO sql_error();
    EXEC SQL WHENEVER NOT FOUND DO sql_not_found();
    EXEC SQL CONTEXT ALLOCATE :ctx;
    EXEC SQL CONTEXT USE :ctx;
    EXEC SQL CONNECT :db_uid;
    if(err_sql != SQL_SUCC){
    printf("err => connect database(ctx:%ld, uid:%s) failed!\n", ctx, db_uid);
    return -1;
    return 1;
    int disconnect_database()
    err_sql = SQL_SUCC;
    EXEC SQL WHENEVER SQLERROR DO sql_error();
    EXEC SQL WHENEVER NOT FOUND DO sql_not_found();
    EXEC SQL CONTEXT USE :ctx;
    EXEC SQL COMMIT WORK RELEASE;
    EXEC SQL CONTEXT FREE:ctx;
    return 1;
    void sql_error()
    printf("err => %.*s", sqlca.sqlerrm.sqlerrml, sqlca.sqlerrm.sqlerrmc);
    printf("in \"%.*s...\'\n", oraca.orastxt.orastxtl, oraca.orastxt.orastxtc);
    printf("on line %d of %.*s.\n\n", oraca.oraslnr, oraca.orasfnm.orasfnml,
    oraca.orasfnm.orasfnmc);
    switch(sqlca.sqlcode) {
    case -1: /* unique constraint violated */
    err_sql = SQL_UNIQUE;
    break;
    case -1012: /* not logged on */
    case -1089:
    case -3133:
    case -1041:
    case -3114:
    case -3113:
    /* �6�Ŭ�� shutdown�ǰų� �α��� ���°� �ƴҶ� ��b�� �õ� */
    /* immediate shutdown in progress - no operations are permitted */
    /* end-of-file on communication channel */
    /* internal error. hostdef extension doesn't exist */
    err_sql = SQL_DISCONNECT;
    break;
    case -1400:
    err_sql = SQL_NOTNULL;
    break;
    default:
    err_sql = SQL_ERR;
    break;
    EXEC SQL CONTEXT USE :ctx;
    EXEC SQL WHENEVER SQLERROR CONTINUE;
    EXEC SQL ROLLBACK WORK;
    void sql_not_found()
    err_sql = SQL_NOTFOUND;

    Hi Jane,
    What version of Berkeley DB XML are you using?
    What is your operating system and your hardware platform?
    For how long have been the application running?
    What is your current container size?
    What's set for EnvironmentConfig.setThreaded?
    Do you know if containers have previously not been closed correctly?
    Can you please post the entire error output?
    What's the JDK version, 1.4 or 1.5?
    Thanks,
    Bogdan

  • Processing Messages in WIN32 applications

    Can any one help me ?
    I have developed a multithreaded application for Windows
    using VisualCafe.
    There are two threads in this application.
    The main thread is associated with the main frame
    and it is responsible for user interactions.
    The other thread is used to communicate with hardware;
    it executes commands that require some time to be completed.
    The main thread starts the second thread and
    waits till the second thread is completed :
    Thread mainThread = Thread.currentThread();
    secondThread cfThread = new SecondThread();
    cfThread.start();
    while (! SecondThreadStatus.Finished)
    try
    // ProcessMessages(); !!!!! ?????????
    mainThread.sleep(100);
    catch (InterruptedException e) {
    Class SecondThreadStatus contains static variable Finished
    and is used to check the status of the second thread.
    The problem is that I do not know how to process Windows
    messages. I could not find a procedure like ProcessMessages
    in Java libraries and I do not know how to implement
    ProcessMessages using Java.
    I have developed similar applications using Delphi that work well. The related procedure looks like this :
    procedure WaitForCompletion;
    begin
    while not Finished do begin
    Application.ProcessMessages;
    Sleep(100);
    end;
    end;
    The code for TApplication.ProcessMessages (unit Forms)
    function TApplication.ProcessMessage(var Msg: TMsg): Boolean;
    var
    Handled: Boolean;
    begin
    Result := False;
    if PeekMessage(Msg, 0, 0, 0, PM_REMOVE) then
    begin
    Result := True;
    if Msg.Message <> WM_QUIT then
    begin
    Handled := False;
    if Assigned(FOnMessage) then FOnMessage(Msg, Handled);
    if not IsHintMsg(Msg) and not Handled and
    not IsMDIMsg(Msg) and
    not IsKeyMsg(Msg) and not IsDlgMsg(Msg) then
    begin
    TranslateMessage(Msg);
    DispatchMessage(Msg);
    end;
    end
    else
    FTerminate := True;
    end;
    end;
    procedure TApplication.ProcessMessages;
    var
    Msg: TMsg;
    begin
    while ProcessMessage(Msg) do {loop};
    end;
    Thank you in advance for your advice,
    Dmitri

    I initially used one thread in my application.
    This application may call procedures that
    require some time to be completed;
    these procedures perform hardware related
    commands.Good idea to split these procedures into another thread...
    >
    This application does not respond to user actions
    (pressing buttons etc) after such a procedure
    is called until this procedure is completed.
    The cause of this effect is that application
    does not process messages while this procedure
    is running.What messages are you talking about?
    If you are talking about Windows messages (ie. WM_CLOSE, WM_MINIMIZED, etc) then see my above posts. Java does not use these messages (how could Java be portable across multiple platforms if it did use Windows messages).
    What I think you are saying is that when the intensive tasks are being processed (ie in SecondThread), your application locks up and refuses to respond to clicks, etc.
    What you have done is correct, separate out these tasks into a second worker thread and handle your GUI events in a separate thread as you've shown.
    The following code shows an example. Let me know if it works:
    class MyFrame extends JFrame
    MyRunnable Worker = new MyRunnable();
    public static void main(String[] args)
    MyFrame app = new MyFrame();
    public MyFrame()
    super("Thread Tester");
    this.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent we)
    closeWindow();
    this.setSize(300,200);
    this.show();
    new Thread(Worker).start();
    while(!Worker.isDone())
    Thread.sleep(100); // sleep this thread for 100 ms
    public void closeWindow()
    Worker.stop();
    while(!Worker.isDone()) ; // wait until worker finishes
    // current task
    this.dispose();
    System.exit(0);
    class MyRunnable implements Runnable
    boolean Done = false;
    public boolean isDone() {return Done;}
    boolean Stop = false;
    public void stop() {Stop = true;}
    public void run()
    for(int loop = 0; loop < 1000; loop++)
    if(Stop)
    break;
    // process some long task here...
    Thread.sleep(2000);
    System.out.println("Task # " + loop + " accomplished.");
    Done = true;
    } // void run() method
    } // end class MyRunnable
    } // end class MyFrame
    >
    I allocated the second thread for these hardware
    related procedures in order to enable the main thread
    to process messages.
    But this didn't help. The application does not
    respond to user actions till the second thread is
    stopped.
    I solved this problem in Delphi calling procedure
    ProcessMessages, you may see my code.
    But I do not know what I should do in Java.
    Dmitri

  • StuckThead on Process.waitfor

    Version Weblogic 9.2.1
    OS: Solaris 10
    We are encountering StuckThread when we are execing out to a process from within a MessageDrivenBean. The error seems to occur after high volume of JMS messages to the queue (around 3000 in a hour time frame). The stack trace of the Stuck Thread indicates the Process.waitFor is the reason for the stuck thread.
    The type of processes that we are execing out too are:
    - UNIX command "file" to determine file type
    - McAfee virus scanning
    It then appears that the JMS server restarts but the messages pending on the JMS queue are lost. We are using non-persistant queues and are required for other reasons. Using persistant queues is not an option.
    Any information on how to resolve is greatly appreciated.
    Below is the snippet of code.
    public int execProcess(String args[])
         int lProcRetVal = -1;
         if (args.length < 1)
         myLogger.error("No Command to Be executed");
         return lProcRetVal;
         try
         Runtime rt = Runtime.getRuntime();
         Process proc = rt.exec(args);
         // Gets an inputstream to read error messages from
         // if there are any error message,
         StreamGobbler errorGobbler =
    new StreamGobbler(proc.getErrorStream(), "ERROR");
         // Gets an inputstream to read stdout messages from
         // the process if there is any output.
         StreamGobbler outputGobbler =
    new StreamGobbler(proc.getInputStream(), "OUTPUT");
         // NOTE: To passes data to the process use the
         // processes method proc.getOutputStream
         // Which returns an Output Stream to write to.
         // kick them off
         errorGobbler.start();
         outputGobbler.start();
         // IF the process succeeded then returns 0 any error???
         lProcRetVal = proc.waitFor();
         } catch (IOException ioe)
                   SevereSystemException se = new SevereSystemException(
                             ErrorCodes.PROCESS_EXEC_PROCESS,
                             ErrorCodes.PROCESS_EXEC_ERROR, ioe);
                   throw se;
         catch (InterruptedException ie) {
                   WarningSystemException wse = new WarningSystemException(
                             ErrorCodes.PROCESS_EXEC_PROCESS,
                             ErrorCodes.PROCESS_EXEC_ERROR, ie);
                   wse.createLog();
         return lProcRetVal;
    }

    You probably need to consume the output of your script before waiting. The script has filled its output buffer and is waiting for your app to empty it. The app is waiting for the script to finish. This article discusses this and other problems using exec():
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html
    HTH
    Graeme

  • Hey Guys. safari keeps crashing on my macbook retina- any ideas on how to fix this? thanks! Process:               Safari [446] Path:                  /Applications/Safari.app/Contents/MacOS/Safari Identifier:            com.apple.Safari Version:

    here is the crash log..
    Process:               Safari [446]
    Path:                  /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:            com.apple.Safari
    Version:               8.0.2 (10600.2.5)
    Build Info:            WebBrowser-7600002005000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Safari [446]
    User ID:               501
    Date/Time:             2014-12-21 00:30:06.145 -0500
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        39C4FC0C-6355-B881-4D2A-5FF9A0423C76
    Time Awake Since Boot: 130 seconds
    Crashed Thread:        12
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
        __TEXT                 00000001024a4000-00000001024a5000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff8f41552e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f41469f mach_msg + 55
    2   com.apple.CoreGraphics         0x00007fff8e2397e5 _CGSGetPortStreamInline + 144
    3   com.apple.CoreGraphics         0x00007fff8e2395f1 CGSSnarfAndDispatchDatagrams + 148
    4   com.apple.CoreGraphics         0x00007fff8e239459 CGSGetNextEventRecordInternal + 92
    5   com.apple.CoreGraphics         0x00007fff8e239349 CGEventCreateNextEvent + 50
    6   com.apple.HIToolbox           0x00007fff85390770 PullEventsFromWindowServerOnConnection(unsigned int, unsigned char, __CFMachPortBoost*) + 102
    7   com.apple.HIToolbox           0x00007fff853906d5 MessageHandler(__CFMachPort*, void*, long, void*) + 51
    8   com.apple.CoreFoundation       0x00007fff8a1ca9e7 __CFMachPortPerform + 247
    9   com.apple.CoreFoundation       0x00007fff8a1ca8d9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    10  com.apple.CoreFoundation       0x00007fff8a1ca84b __CFRunLoopDoSource1 + 475
    11  com.apple.CoreFoundation       0x00007fff8a1bc3c7 __CFRunLoopRun + 2375
    12  com.apple.CoreFoundation       0x00007fff8a1bb838 CFRunLoopRunSpecific + 296
    13  com.apple.HIToolbox           0x00007fff8538843f RunCurrentEventLoopInMode + 235
    14  com.apple.HIToolbox           0x00007fff853880be ReceiveNextEventCommon + 179
    15  com.apple.HIToolbox           0x00007fff85387ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    16  com.apple.AppKit               0x00007fff90b676d1 _DPSNextEvent + 964
    17  com.apple.AppKit               0x00007fff90b66e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    18  com.apple.Safari.framework     0x0000000102526ad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    19  com.apple.AppKit               0x00007fff90b5ae23 -[NSApplication run] + 594
    20  com.apple.AppKit               0x00007fff90b462d4 NSApplicationMain + 1832
    21  libdyld.dylib                 0x00007fff8b2c95c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8f41b22e kevent64 + 10
    1   libdispatch.dylib             0x00007fff8b29fa6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8f41a946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ff924a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff8f41a946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ff924a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8f41a946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ff924a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8f41a946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ff924a1 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_platform.dylib       0x00007fff90b20d01 _platform_memcmp + 33
    1   libsqlite3.dylib               0x00007fff86cf60cb vdbeRecordCompareString + 235
    2   libsqlite3.dylib               0x00007fff86c5714c sqlite3BtreeMovetoUnpacked + 732
    3   libsqlite3.dylib               0x00007fff86c466df sqlite3VdbeExec + 76111
    4   libsqlite3.dylib               0x00007fff86c32457 sqlite3_step + 775
    5   com.apple.WebCore             0x00000001040d6bc9 WebCore::SQLiteStatement::step() + 73
    6   com.apple.WebCore             0x0000000104727a2c WebCore::IconDatabase::checkIntegrity() + 108
    7   com.apple.WebCore             0x00000001040d6314 WebCore::IconDatabase::performOpenInitialization() + 116
    8   com.apple.WebCore             0x00000001040d59b5 WebCore::IconDatabase::iconDatabaseSyncThread() + 325
    9   com.apple.JavaScriptCore       0x0000000103292a9f ***::wtfThreadEntryPoint(void*) + 15
    10  libsystem_pthread.dylib       0x00007fff8ff942fc _pthread_body + 131
    11  libsystem_pthread.dylib       0x00007fff8ff94279 _pthread_start + 176
    12  libsystem_pthread.dylib       0x00007fff8ff924b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff8f41a946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ff924a1 start_wqthread + 13
    Thread 8:: Dispatch queue: com.apple.root.default-qos
    0   libsystem_kernel.dylib         0x00007fff8f41556a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8b2a3c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.StoreFoundation     0x00007fff89e5b6fd -[ISServiceProxy performSynchronousBlock:withServiceName:protocol:isMachService:interfaceClassNa me:] + 273
    3   com.apple.StoreFoundation     0x00007fff89e5b7d1 -[ISServiceProxy accountServiceSynchronousBlock:] + 52
    4   com.apple.CommerceKit         0x00007fff84ca118c -[CKAccountStore primaryAccount] + 137
    5   com.apple.Safari.framework     0x0000000102a9e7ca __51-[WBSParsecSearchClient _fetchStoreFrontIdentifier]_block_invoke + 68
    6   libdispatch.dylib             0x00007fff8b2a1323 _dispatch_call_block_and_release + 12
    7   libdispatch.dylib             0x00007fff8b29cc13 _dispatch_client_callout + 8
    8   libdispatch.dylib             0x00007fff8b29f88f _dispatch_root_queue_drain + 935
    9   libdispatch.dylib             0x00007fff8b2adfe4 _dispatch_worker_thread3 + 91
    10  libsystem_pthread.dylib       0x00007fff8ff946cb _pthread_wqthread + 729
    11  libsystem_pthread.dylib       0x00007fff8ff924a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff8f41a946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ff924a1 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff8f41552e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f41469f mach_msg + 55
    2   com.apple.QuartzCore           0x00007fff93d0cd63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore           0x00007fff93d0cc96 thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff8ff942fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8ff94279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8ff924b1 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8f41552e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f41469f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8a1bcb14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8a1bbfdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8a1bb838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8ecc3d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff85a07b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8ff942fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8ff94279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8ff924b1 thread_start + 13
    Thread 12 Crashed:
    0   libsystem_pthread.dylib       0x00007fff8ff92695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib             0x00007fff8fc26b78 vfprintf_l + 28
    2   libsystem_c.dylib             0x00007fff8fc1f620 fprintf + 186
    3   ???                           0x000000010b3e65dc 0 + 4483605980
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff761841d8  rcx: 0x00007fff761841f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff761841f0  rsi: 0x00007fff8ff92b14  rbp: 0x000000010aeeae30  rsp: 0x000000010aeeadb0
       r8: 0x000000010aeed000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff761836b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff8ff92695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x1024a4000 -        0x1024a4fff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
           0x1024b0000 -        0x102de9ff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
           0x103288000 -        0x10379bff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
           0x103901000 -        0x103bb5fff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
           0x103e91000 -        0x103e91fff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
           0x103e9d000 -        0x103fd9ffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
           0x1040d1000 -        0x105076ff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
           0x10aee2000 -        0x10aee2fef +cl_kernels (???) <51073EE2-1DDB-4CF0-98B3-B46FA43E34B7> cl_kernels
           0x10aef0000 -        0x10aef0ff5 +cl_kernels (???) <B3F9739F-E683-4605-AF78-41ACF3ACFD0F> cl_kernels
           0x10aef2000 -        0x10afd8fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
        0x7fff6dfe1000 -     0x7fff6e017837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff847fe000 -     0x7fff84ae5ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff84c89000 -     0x7fff84c8afff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff84c8d000 -     0x7fff84cbbff7  com.apple.CommerceKit (1.2.0 - 376.0.5) <651BD237-2055-3D9D-8B12-8A4474D26AC1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff84cbc000 -     0x7fff84f24ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff84f25000 -     0x7fff84f46fff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff84f7e000 -     0x7fff84fe5ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff84fe6000 -     0x7fff84fe9fff  libScreenReader.dylib (390.2) <96ACAA49-21B6-3D10-ADF8-FF6C8F22FD9F> /usr/lib/libScreenReader.dylib
        0x7fff84fea000 -     0x7fff85001ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8504f000 -     0x7fff8531eff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8535a000 -     0x7fff8565cfff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8565d000 -     0x7fff8566dff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff85679000 -     0x7fff856a9ffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff856aa000 -     0x7fff856b7ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff85829000 -     0x7fff85830fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff85831000 -     0x7fff85907ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff85908000 -     0x7fff8590cfff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8590d000 -     0x7fff8599eff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff8599f000 -     0x7fff85ccdff7  com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85d2b000 -     0x7fff85d2cfff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff85d94000 -     0x7fff85e0afe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff85e0b000 -     0x7fff85f76ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85f77000 -     0x7fff85f79ff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff85f7a000 -     0x7fff8600bfff  com.apple.SoftwareUpdate.framework (6 - 744) <4EBCE244-C676-3228-BF4B-645B143C1B97> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff86077000 -     0x7fff86088fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff860b0000 -     0x7fff86124fff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff8617d000 -     0x7fff8617dfff  com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8617e000 -     0x7fff8621fff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff86220000 -     0x7fff86236ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff86251000 -     0x7fff86491ff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff86492000 -     0x7fff864baffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff864bb000 -     0x7fff86549ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8654a000 -     0x7fff86557fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff86a81000 -     0x7fff86acdfff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff86ace000 -     0x7fff86afafff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
        0x7fff86b24000 -     0x7fff86b47ff7  com.apple.framework.familycontrols (4.1 - 410) <41499068-0AB2-38CB-BE6A-F0DD0F06AB52> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff86b48000 -     0x7fff86b4cff7  libGIF.dylib (1231) <B3D2DF96-A67D-31EA-9A1B-E870B54855EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff86ba8000 -     0x7fff86bc4ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff86bc5000 -     0x7fff86bc9fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff86bca000 -     0x7fff86d10fef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff86d68000 -     0x7fff86d98fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff86d99000 -     0x7fff86eabff7  libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff86f12000 -     0x7fff86f1aff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff86f1b000 -     0x7fff86f1bfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff86f1c000 -     0x7fff86f26fff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff86f27000 -     0x7fff86f32ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
        0x7fff8706e000 -     0x7fff87080fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff870e9000 -     0x7fff87111fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff87112000 -     0x7fff871cdff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff871ce000 -     0x7fff872f0ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff872f1000 -     0x7fff872f2fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff87308000 -     0x7fff87322ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff87323000 -     0x7fff87323fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff87324000 -     0x7fff87326ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff87327000 -     0x7fff8732bfff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8732c000 -     0x7fff87330ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff87331000 -     0x7fff873bafff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff873bb000 -     0x7fff873cafff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff873cb000 -     0x7fff8743ffff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff87440000 -     0x7fff87442fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff87443000 -     0x7fff87446fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff87447000 -     0x7fff8753bff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8753c000 -     0x7fff875aaffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff875ab000 -     0x7fff87606fef  libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff87607000 -     0x7fff876c6fff  com.apple.backup.framework (1.6.1 - 1.6.1) <A7BBE57D-D5E7-39DD-812C-31190159F679> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff877e0000 -     0x7fff8793eff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8793f000 -     0x7fff87941ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff87942000 -     0x7fff8794bfff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff87964000 -     0x7fff87979fff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff8797a000 -     0x7fff87999fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff879c2000 -     0x7fff87df2fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff87df3000 -     0x7fff87e2dffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff87e2e000 -     0x7fff87eddfe7  libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87ede000 -     0x7fff87ee6ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff87ee7000 -     0x7fff87ef5fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff87ef6000 -     0x7fff87ef6fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff87ef7000 -     0x7fff88212fcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff882a2000 -     0x7fff882bcff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff882bd000 -     0x7fff884a2267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff884a3000 -     0x7fff884e9ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff884ea000 -     0x7fff884ecffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff884ed000 -     0x7fff884f4ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff88ab4000 -     0x7fff88abafff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff88abb000 -     0x7fff88abffff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff88ac0000 -     0x7fff88b06ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff88b07000 -     0x7fff88b0ffff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88b10000 -     0x7fff88b10ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff88da8000 -     0x7fff88dabff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff88db6000 -     0x7fff88db8fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff88db9000 -     0x7fff88decff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff88ded000 -     0x7fff88df0fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88eb0000 -     0x7fff88ecdfff  com.apple.DistributionKit (700 - 920) <079B0A4A-97CD-34D6-B50D-AB5D656B2A38> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff88ece000 -     0x7fff88f42ff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff88f43000 -     0x7fff88f6bfff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff88f6c000 -     0x7fff88f98fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff88f99000 -     0x7fff89037fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff89038000 -     0x7fff890a9ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff890aa000 -     0x7fff890bcff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff890bd000 -     0x7fff890c0ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff890c1000 -     0x7fff891b1fef  libJP2.dylib (1231) <FEAF6F38-736E-35A8-A983-F4531C8A821C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff891b2000 -     0x7fff891b4fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff891b5000 -     0x7fff891c0ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff894ab000 -     0x7fff894b0ffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff894b1000 -     0x7fff894b1fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff894b2000 -     0x7fff894beff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff894bf000 -     0x7fff89550fff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff89568000 -     0x7fff89584fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff89585000 -     0x7fff89619fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8961a000 -     0x7fff8962eff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8962f000 -     0x7fff89639ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8963a000 -     0x7fff8968bff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8968c000 -     0x7fff89a99ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff89b15000 -     0x7fff89b1cff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff89b1d000 -     0x7fff89b6afff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff89b6d000 -     0x7fff89e15ff7  com.apple.RawCamera.bundle (6.02 - 768) <3156D0F8-335C-3380-A849-D47ED4163D3A> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff89e21000 -     0x7fff89e7ffff  com.apple.StoreFoundation (1.0 - 1) <50F9E283-FCE4-306C-AF5D-D0AEA434C04E> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
        0x7fff89fb5000 -     0x7fff89fceff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff89fcf000 -     0x7fff8a023fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8a024000 -     0x7fff8a026fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8a027000 -     0x7fff8a02cff7  com.apple.ServerInformation (2.0 - 1) <020F4A0E-F1A2-38AE-8F2B-22200CF1FC82> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8a02d000 -     0x7fff8a07aff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8a0a9000 -     0x7fff8a0e4fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8a0e5000 -     0x7fff8a0ecfff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8a0ed000 -     0x7fff8a145ff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff8a146000 -     0x7fff8a149fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8a14a000 -     0x7fff8a4e0fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8ae27000 -     0x7fff8ae4bfef  libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8ae4c000 -     0x7fff8aeabff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8aeac000 -     0x7fff8aec2ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8aec3000 -     0x7fff8aec9fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8aeca000 -     0x7fff8afbcff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8afbf000 -     0x7fff8afcdff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff8afce000 -     0x7fff8afd0ff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8afd9000 -     0x7fff8b11dff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8b11e000 -     0x7fff8b129ff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8b12a000 -     0x7fff8b242ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8b243000 -     0x7fff8b291fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff8b29b000 -     0x7fff8b2c5ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8b2c6000 -     0x7fff8b2c9ff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff8b319000 -     0x7fff8b33cfff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8b33d000 -     0x7fff8b397ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8b3aa000 -     0x7fff8b3aefff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff8b444000 -     0x7fff8b629ff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff8b65d000 -     0x7fff8b6a7fff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8b6a8000 -     0x7fff8b6d8ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8bf67000 -     0x7fff8c097fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8c098000 -     0x7fff8c09afff  libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8c09b000 -     0x7fff8c0ddfff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff8c0de000 -     0x7fff8c0f8ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff8c0f9000 -     0x7fff8c0fdfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8c165000 -     0x7fff8c166ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8c167000 -     0x7fff8c187fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8c188000 -     0x7fff8c193ff7  com.apple.CommerceCore (1.0 - 376.0.5) <57E5C067-52F6-3854-86C0-D878EDA24B55> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8c194000 -     0x7fff8c1e7ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8c213000 -     0x7fff8c24bffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff8c24c000 -     0x7fff8c267ff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8c26b000 -     0x7fff8c26cff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8c26d000 -     0x7fff8c350fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c3f3000 -     0x7fff8c475fff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8c50e000 -     0x7fff8c5a4ffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c5a5000 -     0x7fff8c5e0fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8c5e1000 -     0x7fff8c6beff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8c6d4000 -     0x7fff8c6d6ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff8c73b000 -     0x7fff8c7aafff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d129000 -     0x7fff8d134ff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8d135000 -     0x7fff8d50cfe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8d50d000 -     0x7fff8d544ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8d545000 -     0x7fff8da31fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8da32000 -     0x7fff8dd9dfff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8dd9e000 -     0x7fff8ddc7ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8ddd7000 -     0x7fff8de08fff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
        0x7fff8de0a000 -     0x7fff8de0afff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8de18000 -     0x7fff8df0afff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8df0b000 -     0x7fff8df0dff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff8e01c000 -     0x7fff8e030ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8e031000 -     0x7fff8e036ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8e037000 -     0x7fff8e03ffe7  libcldcpuengine.dylib (2.4.5) <DF810F9A-1755-3283-82C3-D8192BCD8016> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8e18b000 -     0x7fff8e1e6fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8e1ed000 -     0x7fff8e207ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8e208000 -     0x7fff8ea41ff3  com.apple.CoreGraphics (1.600.0 - 772) <936D081F-37B3-3DA3-B725-118D0B07DDD2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8ea42000 -     0x7fff8ea82ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8eabf000 -     0x7fff8eadbff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff8ec1a000 -     0x7fff8ec22fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8ec23000 -     0x7fff8ee26ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8ee27000 -     0x7fff8ee4dff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8ee4e000 -     0x7fff8ee4efff  com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8ee4f000 -     0x7fff8ef76fff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8efa6000 -     0x7fff8efa7fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8efa8000 -     0x7fff8f222fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8f273000 -     0x7fff8f280fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff8f281000 -     0x7fff8f3b3ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8f3b4000 -     0x7fff8f3c2ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8f3c3000 -     0x7fff8f3ddff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8f3de000 -     0x7fff8f3e4ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8f3f9000 -     0x7fff8f403ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f404000 -     0x7fff8f421fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8f45f000 -     0x7fff8f46afff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8f46b000 -     0x7fff8f511fff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8f512000 -     0x7fff8f52dfff  com.apple.PackageKit.PackageUIKit (3.0 - 434) <BE4B6C6F-4A32-3DB1-B81B-EF9ADD70E6EA> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff8f52e000 -     0x7fff8f566fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8f567000 -     0x7fff8f5b4ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8f813000 -     0x7fff8f9a1fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8fb09000 -     0x7fff8fb5aff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8fb5b000 -     0x7fff8fb61ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8fb62000 -     0x7fff8fb63ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8fb64000 -     0x7fff8fb8fff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff8fb90000 -     0x7fff8fb9efff  libIASAuthReboot.dylib (920) <B165E345-197F-3DC7-A52B-64C34FD95D0A> /usr/lib/libIASAuthReboot.dylib
        0x7fff8fb9f000 -     0x7fff8fbb2ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff8fbb3000 -     0x7fff8fbe1fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8fbe2000 -     0x7fff8fc6efff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff8fc6f000 -     0x7fff8fc86fff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8fc87000 -     0x7fff8fc8cfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8fc8d000 -     0x7fff8fcaaffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8fcab000 -     0x7fff8fcacfff  libquit.dylib (182) <62510786-F686-3AC4-B315-D05A4B7A896F> /usr/lib/libquit.dylib
        0x7fff8fcad000 -     0x7fff8fd2eff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8fd53000 -     0x7fff8fd80fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8fd99000 -     0x7fff8fdc8fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8fdc9000 -     0x7fff8fe06ff3  com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8fe07000 -     0x7fff8fe50ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8fe51000 -     0x7fff8fe55fff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8fe56000 -     0x7fff8fe61fff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8fe62000 -     0x7fff8fe62fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <01E92F9F-EF29-3745-8631-AEA692F7F29C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8fe99000 -     0x7fff8fea4fdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8fea5000 -     0x7fff8feadffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff8ff8e000 -     0x7fff8ff90fff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8ff91000 -     0x7fff8ff9afff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8ffa4000 -     0x7fff8ffc8ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff90631000 -     0x7fff90639fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff9063a000 -     0x7fff90643ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff9067d000 -     0x7fff90712ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff90754000 -     0x7fff907c0fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff907c5000 -     0x7fff907c5ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff907c6000 -     0x7fff90843fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff90844000 -     0x7fff90845fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff90846000 -     0x7fff90851ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff90852000 -     0x7fff90884ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff908b5000 -     0x7fff90b1fff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff90b20000 -     0x7fff90b28fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff90b29000 -     0x7fff90b30fff  libCGCMS.A.dylib (772) <E64D

    There is no need to download anything to solve this problem.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • I've been (attempting) to follow Linc's ideas to fix my Mail app that quits without having time to select mailboxes, etc. Here's my report:Process:         Mail [3780] Path:            /Applications/Mail.app/Contents/MacOS/Mail Identifier:      com.apple.

    Process:         Mail [3780]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.5 (1508)
    Build Info:      Mail-1508000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [147]
    User ID:         501
    Date/Time:       2013-07-13 07:51:28.620 -0500
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          4655 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  912 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      3ADF795F-F3C9-0A58-B102-2FB99F35DC14
    Crashed Thread:  7  Dispatch queue: com.apple.root.default-overcommit-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'MessageCritionNotSupportedException', reason: 'Message criterion MessageCriterion: MatadorCriterion
      Qualifier: (null)
      Expression: ((* = "team*"cdw || kMDItemTextContent = "team*"cdw) && (* = "lead*"cdw || kMDItemTextContent = "lead*"cdw))
      Suggestions originated: 0
    not supported for evaluation'
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8cf8cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8b91b3f0 objc_exception_throw + 43
    2   Message                             0x00007fff94e00119 -[MessageCriterion _evaluateMessage:] + 402
    3   Message                             0x00007fff94e00223 -[MessageCriterion evaluateMessage:] + 43
    4   Message                             0x00007fff94dff86f -[MessageCriterion _evaluateCompoundCriterion:] + 200
    5   Message                             0x00007fff94dfffd7 -[MessageCriterion _evaluateMessage:] + 80
    6   Message                             0x00007fff94e00223 -[MessageCriterion evaluateMessage:] + 43
    7   Message                             0x00007fff94dff86f -[MessageCriterion _evaluateCompoundCriterion:] + 200
    8   Message                             0x00007fff94dfffd7 -[MessageCriterion _evaluateMessage:] + 80
    9   Message                             0x00007fff94dfff7f -[MessageCriterion doesMessageSatisfyRuleEvaluationCriterion:] + 75
    10  Mail                                0x0000000101b0a971 Mail + 2673009
    11  Mail                                0x0000000101b07e8c Mail + 2662028
    12  CoreFoundation                      0x00007fff8cf3eeda _CFXNotificationPost + 2554
    13  Mail                                0x0000000101883af4 Mail + 23284
    14  Message                             0x00007fff94d1b8a4 -[MessageStore messagesWereAdded:conversationsMembers:duringOpen:] + 250
    15  Message                             0x00007fff94d1b679 -[LibraryStore messagesWereAdded:conversationsMembers:duringOpen:] + 81
    16  Message                             0x00007fff94d1b61d -[LibraryIMAPStore propagateMessagesWereAdded:conversationsMembers:duringOpen:] + 39
    17  CoreFoundation                      0x00007fff8cf3eeda _CFXNotificationPost + 2554
    18  Foundation                          0x00007fff939df7b6 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
    19  Mail                                0x000000010187ff75 Mail + 8053
    20  Foundation                          0x00007fff93a4f9cf -[NSBlockOperation main] + 124
    21  Foundation                          0x00007fff93a25926 -[__NSOperationInternal start] + 684
    22  Foundation                          0x00007fff93a2d0f1 __block_global_6 + 129
    23  libdispatch.dylib                   0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    24  libdispatch.dylib                   0x00007fff92d850b6 _dispatch_client_callout + 8
    25  libdispatch.dylib                   0x00007fff92d861fa _dispatch_worker_thread2 + 304
    26  libsystem_c.dylib                   0x00007fff8c558d0b _pthread_wqthread + 404
    27  libsystem_c.dylib                   0x00007fff8c5431d1 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x00007fff9593eeb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x00007fff9593ec52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x00007fff9593eae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff90095533 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x00007fff90094df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit                        0x00007fff9008c1a3 -[NSApplication run] + 517
    11  com.apple.AppKit                        0x00007fff90030bd6 NSApplicationMain + 869
    12  libdyld.dylib                           0x00007fff9604f7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff92fc0d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff92d87dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff92d879ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff934ca0e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff934cc8cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff934e6a7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff934e6961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff934e64f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff94bf5486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff94bfbe14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff94c1e428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff94bf557a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff94bf57eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff94bfaa87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff94bf93b7 -[IMAPConnection executeUIDStore:] + 86
    17  com.apple.IMAP                          0x00007fff94bf0d43 -[IMAPClientUIDStoreOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff94bf49f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff94c07501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff94c06fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff94bebae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff939cc589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff94bee328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff94c0780e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff94c07756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x00007fff94bf1ad6 -[IMAPCommandPipeline failureResponsesFromSendingCommandsWithGateway:responseHandler:highPriority:] + 284
    7   com.apple.MessageFramework              0x00007fff94d4ce62 -[LibraryIMAPStore _waitForDataFromDownload:uid:gateway:] + 411
    8   com.apple.MessageFramework              0x00007fff94d28d09 -[LibraryIMAPStore _fetchBodyDataForMessage:andHeaderDataIfReadilyAvailable:fetchIfNotAvailable:] + 347
    9   com.apple.MessageFramework              0x00007fff94d288d6 -[MessageStore bodyDataForMessage:fetchIfNotAvailable:allowPartial:] + 329
    10  com.apple.IMAP                          0x00007fff94c1a086 -[IMAPMessageWithCache bodyDataFetchIfNotAvailable:allowPartial:] + 197
    11  com.apple.CoreMessage                   0x00007fff93526331 -[MimePart(MessageSupport) parseMimeBodyFetchIfNotAvailable:allowPartial:] + 170
    12  com.apple.MessageFramework              0x00007fff94d284cd -[MessageStore _fetchBodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 231
    13  com.apple.MessageFramework              0x00007fff94d278a0 -[MessageStore bodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 162
    14  com.apple.MessageFramework              0x00007fff94dfecad -[MessageCriterion _evaluateJunkMailCriterion:] + 462
    15  com.apple.MessageFramework              0x00007fff94dfffd7 -[MessageCriterion _evaluateMessage:] + 80
    16  com.apple.MessageFramework              0x00007fff94dfff7f -[MessageCriterion doesMessageSatisfyRuleEvaluationCriterion:] + 75
    17  com.apple.MessageFramework              0x00007fff94e0d6f2 -[MessageRule doesMessageSatisfyCriteria:] + 453
    18  com.apple.MessageFramework              0x00007fff94e05807 +[MessageRouter putRulesThatWantsToHandleMessage:intoArray:colorRulesOnly:] + 499
    19  com.apple.MessageFramework              0x00007fff94e072f2 -[MessageRouter routeMessages:fromStores:] + 2225
    20  com.apple.MessageFramework              0x00007fff94e1442f -[MessageStore routeMessages:isUserAction:] + 123
    21  com.apple.IMAP                          0x00007fff94c12028 -[IMAPMailboxSyncEngine _processResponsesWithMonitor:] + 1709
    22  com.apple.IMAP                          0x00007fff94c11552 -[IMAPMailboxSyncEngine _goWithMessages:] + 858
    23  com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    24  com.apple.MessageFramework              0x00007fff94d31826 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    25  com.apple.MessageFramework              0x00007fff94d31688 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    26  com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    27  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    28  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    29  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    30  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    31  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    32  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    33  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    34  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    35  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    36  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    37  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff939dbb79 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff94bfd4c8 -[IMAPConnectionPool checkInConnection:forGateway:] + 50
    4   com.apple.IMAP                          0x00007fff94c065f2 __51-[IMAPGateway _tryToCheckInConnectionAndTryToIdle:]_block_invoke_0 + 313
    5   com.apple.Foundation                    0x00007fff93a4f9cf -[NSBlockOperation main] + 124
    6   com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    7   com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    8   libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    12  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff92fc06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c558f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c558d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff92fc06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c558f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c558d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 7 Crashed:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8c557b54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8c59bdce abort + 143
    3   libc++abi.dylib                         0x00007fff8c51f9eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff8c51d39a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8b91b873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff929fa8fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8b91b5de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff92d850ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff939dbb79 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff94bfd4c8 -[IMAPConnectionPool checkInConnection:forGateway:] + 50
    4   com.apple.IMAP                          0x00007fff94c065f2 __51-[IMAPGateway _tryToCheckInConnectionAndTryToIdle:]_block_invoke_0 + 313
    5   com.apple.Foundation                    0x00007fff93a4f9cf -[NSBlockOperation main] + 124
    6   com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    7   com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    8   libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    12  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 9:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff934ca0e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff934cc8cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff934e6a7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff934e6961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff934e64f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff94bf5486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff94bfbe14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff94c1e428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff94bf557a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff94bf57eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff94bfaa87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff94bf7ad0 -[IMAPConnection executeLogin:] + 63
    17  com.apple.IMAP                          0x00007fff94be6107 -[IMAPClientLoginOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff94bf49f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff94c07501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff94c06fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff94bebae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 10:: -[MFAosImapAccount _fetchUnreadCountsCheckForNewMessages:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff94c0bcaa -[IMAPMailboxSyncEngine _copyDataSource] + 32
    3   com.apple.IMAP                          0x00007fff94c11227 -[IMAPMailboxSyncEngine _goWithMessages:] + 47
    4   com.apple.MessageFramework              0x00007fff94d3cc66 -[LibraryIMAPStore _retrieveNewMessagesForCheckingNewMail:] + 237
    5   com.apple.MessageFramework              0x00007fff94d31a63 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 626
    6   com.apple.MessageFramework              0x00007fff94d3d8f5 -[IMAPAccount _fetchUnreadCountsForMailboxUid:recursively:gateway:checkForNewMessages:] + 725
    7   com.apple.MessageFramework              0x00007fff94d3d258 -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:] + 417
    8   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    10  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    11  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    12  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    13  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 11:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff94c0bcaa -[IMAPMailboxSyncEngine _copyDataSource] + 32
    3   com.apple.IMAP                          0x00007fff94c11227 -[IMAPMailboxSyncEngine _goWithMessages:] + 47
    4   com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    5   com.apple.MessageFramework              0x00007fff94d31826 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    6   com.apple.MessageFramework              0x00007fff94d31688 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    7   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 12:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff939cc589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff94bee328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff94c0780e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff94c07756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x00007fff94c14146 -[IMAPMailboxSyncEngine _fetchUidsAndFlagsWithMonitor:] + 1924
    7   com.apple.IMAP                          0x00007fff94c115a3 -[IMAPMailboxSyncEngine _goWithMessages:] + 939
    8   com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    9   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    11  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    12  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    13  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    14  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    15  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    16  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    18  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    19  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    20  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 13:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff94c11311 -[IMAPMailboxSyncEngine _goWithMessages:] + 281
    3   com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    4   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    5   com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    6   com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    7   com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    8   com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    9   com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    10  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    11  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    12  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    14  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    15  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 14:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff94c0bcaa -[IMAPMailboxSyncEngine _copyDataSource] + 32
    3   com.apple.IMAP                          0x00007fff94c11227 -[IMAPMailboxSyncEngine _goWithMessages:] + 47
    4   com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    5   com.apple.MessageFramework              0x00007fff94d31826 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    6   com.apple.MessageFramework              0x00007fff94d31688 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    7   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 15:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc002a __open_nocancel + 10
    1   libsystem_c.dylib                       0x00007fff8c5a8a8b __opendir2$INODE64 + 45
    2   libsystem_c.dylib                       0x00007fff8c5aa7b0 scandir$INODE64 + 33
    3   com.apple.MessageFramework              0x00007fff94d33243 mf_scandir + 61
    4   com.apple.MessageFramework              0x00007fff94d332bb mf_scandir + 181
    5   com.apple.MessageFramework              0x00007fff94d332bb mf_scandir + 181
    6   com.apple.MessageFramework              0x00007fff94d332bb mf_scandir + 181
    7   com.apple.MessageFramework              0x00007fff94e339ce -[MFFilesystemWatcher registerPath:] + 168
    8   com.apple.MessageFramework              0x00007fff94d330d1 -[LibraryIMAPStore cacheDirectoryContents] + 131
    9   com.apple.IMAP                          0x00007fff94c1538e -[IMAPMailboxSyncEngine _cacheMessagesWithMonitor:] + 1109
    10  com.apple.IMAP                          0x00007fff94c115d5 -[IMAPMailboxSyncEngine _goWithMessages:] + 989
    11  com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    12  com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    13  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    14  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    15  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    16  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    17  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    18  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    19  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    20  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    21  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    22  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    23  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff934ca0e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff934cc8cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff934e6a7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff934e6961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff934e64f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff94bf5486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff94bfbe14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff94c1e428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff94bf557a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff94bf57eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff94bfaa87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff94bfa3d1 -[IMAPConnection executeFetch:] + 44
    17  com.apple.IMAP                          0x00007fff94be7ee2 -[IMAPClientFetchOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff94bf49f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff94c07501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff94c06fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff94bebae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 17:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_c.dylib                       0x00007fff8c544cfc OSAtomicCompareAndSwap64Barrier$VARIANT$mp + 8
    1   libsystem_c.dylib                       0x00007fff8c55bdb4 pthread_mutex_lock + 463
    2   com.apple.CoreMessage                   0x00007fff9353eea9 -[SafeValueCache retainedValue] + 22
    3   com.apple.CoreMessage                   0x00007fff9353edf7 -[SafeValueCache value] + 17
    4   com.apple.MessageFramework              0x00007fff94df45de -[MailboxUid _URLStringIsSyncable:] + 57
    5   com.apple.CoreFoundation                0x00007fff8cf9e3ed -[NSArray arrayByApplyingSelector:] + 429
    6   com.apple.MessageFramework              0x00007fff94d06758 +[Library _getActiveAccountURLs:andActiveMailboxURLs:] + 960
    7   com.apple.MessageFramework              0x00007fff94cef16a +[Library executeBlock:isWriter:useTransaction:isPrivileged:] + 280
    8   com.apple.MessageFramework              0x00007fff94d103c1 +[Library sendMessagesMatchingQuery:to:options:] + 398
    9   com.apple.MessageFramework              0x00007fff94d0c952 +[Library sendMessagesMatchingCriterion:to:options:] + 1677
    10  com.apple.MessageFramework              0x00007fff94d0c16c +[Library messagesMatchingCriterion:options:] + 119
    11  com.apple.MessageFramework              0x00007fff94d43b7d +[LibraryStore filterMessages:throughSmartMailbox:] + 685
    12  com.apple.MessageFramework              0x00007fff94e6ea6c __block_global_2 + 165
    13  com.apple.CoreFoundation                0x00007fff8cf788a9 __NSDictionaryEnumerate + 1081
    14  com.apple.MessageFramework              0x00007fff94e6e998 __62-[_NonContentSmartMailboxUnreadCountManager _messagesChanged:]_block_invoke_0 + 147
    15  com.apple.Foundation                    0x00007fff93a4f9cf -[NSBlockOperation main] + 124
    16  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    17  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    18  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    19  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    21  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff93a317ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff939ca1aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff934cad57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff93a2c562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff8c5567a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8c5431e1 thread_start + 13
    Thread 19:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff92fc0322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8cf6df46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8c5567a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8c5431e1 thread_start + 13
    Thread 20:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff939cc589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff94bee328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff94c0780e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff94bf79aa -[IMAPConnection _loginWithUsername:password:] + 692
    6   com.apple.IMAP                          0x00007fff94bf6c75 -[IMAPConnection _authenticateWithAuthenticator:] + 850
    7   com.apple.CoreMessage                   0x00007fff934e6295 -[Connection authenticate] + 598
    8   com.apple.IMAP                          0x00007fff94bf6830 -[IMAPConnection authenticate] + 66
    9   com.apple.MessageFramework              0x00007fff94d9dfd9 -[IMAPAccount connectAndAuthenticate:] + 1058
    10  com.apple.IMAP                          0x00007fff94bffd5d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    11  com.apple.IMAP                          0x00007fff94bfde39 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    12  com.apple.MessageFramework              0x00007fff94d1c695 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    13  com.apple.MessageFramework              0x00007fff94d1c2a0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    14  com.apple.MessageFramework              0x00007fff94d3791a -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 115
    15  com.apple.MessageFramework              0x00007fff94d37498 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 126
    16  com.apple.MessageFramework              0x00007fff94d373b3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    17  com.apple.MessageFramework              0x00007fff94d33c1f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    18  com.apple.MessageFramework              0x00007fff94d338b3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    19  com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    20  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    21  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    22  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    23  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    24  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    25  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    26  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    27  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    28  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    29  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    30  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 21:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff934ca0e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff934cc58c -[_NSSocket connectToHost:withPort:] + 814
    7   com.apple.CoreMessage                   0x00007fff934e53ae -[Connection connectDiscoveringBestSettings:] + 1191
    8   com.apple.MessageFramework              0x00007fff94d9ddad -[IMAPAccount connectAndAuthenticate:] + 502
    9   com.apple.IMAP                          0x00007fff94bffd5d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    10  com.apple.IMAP                          0x00007fff94bfde39 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    11  com.apple.MessageFramework              0x00007fff94d1c695 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    12  com.apple.MessageFramework              0x00007fff94d1c2a0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    13  com.apple.MessageFramework              0x00007fff94d3db39 -[IMAPAccount _namespacePrefixesForPrivate:public:shared:] + 177
    14  com.apple.MessageFramework              0x00007fff94d374d3 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 185
    15  com.apple.MessageFramework              0x00007fff94d373b3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    16  com.apple.MessageFramework              0x00007fff94d33c1f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    17  com.apple.MessageFramework              0x00007fff94d338b3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    18  com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    19  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    20  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    21  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    22  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    23  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    24  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    25  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    26  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    27  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    28  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    29  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 22:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff939dbb79 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff94bed1e7 __56-[IMAPClientOperationQueue _postDelayedActivityFinished]_block_invoke_0 + 116
    4   libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    5   libdispatch.dylib                       0x00007fff92d8729b _dispatch_source_invoke + 691
    6   libdispatch.dylib                       0x00007fff92d86305 _dispatch_queue_invoke + 72
    7   libdispatch.dylib                       0x00007fff92d861c3 _dispatch_worker_thread2 + 249
    8   libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    9   libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff92fc06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c558f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c558d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 24:: -[IMAPMailboxSyncEngine _goWithMessagesIfNeeded:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib     

    Back up all data.
    Try the steps suggested on this page. if the problem isn't solved that way, continue as below.
    In the Finder, hold down the option key and select
    Go ▹ Library
    from the menu bar. Move the following items from the folder that opens to the Trash (some may not exist):
    Caches/com.apple.mail
    Saved Application State/com.apple.mail.savedState
    Leave the Finder window open for now.
    Try to launch Mail. If the problem is solved, you’re done. Otherwise, move these items, if they exist, from the open Library folder to the Desktop:
    Application Support/AddressBook/MailRecents-v4.abcdmr
    Containers/com.apple.mail
    Preferences/com.apple.mail.plist
    Preferences/com.apple.mail.searchhistory.plist
    Try Mail again. If it launches, you'll have to recreate some of your settings. Delete the items you moved to the Desktop.
    If Mail still doesn't work, put the items you moved to the Desktop back where they were. You don’t need to replace the items you moved to the Trash.
    Move the subfolder named "Mail" — not the Mail application — from the Library folder to the Desktop.
    Test. If Mail now launches, it will prompt you to set up an account. Cancel and restore the Mail folder from the most recent backup you have that predates the issue. A corrupt database is causing the problem.
    If there’s no improvement, put back the Mail folder and post your results.

  • My notes has crashed.  i made a guest account and it is fine there.  Here is the info on the crash screen.  Please help, Process:         Notes [377] Path:            /Applications/Notes.app/Contents/MacOS/Notes Identifier:      com.apple.Notes Version:

    My notes has crashed and here is the printout.  It works fine in a guest account I created.
    Please help
    Process:         Notes [377]
    Path:            /Applications/Notes.app/Contents/MacOS/Notes
    Identifier:      com.apple.Notes
    Version:         1.5 (107)
    Build Info:      Notes-107000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [186]
    User ID:         501
    Date/Time:       2013-08-18 22:07:25.392 -0700
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          8448 sec
    Crashes Since Last Report:           24
    Per-App Interval Since Last Report:  34 sec
    Per-App Crashes Since Last Report:   24
    Anonymous UUID:                      14E94F91-30E8-3221-31AA-EC9E86F52275
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: retain
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x000000010e6a2710 objc_msgSend_vtable13 + 16
    1   com.apple.CoreFoundation                0x000000010e8fd1de +[__NSArrayI __new:::] + 174
    2   com.apple.CoreFoundation                0x000000010e8694d3 -[NSArray initWithObjects:] + 707
    3   com.apple.WebKit                        0x000000010e425035 -[WebHTMLView(WebPrivate) _setAsideSubviews] + 133
    4   com.apple.WebKit                        0x000000010e4251eb -[WebHTMLView drawRect:] + 363
    5   com.apple.Notes                         0x000000010dbdcc04 0x10dbc4000 + 101380
    6   com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    7   com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    8   com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    9   com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    10  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    11  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    12  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    13  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    14  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    17  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    18  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    19  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    20  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    21  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    22  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    23  com.apple.AppKit                        0x000000010f731322 -[NSAnimationManager animationTimerFired:] + 2256
    24  com.apple.Foundation                    0x000000010ebad463 __NSFireTimer + 96
    25  com.apple.CoreFoundation                0x000000010e835804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    26  com.apple.CoreFoundation                0x000000010e83531d __CFRunLoopDoTimer + 557
    27  com.apple.CoreFoundation                0x000000010e81aad9 __CFRunLoopRun + 1529
    28  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    29  com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    30  com.apple.Notes                         0x000000010dbe9d3e 0x10dbc4000 + 154942
    31  com.apple.Notes                         0x000000010dbe9b55 0x10dbc4000 + 154453
    32  com.apple.Notes                         0x000000010dbe9528 0x10dbc4000 + 152872
    33  com.apple.Notes                         0x000000010dbe9591 0x10dbc4000 + 152977
    34  com.apple.Notes                         0x000000010dbdc9e8 0x10dbc4000 + 100840
    35  com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    36  com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    37  com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    38  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    39  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    40  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    41  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    42  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    43  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    44  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    45  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    46  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    47  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    48  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    49  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    50  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    51  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    52  com.apple.AppKit                        0x000000010f7b81cc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    53  com.apple.AppKit                        0x000000010fd83901 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01208 + 46
    54  com.apple.CoreFoundation                0x000000010e83f417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    55  com.apple.CoreFoundation                0x000000010e83f381 __CFRunLoopDoObservers + 369
    56  com.apple.CoreFoundation                0x000000010e81a7b8 __CFRunLoopRun + 728
    57  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    58  com.apple.HIToolbox                     0x00000001113ceeb4 RunCurrentEventLoopInMode + 209
    59  com.apple.HIToolbox                     0x00000001113ceb94 ReceiveNextEventCommon + 166
    60  com.apple.HIToolbox                     0x00000001113ceae3 BlockUntilNextEventMatchingListInMode + 62
    61  com.apple.AppKit                        0x000000010f7b5533 _DPSNextEvent + 685
    62  com.apple.AppKit                        0x000000010f7b4df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    63  com.apple.AppKit                        0x000000010f7ac1a3 -[NSApplication run] + 517
    64  com.apple.AppKit                        0x000000010f750bd6 NSApplicationMain + 869
    65  libdyld.dylib                           0x0000000110a177e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000110bedd16 kevent + 10
    1   libdispatch.dylib                       0x00000001109e0dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00000001109e09ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd84dc4 -[IMAPConnection separatorChar] + 116
    7   com.apple.IMAP                          0x000000010dd839e8 -[IMAPConnection _authenticateWithAuthenticator:] + 197
    8   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    9   com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    10  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    11  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    12  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    13  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    14  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    15  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    16  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    17  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    18  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    20  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd83039 -[IMAPConnection _fetchCapabilitiesIfNeeded] + 262
    7   com.apple.IMAP                          0x000000010dd82c30 -[IMAPConnection capabilities] + 33
    8   com.apple.IMAP                          0x000000010dd839d0 -[IMAPConnection _authenticateWithAuthenticator:] + 173
    9   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    10  com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    11  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    12  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    13  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    14  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    15  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    16  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    17  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    18  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    19  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    21  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x000000010eb6d1aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x000000010dc40d57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd84f8f -[IMAPConnection executeListOrLSub:] + 215
    17  com.apple.IMAP                          0x000000010dd765ae -[IMAPClientListOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x000000010eb70453 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.Notes                         0x000000010dbc9cf0 0x10dbc4000 + 23792
    4   com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    5   com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    6   com.apple.Foundation                    0x000000010ec1c2a7 -[_NSCFURLProtocolBridgeWithTrampoline processEventQ] + 279
    7   com.apple.Foundation                    0x000000010ec1c8b8 -[_NSCFURLProtocolBridgeWithTrampoline pushEvent:from:] + 180
    8   com.apple.Foundation                    0x000000010ec1d0aa -[_NSCFURLProtocolBridge start] + 98
    9   com.apple.Foundation                    0x000000010ec1e09c _bridger + 65
    10  com.apple.CFNetwork                     0x0000000112384376 URLProtocol_Classic::_protocolInterface_startLoad(_CFCachedURLResponse const*) + 74
    11  com.apple.CFNetwork                     0x000000011232b589 ___private_ScheduleOriginLoad_block_invoke_0108 + 157
    12  com.apple.CFNetwork                     0x000000011232b4ba __withExistingProtocolAsync_block_invoke_0 + 28
    13  com.apple.CFNetwork                     0x00000001123caf3a __block_global_1 + 28
    14  com.apple.CoreFoundation                0x000000010e816154 CFArrayApplyFunction + 68
    15  com.apple.CFNetwork                     0x000000011232b2b4 RunloopBlockContext::perform() + 124
    16  com.apple.CFNetwork                     0x000000011232b18b MultiplexerSource::perform() + 221
    17  com.apple.CoreFoundation                0x000000010e7f7b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    18  com.apple.CoreFoundation                0x000000010e7f7455 __CFRunLoopDoSources0 + 245
    19  com.apple.CoreFoundation                0x000000010e81a7f5 __CFRunLoopRun + 789
    20  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    21  com.apple.Foundation                    0x000000010eb71546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    22  com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    23  libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    24  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 12:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x0000000110bed322 __select + 10
    1   com.apple.CoreFoundation                0x000000010e859f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001173cfb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00000001175f2bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 17:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.QuartzCore                    0x000000010f17f17b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x000000010f203dc6 thread_fun + 25
    4   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 18:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd8310b -[IMAPConnection executeCapability:] + 42
    17  com.apple.IMAP                          0x000000010dd79bc8 -[IMAPClientCapabilityOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x3000000000000000  rbx: 0x00007f7ffe8b7390  rcx: 0x3000000000000000  rdx: 0x000000010ea1a180
      rdi: 0x00007f7ffd6b21d0  rsi: 0x000000010e9e5640  rbp: 0x00007fff52031600  rsp: 0x00007fff520315b8
       r8: 0x000000011aebaa00   r9: 0x000000010e9ff4d0  r10: 0x00007f7ffbc19d30  r11: 0x00007f7ffe8b7380
      r12: 0x0000000000000001  r13: 0x00007fff52031610  r14: 0x000000010ea14110  r15: 0x00007f7ffd6b21d0
      rip: 0x000000010e6a2710  rfl: 0x0000000000010246  cr2: 0x00007f7ffe8eb0af
    Logical CPU: 0
    Binary Images:
           0x10dbc4000 -        0x10dc07fff  com.apple.Notes (1.5 - 107) <69EAB705-A00B-3584-91C6-F532B94806F9> /Applications/Notes.app/Contents/MacOS/Notes
           0x10dc2d000 -        0x10dc2efff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10dc3a000 -        0x10dc3afff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10dc3e000 -        0x10dcf6fff  com.apple.CoreMessage (6.5 - 1508) <E05A89F9-46AB-310C-B147-8B1E89C5A565> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
           0x10dd71000 -        0x10ddd0fff  com.apple.IMAP (6.5 - 1508) <42C96BC0-5E8B-38CC-BA03-BE32A7115521> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
           0x10de10000 -        0x10de4afff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x10de7f000 -        0x10deedff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10df1e000 -        0x10df60ff7  com.apple.Notes.framework (1.5 - 107) <A665344C-A62E-33EE-A0F3-66959EB4D12E> /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes
           0x10df96000 -        0x10df96fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10df99000 -        0x10e26aff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10e39e000 -        0x10e3d2fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10e403000 -        0x10e403fff  SleepServices (1.46) <A49C34BF-A696-3266-BCC1-D0788853D626> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
           0x10e408000 -        0x10e40afff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10e40f000 -        0x10e59afff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10e690000 -        0x10e691ff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
           0x10e69b000 -        0x10e7b392f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x10e7d3000 -        0x10e7d5fff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10e7da000 -        0x10e7dafff  com.apple.CoreServices (57 - 57) <45F1466A-8264-3BB7-B0EC-E5E5BFBED143> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10e7de000 -        0x10e7e0fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10e7e5000 -        0x10e9cfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10eb33000 -        0x10eb33fff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10eb39000 -        0x10ee98fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10f0bb000 -        0x10f0bdfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x10f0c2000 -        0x10f270fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10f329000 -        0x10f55eff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10f660000 -        0x11028dfff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x110982000 -        0x110984fff  pwauxprop.so (387.2) <F29F2067-8A39-3BDC-B1CA-9FC7C3470675> /usr/lib/sasl2/pwauxprop.so
           0x110989000 -        0x11098efff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x110993000 -        0x110995fff  smb_nt.so (169) <757409B3-32F6-3FA1-97A4-92FEEF9FD624> /usr/lib/sasl2/smb_nt.so
           0x11099a000 -        0x1109a8fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x1109b5000 -        0x1109b5ff7  com.apple.SafariServices.framework (8536 - 8536.30.1) <2EB5365E-7D56-3283-89BB-AF6ED10F6D73> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
           0x1109bb000 -        0x1109c0fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x1109c8000 -        0x1109cffff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x1109d6000 -        0x1109d6fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <89F59707-91A2-387B-9415-ABD5D92D1776> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
           0x1109dc000 -        0x1109f1ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x110a0a000 -        0x110a0bff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x110a15000 -        0x110a18ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x110a1f000 -        0x110a1ffff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x110a25000 -        0x110a2dfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x110a37000 -        0x110a3dfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x110a45000 -        0x110a47fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x110a4c000 -        0x110a4dfff  libodfde.dylib (18) <46A5538E-3719-3BE8-AD13-537930B4082C> /usr/lib/libodfde.dylib
           0x110a53000 -        0x110a54ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x110a5a000 -        0x110a5bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x110a62000 -        0x110b2eff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x110b77000 -        0x110b7fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x110b8b000 -        0x110bc1ff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
           0x110bdb000 -        0x110bf6ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x110c09000 -        0x110c37ff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
           0x110c46000 -        0x110c54ff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
           0x110c66000 -        0x110c71fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x110c81000 -        0x110c82ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x110c8d000 -        0x110c8fff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
           0x110c96000 -        0x110c9cff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x110ca8000 -        0x110ccaff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x110ce9000 -        0x110d38ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x110d49000 -        0x110d95ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x110db2000 -        0x110dd7ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x110e0a000 -        0x110e72ff7  libc++.1.dylib (65.1) <E5A0C88E-0837-3015-A987-F8C5A0D35DD6> /usr/lib/libc++.1.dylib
           0x110ecb000 -        0x110f0eff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x110f46000 -        0x111098fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x111128000 -        0x111128ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x111132000 -        0x11119fff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1111dc000 -        0x1112fcfff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x11136f000 -        0x11169ffff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1117fa000 -        0x111804fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <5A4B532E-3428-3F0A-8032-B0AFFF72CA3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x11180e000 -        0x111810fff  com.apple.Notes.webplugin (1.5 - 107) <F7192C71-204F-312E-94F1-50E701287E91> /Applications/Notes.app/Contents/PlugIns/Notes.webplugin/Contents/MacOS/Notes
           0x111815000 -        0x111a15fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x111abb000 -        0x111bb8ff7  libxml2.2.dylib (22.3) <7FD09F53-83DA-3ECD-8DD9-870E1A2F0427> /usr/lib/libxml2.2.dylib
           0x111bf1000 -        0x111c03ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x111c09000 -        0x111c0aff7  ATSHI.dylib (341.1) <6852B534-7542-338A-903F-26615745901F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x111c0f000 -        0x111cd4ff7  com.apple.coreui (2.0 - 181.1) <7C4196D5-79E8-3557-963B-71F494DC9B04> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x111d4a000 -        0x111dadff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x111dd4000 -        0x111ddafff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x111de8000 -        0x111de9fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x111def000 -        0x111e05fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x111e15000 -        0x111e3cff7  com.apple.PerformanceAnalysis (1.16 - 16) <1BDA3662-18B7-3F38-94E5-9ACD477A7682> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x111e5f000 -        0x111e76fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x111e87000 -        0x111e96fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x111ea0000 -        0x111f72ff7  com.apple.CoreText (260.0 - 275.16) <990F3C7D-EEF1-33C4-99D6-8E81C96ED3E3> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x111fd9000 -        0x1120f2fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x112151000 -        0x11222bfff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x1122ae000 -        0x112423ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x1124e7000 -        0x112538ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x11256d000 -        0x11258eff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
           0x11259e000 -        0x1125a2ff7  com.apple.TCC (1.0 - 1) <76A86876-2280-3849-8478-450E1A8C0E01> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x1125ac000 -        0x112615fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x112681000 -        0x112694ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x1126a0000 -        0x11279dfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x1127b8000 -        0x1127c7ff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
           0x1127d3000 -        0x1127d7fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x1127e1000 -        0x1127e1fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x1127e5000 -        0x1127f2fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x1127fc000 -        0x112b13ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x112b92000 -        0x112c13fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x112c6d000 -        0x112d13ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x112d7a000 -        0x112e07ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <54A8069C-E497-3B07-BEA7-D3BC9DB5B649> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x112e4e000 -        0x112eadfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x112eda000 -        0x112f8bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x112fe4000 -        0x113015ff7  com.apple.DictionaryServices (1.2 - 184.4) <2EC80C71-263E-3D63-B461-6351C876C50D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x11303b000 -        0x113042fff  com.apple.NetFS (5.0 - 4.0) <195D8EC9-72BB-3E04-A64D-E1A89B4850C1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x113049000 -        0x113057ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x113061000 -        0x11306eff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x113080000 -        0x113097fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1130b3000 -        0x1130defff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x1130ee000 -        0x113115fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x113136000 -        0x1131d4ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x113208000 -        0x113b984af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x113ca0000 -        0x113d20ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <AFDC05E6-F842-33D9-9379-81DF26E510CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x113d52000 -        0x113e0fff7  com.apple.ColorSync (4.8.0 - 4.8.0) <73BE495D-8985-3B88-A7D0-23DF0CB50304> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x113e55000 -        0x113eabfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x113ee1000 -        0x113ef4ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x113f08000 -        0x113f62fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x113f96000 -        0x113fd5ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/Ap

    Here goes:
    Hardware Information:
              MacBook Pro (Retina, 13-inch, Early 2013)
              MacBook Pro - model: MacBookPro10,2
              1 3 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 768 MB
    System Software:
              OS X 10.8.4 (12E55) - Uptime: 0 days 1:25:41
    Disk Information:
              APPLE SSD SM512E disk0 : (500.28 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.42 GB (458.41 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Microsoft Microsoft® Nano Transceiver v2.0
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. FaceTime HD Camera (Built-in)
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
    Launch Agents:
    User Launch Agents:
    User Login Items:
              iTunesHelper
    3rd Party Preference Panes:
              Flash Player
              Java
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
              SlingPlayer.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   2%          WindowServer
                   1%          EtreCheck
                   1%          fontd
                   1%          Mail
                   0%          Safari
                   0%          ManagedClient
                   0%          WebProcess
                   0%          SystemUIServer
                   0%          System Events
                   0%          configd
    Top Processes by Memory:
              352 MB             Finder
              319 MB             WebProcess
              213 MB             Mail
              213 MB             Safari
              164 MB             WindowServer
              115 MB             Dock
              106 MB             Messages
              66 MB              mds
              57 MB              SystemUIServer
              49 MB              com.apple.dock.extra
    Virtual Memory Statistics
              3.96 GB            Free RAM
              2.18 GB            Active RAM
              256 MB             Inactive RAM
              1.60 GB            Wired RAM
              198 MB             Page-ins
              0 B                Page-outs

  • How to configure ENV and DB for multithreaded application?

    Hi,
    From document, I know DB_THREAD must be checked for both ENV and DB, but , I don't know which one is best choice for multithreaded application while facing DB_INIT_LOCK and DB_INIT_CDB. In my application, there maybe multi readers and writers at the same time, should I use DB_INIT_LOCK instead of DB_INIT_CDB? what other flags should I use?
    DB_INIT_CDB provides multiple reader/single writer access while DB_INIT_LOCK should be used when multiple processes or threads are going to be reading and writing a Berkeley DB database.
    Thanks for your seggestions and answers.

    Thanks for the explanation,
    The Berkeley DB Concurrent Data Store product
    allows for multiple reader/single writer access
    to a database. This means that at any point in time,
    there may be either multiple readers accessing a
    database or a single writer updating the database.
    Berkeley DB Concurrent Data Store is intended for
    applications that need support for concurrent updates
    to a database that is largely used for reading.
    If you are looking to support multiple readers and
    multiple writers then take a look at the Transactional
    Data Store product
    (http://download.oracle.com/docs/cd/E17076_02/html/programmer_reference/transapp.html)
    In this case the Environment is typically opened with:
    DB_INIT_MPOOL, DB_INIT_LOCK, DB_INIT_LOG, and DB_INIT_TXN.
    Let me know if I missed any of your question.
    Thanks,
    Sandra

  • Problem while dowloading the file from Application Server

    Dear Experts,
                 I am facing the Problem while downloading the file from Application server.
    We done the automatic function while saving the invoice, this will create an idoc, and this idoc is written in the Application Server.
    I am running the Transaction AL11 and select the record, and from menu --> List, i am downloading into TXT format.
    But for some segments, the length is long, and so the last 3 to 4 fields values are not appearing in the File. Even though i am unable to view the values in the file before downloading. But i can view in IDOC.
    Please help me to solve this issue.
    Thanks & Regards,
    Srini

    but our user will use the Txn. AL11 and they will download from there
    Educate the user On a serious note, tell him this is not how data from app server should be downloaded. You can ask him to talk to the basis team to provide him access to the app server folder where the file is being stored.
    I can set the Variant and put this in background, But always the file name will be change, Like we use Time stamp in the File name.
    You can't automate this process by scheduling in BG mode. This is because the in BG mode you can't dwld the file to presentation server.
    Hope i'm clear.
    BR,
    Suhas

  • Using time() function in multithreaded application

    I am using time() function in a multithreaded application with NULL argument for getting current time.
    Some time it's observed that we get a time one minute earlier than current time (3600 seconds).
    Is there a problem in the usage of the function?
    I am using expression : currenttime = time(NULL);
    I had seen some people using following way - time(&currenttime );
    Will above two behaves differently in multithreaded environment?
    [I  am using  Sun C++ 5.5 compiler on Solaris 8]

    How do you compare actual time against the time seen by your threads? If your threads are printing the value from time(2) to stdout, it's possible that you're seeing an artifact of thread scheduling and/or output buffering.
    I really doubt that you have a concurrency problem, but anyway make sure that you include the -mt option on your compile line:
    CC -mt blahblahblah...

  • Process  Error in the Application Monitor

    Dear All
    we currently have the below shown Process  Error in the Application Monitor. it is absolutely impossible to delete them.
    What can cause this problem, please I need a solution on how to remove them for ever.
    Application Monitors
    Shopping Cart 
    Shopping Cart :  Not transferred to backend 
    Date  Time  Error Message 
    26.03.2011  00:29:36    
    26.03.2011  01:29:36    
    Shopping Cart :  Backend application errors 
    Date  Time  Error Message 
    25.03.2011  12:22:06
    Kind Regards
    Marco

    Hi,
    Try to locate the error in RZ20 transaction and delete it from there, then refresh your application monitor.
    regards,
    MRao

  • Dup2 after fork in multithreaded application

    I am working on a multithreaded application (C++) that must create several
    Java processes and capture their output though pipes.
    For a single threaded application, I know it is possible to call dup2 (in the child)
    after the fork to set up the proper connections.
    I am aware that it is not safe to make particular function calls between a fork
    and an exec. Is dup2 a call that is known to be safe?
    If not, is there a better alternative?
    Thanks.

    I'm using Oracle 10g2 on Windows Server 2003 on a Dell PowerEdge 1850 server.
    Both threads run the same code. Each thread performs multiple database queries though.
    This query is performed first:
    update my_table set my_data_processed='true' where my_data_processed='false' and rownum=1 returning my_index into :x
    Then the query with the getBlob is performed with <some_number> = my_index.
    Some background info: I have a lot of data in my_table that needs a very slow operation performed on the my_data blob in each row. I will eventually run this application on multiple servers in parallel and need a way to determine the next row that hasn't been processed yet then process it.
    The table is
    create table my_table (
    my_index int,
    my_data_processed varchar(10),
    my_data blob
    -Glen

  • How to Debug C++ Multithreaded Application in Solaris

    Hi All,
    I am working in Solaris Sparc 5.8 Machine. I need to debug Multithreaded C++ Application in Unix Environment.
    I am using dbx debugger.
    Please explain me how to debug multithreaded applications. if possible please explain me with example.
    Thanks in Advance.
    Thanks & Regards,
    Vasu

    1. Look over the dbx manual that comes with Sun Studio. Dbx includes many features for debugging MT code.
    2. If you have specific questions after reading the manual and trying out the features, ask them in the debugger forum:
    http://forum.sun.com/forum.jspa?forumID=257

Maybe you are looking for

  • How to get different values in drop down in  table rows

    Hi I have an application, which has a drop down in the table. Each row is to have different values in its drop down based on the "characteristic" parameter. For eg. first row has characteristic as color, and the corresponding drop down will contain t

  • Problem repairing disk permissions

    Hey all, I'm trying to help a friend with a sick macbook I think it's a pro, but I definitely know he's running OS 10.5. I tried to repair his disk permissions in the Disk Utility, and I keep getting the same three messages- "ACL found but not expect

  • Pga_aggregate_target  and hash_join cost (anomalies)

    Hi, I've got some performance issues with queries using bind variables (BVP + histograms = evil). I did some test cases in test environment where the only difference with PROD was pga_aggregate_target . And was able to make plan changes w/o changing

  • Weblogic 10.2 :Authentication denied: Boot identity not valid

    Weblogic 10.2 ,Windows xp prof I have only one admin server (portal domain) and my application is targetted to admin server only. When I am startting my server the server is stopped forcedly with following exception. If any have same kind of problem

  • SAP Management Console - Remote System Management

    When I fire up my SAP Management Console (mmc plugin), I can see my locally installed instance for starting and stopping.  Can I use the plugin to manage a remote machine? Thanks!