A strange problem of using jbuilder6&weblogic6.1 to develop EJB

I just use jbuilder create an blank EJB, without add anything,then I begin to compile��when it excute "run ejbc on west.jar",there are some errors:
"west.ejbgrpx": <2002-5-14 AM 02:46:35> <Warning> <EJB> <EJB Deployment: west has a class www.westBean which is in the classpath. This class should only be located in the ejb-jar file.>
"west.ejbgrpx": <2002-5-14 AM 02:46:35> <Warning> <EJB> <EJB Deployment: west has a class www.westHome which is in the classpath. This class should only be located in the ejb-jar file.>
"west.ejbgrpx": <2002-5-14 AM 02:46:35> <Warning> <EJB> <EJB Deployment: west has a class www.west which is in the classpath. This class should only be located in the ejb-jar file.>
"west.ejbgrpx": ERROR: Error from ejbc: ERROR: The classes which ejbc generated from your home and remote interfaces cannot be loaded. Please ensure that you have set the -d option to a writeable directory.
"west.ejbgrpx": ERROR: ejbc found errors
but a few days ago,it works very well, Then i change the ejb server weblogic6.1 to borland application server,there is no problem during compiling.
Please help me,Thank you very much!

You have probably some space in your TEMP,TMP or CLASSPATH environments variable. ejbc don't like these spaces at all, so you have to move your libraries and code in order to remove these spaces.

Similar Messages

  • Strange problem about using JSTL

    Dear all,
    I've got a strange proble when using JSTL with tomcat.
    I've got two strings as the following:
         String id_string = (String)session.getAttribute("user_id");
         System.out.println(id_string);
         String valid_user = (String)session.getAttribute("valid_user");
    The "println" call tells me that "id_string" has a valid value.
    But when I use it like this in the same page:
    <a href="springapp/blog.htm?id=<c:out value=${ id_string " /><c:out value="${ valid_user }" />" >test
    I can only get "valid_user"'s value.
    "id_string" is not print out to the page.
    Would anyone please help me out?
    Any help would appreciated and thanks in advance.
    Edited by: haoniukun on Sep 15, 2007 9:57 PM

    haoniukun wrote:
         String id_string = (String)session.getAttribute("user_id");
    <a href="springapp/blog.htm?id=<c:out value=${ id_string " /><c:out value="${ valid_user }" />" >test
    I can only get "valid_user"'s value.
    "id_string" is not print out to the page.Your session attribute is called "user_id" which you're fetching correctly earlier. But in the <c:out> tag, you're trying to read "id_string" which is the name of your local variable and not in any scope. "valid_user" works because you've named your local variable the same as your scope attribute, so the value being printed out is from the scope and not your local variable. As far as I know, JSTL doesn't work with local scriptlet variables, it only access variables in the four scopes: page, request, session and application
    You should use the <c:set> tag to set a variable value. Try not to mix scriptlets and tags, it's frowned upon and will probably cause you problems later.

  • Strange Problem: cannot save public report as a developer

    HI all,
    I've testing an application in apex.oracle.com.
    Several days ago I started to have a strange problem with my application. I don't know what has been changed but I can't save the Interactive reports as a developer. The app doesn't display the button "apply" to save the changes, and in the design view  of the report the "Save public report authorization" select list is greyed.
    Is there anyone that knows where is this permission managed?
    Thanks in advance

    To choose an authorization scheme under "Save Public Report Authorization", you first must check the "Save Public Report" checkbox under "Include in Actions Menu".
    Note that both the "Save Report" as well as the "Save Public Report" option work for authenitcated pages only.
    Regards,
    Vincent Deelen

  • Strange problem when using custom authentication schema

    Hello,
    I'm building a custom authentication system for the application. Basically, I followed the blog post from Martin: http://www.talkapex.com/2009/03/custom-authentication-status.html
    However, the authentication seems working fine at the beginning when running the page 101 from Application Builder and log in, but when I log out from the application (redirect back to page 101) and try to log in with the same credentials, it gives error message "Invalid Login Credentials ". Also, when the application is accessed from public (open page 101 directly using another computer), the authentication doesn't work at all.
    Furthermore, I checked the table apex_workspace_access_log and found out that it has "AUTH_SUCCESS" even if using the fake credentials and the login failed (I use "apex_util.set_authentication_result (p_code => 3);" when auth function return false).
    I couldn't find the cause of the problem, then I created the same custom authentication in apex.oracle.com. The problem doesn't appear anymore. To make sure they are same, I have double checked the custom authentication in both the development environment and the apex.oracle.com.
    This is very strange to me and I don't know where to looking for the problem. Could you give me some advice of what may cause this problem. Thanks in advance!

    I found the problem myself. The cause is the VPD, the account table has VPD policy applied, which prevented public access.

  • Strange problem when using table of object (plsql as webservice)

    Hello..
    I have created this type of package with user "A" which has privilege to create db types and other things
    CREATE OR REPLACE package INIS_PROD.OZP_SKLEP_INTEGRACIJA AS
    procedure p_vrni_predloge
    ( p_vvl_id             in number
    , p_predloga           out t_predloga);
    end OZP_SKLEP_INTEGRACIJA;
    =============================
    procedure p_vrni_predloge
    ( p_vvl_id             in number
    , p_predloga           out t_predloga) is
        l_tab           t_predloga := t_predloga();
        l_obj           o_predloga := o_predloga(null,null,null,null);
    begin
        for pod in
            select  to_number(zia.isk_id) id
            ,       to_number(voz.vvl_id) VRSTA_VOZILA_ID
            ,       to_char(vka_tip.vrednost) opis
            ,       to_char(vka_tip.sifra) sifra
            from    ......
        loop
            print(pod.id);
            l_tab.extend(1);
            l_tab(l_tab.LAST) := o_predloga(pod.id, pod.vrsta_vozila_id, pod.opis, pod.sifra);
        end loop;
        p_predloga := l_tab;
    end;When I expose this package as webservice with user/password from user "A" all works fine..
    When I change the username and password in jdev connection and running (invoke) the webservice I get this exception
    arget URL -- http://pujsapepa:8991/WsIntegracija-WsIntegracija-context-root/wsIntegracijaSoapHttpPort
    11/01/27 12:53:40 Oracle Containers for J2EE 10g (10.1.3.4.0)  initialized
    11/01/27 12:53:40 Web service wsIntegracija has been started on the embedded server
    27.1.2011 12:53:43 oracle.wireless.its.ra.TelnetResourceAdapter run
    INFO: Industrial Telnet Server version: Version 10.1.3.0.0 started-up successfully.
    11/01/27 12:54:03 java.sql.SQLException: Internal Error
    11/01/27 12:54:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    11/01/27 12:54:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
    11/01/27 12:54:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:240)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.initCollElemTypeName(OracleTypeCOLLECTION.java:985)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.getAttributeType(OracleTypeCOLLECTION.java:1015)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleNamedType.getFullName(OracleNamedType.java:96)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeADT.createStructDescriptor(OracleTypeADT.java:2108)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeADT.unpickle81(OracleTypeADT.java:1414)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeUPT.unpickle81UPT(OracleTypeUPT.java:422)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeUPT.unpickle81rec(OracleTypeUPT.java:383)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle81_imgBody_elems(OracleTypeCOLLECTION.java:915)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle81_imgBody(OracleTypeCOLLECTION.java:882)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle81(OracleTypeCOLLECTION.java:702)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION._unlinearize(OracleTypeCOLLECTION.java:227)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.unlinearize(OracleTypeCOLLECTION.java:199)
    11/01/27 12:54:03      at oracle.sql.ArrayDescriptor.toOracleArray(ArrayDescriptor.java:563)
    11/01/27 12:54:03      at oracle.sql.ARRAY.getOracleArray(ARRAY.java:526)
    11/01/27 12:54:03      at oracle.jpub.runtime.MutableArray.getLazyOracleArray(MutableArray.java:1239)
    11/01/27 12:54:03      at oracle.jpub.runtime.MutableArray.length(MutableArray.java:1167)
    11/01/27 12:54:03      at in2.TPredloga.getArray(TPredloga.java:81)
    11/01/27 12:54:03      at in2.WsIntegracijaUser.pVrniPredloge(WsIntegracijaUser.java:25)
    11/01/27 12:54:03      at in2.runtime.WsIntegracijaSoapHttp_Tie.invoke_pVrniPredloge(WsIntegracijaSoapHttp_Tie.java:111)
    11/01/27 12:54:03      at in2.runtime.WsIntegracijaSoapHttp_Tie.processingHook(WsIntegracijaSoapHttp_Tie.java:234)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:297)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:413)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:277)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:134)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194)
    11/01/27 12:54:03      at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    11/01/27 12:54:03      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    11/01/27 12:54:03      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    11/01/27 12:54:03      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    11/01/27 12:54:03      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    11/01/27 12:54:03      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
    11/01/27 12:54:03      at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
    11/01/27 12:54:03      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
    11/01/27 12:54:03      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    11/01/27 12:54:03      at java.lang.Thread.run(Thread.java:595)
    27.1.2011 12:54:03 oracle.webservices.serviceI have made all grants and public synonym from A to user B.. but the problem still exists..
    What can be a problem?

    Huh..
    after two days...
    The problem is in wrapper Class for T_PREDLOGA...
    There was not specified the schema where the "T_PREDLOGA" was created.. The strange thing is that i have a public synonym for T_PREDLOGA for all users.. (not just for INIS_PROD).
    Here is the solution (adding schema name)
    __sJT_st.registerOutParameter(2, 2003, "INIS_PROD.T_PREDLOGA");
    instead of
    __sJT_st.registerOutParameter(2, 2003, "T_PREDLOGA");
      public void _pVrniPredloge (
        java.math.BigDecimal P_VVL_ID,
        TPredloga P_PREDLOGA[], Connection __onnScopeMethod)
      throws java.sql.SQLException
        java.sql.Connection __sJT_cc = null;
        oracle.jdbc.OracleCallableStatement __sJT_st=null;
        __sJT_cc = __onnScopeMethod;
        __sJT_st = (oracle.jdbc.OracleCallableStatement) __sJT_cc.prepareCall("BEGIN \"OZP_SKLEP_INTEGRACIJA\".P_VRNI_PREDLOGE(:1 ,:2 ); END;");
        if (P_VVL_ID==null) __sJT_st.setNull(1, 2); else __sJT_st.setBigDecimal(1, P_VVL_ID);
        __sJT_st.registerOutParameter(2, 2003, "INIS_PROD.T_PREDLOGA");
        __sJT_st.executeUpdate();
        P_PREDLOGA[0] = (TPredloga) __sJT_st.getORAData(2, TPredloga.getORADataFactory());
        try { __sJT_st.close(); } catch (Exception e) {}
      }Edited by: Peterv6i on Jan 28, 2011 1:59 PM

  • NIO: Strange problem when using ByteBuffer with non-blocking SocketChannel

    Hi,
    I have a server that uses multiplexed, non-blocking I/O with java.nio. When a client connects, the server waits for the message: <system cmd="knock"/>, returns a message and disconnects the client. The clients are shortly serviced in less than a second.
    But the server newer receive anything from about 20% of the clients - even though it is sent. Or with other words: it is received and the data is contained in the ByteBuffer - SocketChannel.read(ByteBuffer) - but a call to ByteBuffer.remaing() returns 0 !!
    ByteBuffer receiveBuf = ByteBuffer.allocate(65536);
    receiveBuf.clear(); // the code is elsewhere used for longer living clients
    int readBytes = channel.read(receiveBuf);
    receiveBuf.flip();
    StringBuffer sb = new StringBuffer();
    System.out.println(" * Remaining: "+receiveBuf.remaining()); // writes: ' * Remaining: 0'
    System.out.println(" * Received: "+new String(receiveBuf.array())); // writes: ' * Received: <system cmd="knock"/>'
    while(receiveBuf.remaining() >= 2) {
      byte b = receiveBuf.get();
      sb.append((char)b);
    System.out.println(" * sb content: "+sb.toString()); // writes: ' * sb content: 'The ByteBuffer clearly receives the correct data, but the ByteBuffer.remaining() returns 0 and therefore the StringBuffer will never have any content.
    The problem seems to occur randomly and for about 20% of the clients (simulated from the same computer and therefore has the same bandwidth and so on).
    Anyone knows what is going on, and how to solve the problem !?

    It's always possible in any read that the number of bytes read is less than the number of bytes requested. You need to keep reading until you have got everything you expected, and cope with every possible error condition on each iteration.
    EJP

  • A strange problem when using GlobalApp

    After installing workshop on a new computer, I cannot run my application locally anymore. I use a variable in GlobalApp to store a value from my parent flow before I start a nested flow. Like this:
    globalApp.userCredentials = userCred;
    globalApp.userFullName = userCred.getUserFullName();
    In the nested flow I retrieve the value:
    userRealmValues = globalApp.userCredentials.getUserRealms().split(";");
    Now, this worked fine on the old computer, but on the new I can observe that the instance of the object globalApp CHANGES when moving from the parentflow to the nested flow!!!
    This, of course gives a Null pointer exception.
    Also, building an .EAR and deploying it on my test server works fine, so it is only the localhost server that is the problem.
    I use workshop 8.1 sp4.
    Any ideas anyone?
    kind regards
    Søren Werner

    Hi
    You are correct. This appears to be a bug on 8.1sp5. It works fine if you use a ear but a exploded app fails.
    Also this appears to be a regression as on sp4 this works fine. I will provide more info after a bug report is raised so you can follow up with BEA support via a support case.
    Thanks
    Vimala

  • Strange problem in using gprs

    hi everyone!
    m completely lost and feeling helpless... i dont know if this post could be of any help to me... but i request all the geeks out here to please help me out in getting this problem fixed... please...
    i am using nokia 5220 xpress music handset. now the problem is sometime back i somehow got some virus or corrupted my phone. everytime when i tried to start my music player or radio or video, it would display a message showing " not enough memory".
    then i finally went to nokia care and got my software reinstalled and also they suggested me to put one new memory card as the earlier gt corrupted and was the main cause of this problem.
    now the real problem is after this software installation and putting in new memory card, i am not able to start any application which wants to connect to the internet like opera mini, or yahoo go etc. everytime an application starts it shows" failed to connect to the internet " or " no working internet connection detected" but i am able to access sites from the  " go to address" option. i am having proper gprs settings. also when m putting my sim in other handsets m able to open opera mini or any application which needs to connect to the internet. also i have tried downloading new versions of opera mini , but they are also not working
    now why it is so that i am not able to use any application which needs to connect to the internet but i can access websites from "go to address" option , as m having an active gprs connection. also when m connecting pc to my phone m able to use internet over it. before giving my phone to nokia care i was able to use opera mini and all properly. kindly help!!!  

    I have a Nokia 5220, facing some problems. I have used both (1)*#7370# and (2) pressing green, *, 3 keys together and turning on the moble method to format, but both of theses does'nt work with nokia 5220.
    can somebody told me the way of formating NOKIA-5220, please.

  • Strange problems on using selectmany_checkboxlist with selectitems

    Hello all.
    I try to get selectmany_checkboxlist (JSF 1.0 Beta) working with selectitems but it seems
    that there are several conversions problems. My JSP page is defined as follows:
    <h:form id="registrationForm">
      <h:selectmany_checkboxlist id="credentials"  value="#{UserAccount.credentials}" required="true">
         <f:selectitems value="#{UserAccount.credentialItems}"/>
      </h:selectmany_checkboxlist>
      <h:messages styleClass="message-validation" for="credentials"/>                     
      <h:command_button id="submit" action="success" value="Submit">
    <h:form id="registrationForm">Minimum one checkbox has to be selected. The messages tag shows
    - if nothing is selected : Validation-Error: No Values (This is OK)
    - if one is selected : Conversion Error : Value 'null' for Modell 'expression'.
    - after submit : Conversion-Error: Value'[Ljava.lang.String;@ed3e63' forModell 'expression'
    My Managed-Bean is as follows:
    [code]
    public class UserAccountBean {
    private ArrayList m_CredentialList = null;
    public void setCredentialItems(Collection items) {
    System.out.println("setCredentialItems " + items);
    // Not needed
    public Collection getCredentialItems() {
    String[] options = {"ERPLOGIN", "CRLUPLOAD", "ADMIN"};
    ArrayList items = new ArrayList(options.length);
    for (int i = 0; i < options.length; i++) {
    items.add(new SelectItem(options, options[i], options[i]));
    System.out.println("getCredentialItems " + items);
    return items;
    public void setCredentials(Object[] credentials) {      
    if ((credentials != null) && (credentials.length > 0)) {
    int len = credentials.length;
    m_CredentialList.clear();
    m_CredentialList = new ArrayList(len);
    for (int i = 0; i < len; i++) {
    m_CredentialList.add(credentials[i]);
    System.out.println("setCredentials " + m_CredentialList);
    } else {          
    System.out.println("setCredentials " + null);
    public Object[] getCredentials() {
    System.out.println("getCredentials " + m_CredentialList);
    try {
    return m_CredentialList.toArray();
    } catch (NullPointerException e) {return null; }
    My faces-config.xml:
    <managed-bean>
      <description>Data model containing data of a user account</description>
        <managed-bean-name>UserAccount</managed-bean-name>
        <managed-bean-class>model.UserAccountBean</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>What is wrong about this? Any idees?
    Heinz

    I believe the problem is a bug in the beta RI that chokes on "Object[]" as the type of the selectmany's value, and that "String[]" will work. I also believe this has been fixed since the beta.
    -- Adam Winer

  • A strange problem when using GMail

    Hi
    I have a MacBook Pro and when I get connected to internet any website works fine except GMail and Orkut which is hosted by google as well. The problem is when I log in to my gmail account my inbox will be displayed but in a couple of second a transparent black page will be shown and no key will work, the message on this page says that I need to restart the computer, and asks me to hold down the on/off button. This happens for orkut.com as the same.
    At first I thought it is a browser issue but even with Safari I have the same problem. Can anybody help me out of this?

    Hi William
    There is no folder named Panic, but in DiagnosticReports I found some log file with 'panic' extensions it seems that my vodafone USB modem hangs because there is a file with vodafone name,
    Here is content of file 'Vodafone Mobile Broadband2010-07-25-183355white-apple.hang'
    Date/Time: 2010-07-25 18:32:51 +1000
    OS Version: 10.6.4 (Build 10F569)
    Architecture: x86_64
    Report Version: 6
    Command: Vodafone Mobile Broadband
    Path: /Applications/Vodafone Mobile Broadband.app/Contents/MacOS/Vodafone Mobile Broadband
    Version: 3.04.09.02 (11447M)
    Parent: launchd [95]
    PID: 152
    Event: hang
    Duration: 8.69s (sampling started after 2 seconds)
    Steps: 67 (100ms sampling interval)
    Pageins: 22
    Pageouts: 0
    Process: Vodafone Mobile Broadband [152]
    Path: /Applications/Vodafone Mobile Broadband.app/Contents/MacOS/Vodafone Mobile Broadband
    UID: 501
    Process: AirPort Base Station Agent [129]
    Path: /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    UID: 501
    Thread 75017a8 DispatchQueue 1
    User stack:
    67 ??? (in AirPort Base Station Agent + 5692) [0x10000163c]
    67 NSApplicationMain + 364 (in AppKit) [0x7fff8326b5f8]
    67 -[NSApplication run] + 395 (in AppKit) [0x7fff832728d3]
    67 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 (in AppKit) [0x7fff832acbed]
    67 _DPSNextEvent + 708 (in AppKit) [0x7fff832ad29e]
    67 BlockUntilNextEventMatchingListInMode + 59 (in HIToolbox) [0x7fff8276c5d8]
    67 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff8276c71f]
    67 RunCurrentEventLoopInMode + 333 (in HIToolbox) [0x7fff8276c91a]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 75d2000 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 7697000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff888f7dce]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Thread 769bb7c
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in AirPort Base Station Agent + 117988) [0x10001cce4]
    67 ??? (in AirPort Base Station Agent + 106856) [0x10001a168]
    67 ??? (in AirPort Base Station Agent + 118817) [0x10001d021]
    67 _semwaitsignal + 10 (in libSystem.B.dylib) [0x7fff888eeeb6]
    Kernel stack:
    67 semaphorewaitcontinue + 0 [0x22a270]
    Thread 70ad7a8
    User stack:
    38 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    38 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    38 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100027fff com.apple.AirPortBaseStationAgent 1.5.5 (155.2) <00010203-0405-0607-0809-0A0B0C0D0E0F> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8273e000 - 0x7fff82a3cfe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff83269000 - 0x7fff83c5ffff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: AppleSpell [269]
    Path: /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    UID: 501
    Thread 59d0000 DispatchQueue 1
    User stack:
    67 ??? (in AppleSpell + 4816) [0x1000012d0]
    67 ??? (in AppleSpell + 5472) [0x100001560]
    67 -[NSSpellServer run] + 72 (in Foundation) [0x7fff8421e78a]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 741b3d4 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Binary Images:
    0x100000000 - 0x1000a9fe7 com.apple.AppleSpell 1.6.2 (62.2) <B3C504CB-5E66-639E-9F2A-2F184565496A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8419f000 - 0x7fff84420fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: autofsd [46]
    Path: /usr/libexec/autofsd
    UID: 0
    Thread 5f65000 DispatchQueue 1
    User stack:
    67 ??? (in autofsd + 5340) [0x1000014dc]
    67 ??? (in autofsd + 6461) [0x10000193d]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 5ea43d4 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Binary Images:
    0x100000000 - 0x100001ff7 autofsd ??? (???) <E07FB03F-038C-D995-51F3-FF8A686F645B> /usr/libexec/autofsd
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: blued [45]
    Path: /usr/sbin/blued
    UID: 0
    Thread 5f653d4 DispatchQueue 1
    User stack:
    67 ??? (in blued + 6468) [0x100001944]
    67 ??? (in blued + 154202) [0x100025a5a]
    67 -[NSRunLoop(NSRunLoop) run] + 77 (in Foundation) [0x7fff841ea8f7]
    67 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270 (in Foundation) [0x7fff841eaa18]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 66cdb7c DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Binary Images:
    0x100000000 - 0x100048fe7 blued ??? (???) <068B2E13-FC01-B62A-805A-578C75BCFA12> /usr/sbin/blued
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8419f000 - 0x7fff84420fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: configd [13]
    Path: /usr/libexec/configd
    UID: 0
    Thread 5873000 DispatchQueue 1
    User stack:
    67 start + 52 (in configd) [0x100000cf0]
    67 main + 2051 (in configd) [0x100001506]
    67 server_loop + 72 (in configd) [0x100001d5c]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 586f7a8 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 58513d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 plugin_exec + 1440 (in configd) [0x1000034c3]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 5e1a7a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 io_pm_force_activesettings + 2266 (in PowerManagement) [0x10038c968]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 66b1000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 pppcntlrunthread + 1595 (in PPPController) [0x1005cb90d]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 66c9000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff888f7dce]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Thread 66b77a8
    User stack:
    50 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    50 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    50 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100026ff7 configd ??? (???) <74FC6898-E16A-3A28-B6B5-5E185A6B1D19> /usr/libexec/configd
    0x100389000 - 0x10039afff com.apple.SystemConfiguration.PowerManagement 160.0.0 (160.0.0) <691A8193-3BE4-69C5-71D0-6D4BC738998D> /System/Library/SystemConfiguration/PowerManagement.bundle/Contents/MacOS/Power Management
    0x1005b9000 - 0x1005e2fff com.apple.SystemConfiguration.PPPController 1.5 (1.5) <900FD5A8-2F19-6919-1AF2-71C70F36E834> /System/Library/SystemConfiguration/PPPController.bundle/Contents/MacOS/PPPCont roller
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: coreaudiod [89]
    Path: /usr/sbin/coreaudiod
    UID: 202
    Thread 66cbb7c DispatchQueue 1
    User stack:
    67 ??? (in coreaudiod + 2964) [0x100000b94]
    67 ??? (in coreaudiod + 26320) [0x1000066d0]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 6e00b7c DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 667d3d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 CAPThread::Entry(CAPThread*) + 125 (in CoreAudio) [0x7fff84680af5]
    67 HALRunLoop::OwnThread(void*) + 152 (in CoreAudio) [0x7fff84693af6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 76b03d4
    User stack:
    50 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    50 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    50 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x10001fff7 coreaudiod ??? (???) <9A14795C-2B28-130F-43A3-183AB48F75D8> /usr/sbin/coreaudiod
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff84662000 - 0x7fff846e1fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: coreservicesd [68]
    Path: /System/Library/CoreServices/coreservicesd
    UID: 0
    Thread 5f273d4 DispatchQueue 1
    User stack:
    67 ??? (in coreservicesd + 3756) [0x100000eac]
    67 _CoreServicesServerMain + 522 (in CarbonCore) [0x7fff84f3a17e]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 5fe27a8 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 5f0a7a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 read + 10 (in libSystem.B.dylib) [0x7fff888be8e6]
    Kernel stack:
    67 lo64unixscall + 77 [0x29f43d]
    67 unix_syscall64 + 617 [0x4edaf8]
    67 read_nocancel + 158 [0x495760]
    67 write + 312 [0x494fe4]
    67 get_pathbuff + 3054 [0x3039e7]
    67 tsleep + 105 [0x486de7]
    67 wakeup + 786 [0x4869c0]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 5f187a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 fmodWatchConsumer + 347 (in CarbonCore) [0x7fff84eee12a]
    67 _semwaitsignal + 10 (in libSystem.B.dylib) [0x7fff888eeeb6]
    Kernel stack:
    67 semaphorewaitcontinue + 0 [0x22a270]
    Thread 7026b7c
    User stack:
    50 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    50 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    50 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100000fff coreservicesd ??? (???) <1B2BE925-BFB2-BEA6-D713-00E4D6295200> /System/Library/CoreServices/coreservicesd
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff84e8a000 - 0x7fff851bdfe7 com.apple.CoreServices.CarbonCore 861.13 (861.13) <BC2F9B4E-D305-D717-D97E-EC78C7DE9EE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Thread 5943000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in spindump + 8731) [0x10000221b]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 75d23d4
    User stack:
    57 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    57 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    57 bsdthread_create + 1313 [0x4c9daa]
    Thread 77057a8
    User stack:
    50 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    50 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    50 bsdthread_create + 1313 [0x4c9daa]
    Thread <multiple> DispatchQueue 14
    User stack:
    9 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    9 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    9 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    9 dispatch_queueinvoke + 57 (in libSystem.B.dylib) [0x7fff888cebb4]
    9 dispatch_queuedrain + 251 (in libSystem.B.dylib) [0x7fff888ced52]
    9 dispatch_call_block_andrelease + 15 (in libSystem.B.dylib) [0x7fff888f01b0]
    4 ??? (in spindump + 12937) [0x100003289]
    4 ??? (in spindump + 13906) [0x100003652]
    4 _CFBundleCreateWithExecutableURLIfLooksLikeBundle + 187 (in CoreFoundation) [0x7fff80e7647b]
    4 _CFBundleCreateIfLooksLikeBundle + 14 (in CoreFoundation) [0x7fff80e7656e]
    3 _CFBundleCreate + 333 (in CoreFoundation) [0x7fff80df477d]
    3 _CFBundleURLLooksLikeBundleVersion + 65 (in CoreFoundation) [0x7fff80df5821]
    2 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    2 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    2 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    1 _CFBundleCopyDirectoryContentsAtPath + 1741 (in CoreFoundation) [0x7fff80df621d]
    1 CFArrayAppendValue + 144 (in CoreFoundation) [0x7fff80df6440]
    1 _CFArrayReplaceValues + 2543 (in CoreFoundation) [0x7fff80df6e4f]
    1 malloczonemalloc + 82 (in libSystem.B.dylib) [0x7fff888b7f0a]
    1 szonemalloc_shouldclear + 241 (in libSystem.B.dylib) [0x7fff888b803c]
    1 tinymalloc_from_freelist + 1124 (in libSystem.B.dylib) [0x7fff888b9062]
    1 _CFBundleCreate + 697 (in CoreFoundation) [0x7fff80df48e9]
    1 CFBundleGetInfoDictionary + 74 (in CoreFoundation) [0x7fff80dfc2aa]
    1 _CFBundleCopyInfoDictionaryInDirectoryWithVersion + 1005 (in CoreFoundation) [0x7fff80dfc69d]
    1 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    1 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    1 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    4 ??? (in spindump + 18913) [0x1000049e1]
    4 ??? (in spindump + 14520) [0x1000038b8]
    4 dispatchbarrier_syncf + 79 (in libSystem.B.dylib) [0x7fff888e943b]
    3 ??? (in spindump + 12968) [0x1000032a8]
    3 CFBundleGetValueForInfoDictionaryKey + 37 (in CoreFoundation) [0x7fff80e18425]
    3 CFBundleGetLocalInfoDictionary + 85 (in CoreFoundation) [0x7fff80e184c5]
    3 CFBundleCopyResourceURL + 47 (in CoreFoundation) [0x7fff80e1867f]
    3 _CFBundleGetLanguageSearchList + 170 (in CoreFoundation) [0x7fff80e1882a]
    3 _CFBundleAddPreferredLprojNamesInDirectory + 1270 (in CoreFoundation) [0x7fff80e190b6]
    3 _CFBundleTryOnePreferredLprojNameInDirectory + 232 (in CoreFoundation) [0x7fff80e24458]
    3 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    3 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    3 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    1 ??? (in spindump + 12937) [0x100003289]
    1 ??? (in spindump + 13906) [0x100003652]
    1 _CFBundleCreateWithExecutableURLIfLooksLikeBundle + 187 (in CoreFoundation) [0x7fff80e7647b]
    1 _CFBundleCreateIfLooksLikeBundle + 14 (in CoreFoundation) [0x7fff80e7656e]
    1 _CFBundleCreate + 333 (in CoreFoundation) [0x7fff80df477d]
    1 _CFBundleURLLooksLikeBundleVersion + 65 (in CoreFoundation) [0x7fff80df5821]
    1 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    1 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    1 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    1 ??? (in spindump + 12968) [0x1000032a8]
    1 CFBundleGetValueForInfoDictionaryKey + 37 (in CoreFoundation) [0x7fff80e18425]
    1 CFBundleGetLocalInfoDictionary + 85 (in CoreFoundation) [0x7fff80e184c5]
    1 CFBundleCopyResourceURL + 47 (in CoreFoundation) [0x7fff80e1867f]
    1 _CFBundleGetLanguageSearchList + 170 (in CoreFoundation) [0x7fff80e1882a]
    1 _CFBundleAddPreferredLprojNamesInDirectory + 1270 (in CoreFoundation) [0x7fff80e190b6]
    1 _CFBundleTryOnePreferredLprojNameInDirectory + 232 (in CoreFoundation) [0x7fff80e24458]
    1 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    1 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    1 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    Kernel stack:
    8 lo64unixscall + 77 [0x29f43d]
    4 unix_syscall64 + 617 [0x4edaf8]
    4 getdirentries64 + 112 [0x2e3c35]
    4 umask_extended + 984 [0x2e3800]
    4 VNOP_READDIR + 119 [0x2f81cf]
    4 hfsownerrights + 20681 [0x439340]
    4 CompareCatalogKeys + 6740 [0x4141a1]
    3 BTIterateRecords + 450 [0x4440cb]
    3 FindIteratorPosition + 135 [0x44669c]
    3 GetNode + 66 [0x446ac2]
    3 netboot_mountroot + 10522 [0x410036]
    3 buf_biowait + 97 [0x2c8cae]
    3 msleep + 157 [0x486eef]
    3 wakeup + 334 [0x4867fc]
    3 lckmtxsleep + 87 [0x221948]
    3 thread_block + 33 [0x227184]
    3 threadblockreason + 331 [0x2270f6]
    3 thread_dispatch + 1966 [0x226e57]
    3 machineswitchcontext + 753 [0x2a6a27]
    1 BTIterateRecords + 1210 [0x4443c3]
    1 GetNode + 66 [0x446ac2]
    1 netboot_mountroot + 10522 [0x410036]
    1 buf_biowait + 97 [0x2c8cae]
    1 msleep + 157 [0x486eef]
    1 wakeup + 334 [0x4867fc]
    1 lckmtxsleep + 87 [0x221948]
    1 thread_block + 33 [0x227184]
    1 threadblockreason + 331 [0x2270f6]
    1 thread_dispatch + 1966 [0x226e57]
    1 machineswitchcontext + 753 [0x2a6a27]
    4 unix_syscall64 + 932 [0x4edc33]
    4 throttlelowpriio + 134 [0x307f48]
    4 IOSleep + 25 [0x52a567]
    4 delayforinterval + 49 [0x2195c9]
    4 thread_block + 33 [0x227184]
    3 threadblockreason + 331 [0x2270f6]
    3 thread_dispatch + 1966 [0x226e57]
    3 machineswitchcontext + 753 [0x2a6a27]
    1 threadblockreason + 309 [0x2270e0]
    1 thread_go + 1982 [0x2264bc]
    1 thread_setrun + 1351 [0x2256d2]
    1 machine_idle + 239 [0x2a9ade]
    1 threadexceptionreturn + 0 [0x29e695]
    Thread 75d23d4 DispatchQueue 27
    User stack:
    5 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    5 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    5 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    5 dispatch_queueinvoke + 57 (in libSystem.B.dylib) [0x7fff888cebb4]
    5 dispatch_queuedrain + 251 (in libSystem.B.dylib) [0x7fff888ced52]
    5 dispatch_call_block_andrelease + 15 (in libSystem.B.dylib) [0x7fff888f01b0]
    5 ??? (in spindump + 18913) [0x1000049e1]
    5 ??? (in spindump + 14847) [0x1000039ff]
    5 dispatch_barrier_sync_fslow + 134 (in libSystem.B.dylib) [0x7fff888f0389]
    5 semaphorewaittrap + 10 (in libSystem.B.dylib) [0x7fff888b4336]
    Kernel stack:
    5 semaphorewaitcontinue + 0 [0x22a270]
    Thread 75d23d4 DispatchQueue 11
    User stack:
    1 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    1 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    1 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    1 dispatch_queueinvoke + 57 (in libSystem.B.dylib) [0x7fff888cebb4]
    1 dispatch_queuedrain + 251 (in libSystem.B.dylib) [0x7fff888ced52]
    1 dispatch_call_block_andrelease + 15 (in libSystem.B.dylib) [0x7fff888f01b0]
    1 ??? (in spindump + 18925) [0x1000049ed]
    1 ??? (in spindump + 19042) [0x100004a62]
    1 dispatchbarrier_syncf + 79 (in libSystem.B.dylib) [0x7fff888e943b]
    1 ??? (in spindump + 19165) [0x100004add]
    1 ??? (in spindump + 19625) [0x100004ca9]
    1 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    1 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Binary Images:
    0x100000000 - 0x100010ff7 spindump ??? (???) <CF9A6B2F-0CEE-B838-5322-7594408E0638> /usr/sbin/spindump
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff80f87000 - 0x7fff80fe5ff7 com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff84662000 - 0x7fff846e1fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: spindump_symbolicator [365]
    Path: /usr/libexec/spindump_symbolicator
    UID: 0
    Thread 6010000 DispatchQueue <multiple>
    User stack:
    57 ??? (in spindump_symbolicator + 5772) [0x10000168c]
    57 ??? (in spindump_symbolicator + 6159) [0x10000180f]
    57 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    57 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    57 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    57 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    1 ??? [0x100015c4e]
    1 ??? [0x100010411]
    1 posix_spawnp + 434 (in libSystem.B.dylib) [0x7fff88979132]
    1 _posixspawn + 10 (in libSystem.B.dylib) [0x7fff888fab72]
    Kernel stack:
    57 ipcmqueue_receivecontinue + 0 [0x210c2f]
    1 lo64unixscall + 77 [0x29f43d]
    1 unix_syscall64 + 617 [0x4edaf8]
    1 posix_spawn + 2132 [0x4730e5]
    1 kcomainit + 2870 [0x472440]
    1 vn_rdwr + 108 [0x2f0899]
    1 vnrdwr64 + 321 [0x2f07ce]
    1 VNOP_READ + 157 [0x2fafc8]
    1 hfsvnopread + 241 [0x424765]
    1 decmpfsreadcompressed + 1155 [0x312397]
    1 decmpfshidesrsrc + 1523 [0x31074a]
    1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1 + 16332 [0x90afcc]
    1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1 + 14545 [0x90a8d1]
    1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1 + 4899 [0x908323]
    1 VNOP_GETXATTR + 119 [0x2f7d8d]
    1 hfsvnopmakenamedstream + 9373 [0x4427d6]
    1 VNOP_READ + 157 [0x2fafc8]
    1 hfsvnopread + 552 [0x42489c]
    1 cluster_read + 61 [0x2d3450]
    1 clusterreadext + 279 [0x2d2415]
    1 cluster_pageout + 3101 [0x2d161b]
    1 msleep + 157 [0x486eef]
    1 wakeup + 334 [0x4867fc]
    1 lckmtxsleep + 87 [0x221948]
    1 thread_block + 33 [0x227184]
    1 threadblockreason + 331 [0x2270f6]
    1 thread_dispatch + 1966 [0x226e57]
    1 machineswitchcontext + 753 [0x2a6a27]
    Thread 75ef7a8 DispatchQueue 2
    User stack:
    57 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    57 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    57 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    57 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    57 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    57 kevent + 97 [0x4701de]
    Thread 77b67a8
    User stack:
    2 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    2 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    2 cleanerthreadmain(void*) + 36 (in CoreSymbolication) [0x7fff80bed0d5]
    2 _semwaitsignal + 10 (in libSystem.B.dylib) [0x7fff888eeeb6]
    Kernel stack:
    2 semaphorewaitcontinue + 0 [0x22a270]
    Binary Images:
    0x100000000 - 0x100001fff spindump_symbolicator ??? (???) <05D4F540-EB3B-5C58-D552-5D287B011A02> /usr/libexec/spindump_symbolicator
    0x7fff80be1000 - 0x7fff80c53fef com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: syslogd [14]
    Path: /usr/sbin/syslogd
    UID: 0
    Thread 5dcbb7c DispatchQueue 1
    User stack:
    67 ??? (in syslogd + 2444) [0x10000098c]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff888f7dce]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Thread 5dcb000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in syslogd + 35937) [0x100008c61]
    67 vprocmgr_logdrain + 80 (in libSystem.B.dylib) [0x7fff889e002e]
    67 vprocmig_logdrain + 95 (in libSystem.B.dylib) [0x7fff889e0a1f]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 5dcb3d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in syslogd + 46429) [0x10000b55d]
    67 ??? (in syslogd + 36870) [0x100009006]
    67 _semwaitsignal + 10 (in libSystem.B.dylib) [0x7fff888eeeb6]
    Kernel stack:
    67 semaphorewaitcontinue + 0 [0x22a270]
    Thread 5dcb7a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in syslogd + 45284) [0x10000b0e4]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Binary Images:
    0x100000000 - 0x100013fff syslogd ??? (???) <294E71C5-F936-2D72-B70F-01399F9DFB3E> /usr/sbin/syslogd
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: SystemUIServer [100]
    Path: /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    UID: 501
    Thread 6e293d4 DispatchQueue 1
    User stack:
    67 ??? (in SystemUIServer + 69452) [0x100010f4c]
    67 ??? (in SystemUIServer + 71108) [0x1000115c4]
    67 -[NSApplication run] + 395 (in AppKit) [0x7fff832728d3]
    67 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 (in AppKit) [0x7fff832acbed]
    67 _DPSNextEvent + 708 (in AppKit) [0x7fff832ad29e]
    67 BlockUntilNextEventMatchingListInMode + 59 (in HIToolbox) [0x7fff8276c5d8]
    67 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff8276c71f]
    67 RunCurrentEventLoopInMode + 333 (in HIToolbox) [0x7fff8276c91a]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 66b13d4 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 7501b7c
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff888f7dce]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Thread 58303d4
    User stack:
    65 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    65 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    65 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100066ff7 com.apple.systemuiserver 1.6 (298.7) <8C0C1370-356E-7689-A990-CDF1B79372FD> /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8273e000 - 0x7fff82a3cfe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff83269000 - 0x7fff83c5ffff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: TISwitcher [134]
    Path: /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedSupport/TISwitcher.app/Contents/MacOS/TISw itcher
    UID: 501
    Thread 70267a8 DispatchQueue 1
    User stack:
    67 ??? (in TISwitcher + 6592) [0x1000019c0]
    67 NSApplicationMain + 364 (in AppKit) [0x7fff8326b5f8]
    67 -[NSApplication run] + 395 (in AppKit) [0x7fff832728d3]
    67 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 (in AppKit) [0x7fff832acbed]
    67 _DPSNextEvent + 708 (in AppKit) [0x7fff832ad29e]
    67 BlockUntilNextEventMatchingListInMode + 59 (in HIToolbox) [0x7fff8276c5d8]
    67 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff8276c71f]
    67 RunCurrentEventLoopInMode + 333 (in HIToolbox) [0x7fff8276c91a]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 75b6000 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 6e007a8
    User stack:
    37 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    37 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    37 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100003fff com.apple.TISwitcher 1.0 (1.0) <15CE1323-EC61-DA49-4C14-A4AA76FD82D7> /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedSupport/TISwitcher.app/Contents/MacOS/TISw itcher
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8273e000 - 0x7fff82a3cfe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff83269000 - 0x7fff83c5ffff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: usbmuxd [25]
    Path: /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd
    UID: 213
    Thread 5f183d4 DispatchQueue 100
    User stack:
    67 ??? (in usbmuxd + 3949) [0x1f6d]
    67 ??? (in usbmuxd + 4160) [0x2040]
    67 ??? (in usbmuxd + 8908) [0x32cc]
    67 CFRunLoopRun + 84 (in CoreFoundation) [0x91accfd4]
    67 CFRunLoopRunSpecific + 452 (in CoreFoundation) [0x91ac7094]
    67 __CFRunLoopRun + 2079 (in CoreFoundation) [0x91ac7faf]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x9442a0fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 6010b7c DispatchQueue 1634545000
    User stack:
    67 start_wqthread + 30 (in libSystem.B.dylib) [0x9444fb86]
    67 pthreadwqthread + 390 (in libSystem.B.dylib) [0x9444fd41]
    67 dispatch_workerthread2 + 240 (in libSystem.B.dylib) [0x944502be]
    67 dispatch_queueinvoke + 163 (in libSystem.B.dylib) [0x94450519]
    67 kevent + 10 (in libSystem.B.dylib) [0x94450942]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 60107a8
    User stack:
    67 thread_start + 34 (in libSystem.B.dylib) [0x944576a2]
    67 pthreadstart + 345 (in libSystem.B.dylib) [0x9445781d]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x94449086]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Binary Images:
    0x1000 - 0xafff usbmuxd ??? (???) <187D4CDB-ACB0-91BD-B937-A1FF15AE82A7> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd
    0x91a8b000 - 0x91c05fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94429000 - 0x945cffeb libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Process: UserEventAgent [123]
    Path: /usr/libexec/UserEventAgent
    UID: 501
    Thread 704db7c DispatchQueue 1
    User stack:
    67 ??? (in UserEventAgent + 3740) [0x100000e9c]
    67 ??? (in UserEventAgent + 6152) [0x100001808]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 75b67a8 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 75603d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 _NSThread__main_ + 1429 (in Foundation) [0x7fff841afe8d]
    67 RegisterAppTracker + 11112 (in ACRRDaemon) [0x1000460e8]
    67 -[NSRunLoop(NSRunLoop) run] + 77 (in Foundation) [0x7fff841ea8f7]
    67 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270 (in Foundation) [0x7fff841eaa18]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 77b67a8
    User stack:
    38 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    38 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    38 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100001fff UserEventAgent ??? (???) <D7E00D4C-D72A-B658-5BA2-3E0B9A6FA3EA> /usr/libexec/UserEventAgent
    0x100042000 - 0x100048ff7 com.apple.CrashReporter.ACRRDaemonPlugin 10.6.3 (250) <C69F0751-F557-726A-0F25-8F0991A08FF6> /System/Library/UserEventPlugins/ACRRDaemon.plugin/Contents/MacOS/ACRRDaemon
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8419f000 - 0x7fff84420fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: VMCStatusMenu [151]
    Path: /Applications/Vodafone Mobile Broadband.app/Contents/Resources/VMCStatusMenu.app/Contents/MacOS/VMCStatusMenu
    UID: 501
    Process: WindowServer [73]
    Path: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    UID: 88
    Thread 66cd000 DispatchQueue 1
    User stack:
    67 start + 52 (in WindowServer) [0x100000f18]
    67 main + 9 (in WindowServer) [0x100000f29]
    67 CGXGetRootAdminCredentials + 0 (in CoreGraphics) [0x7fff880d2856]
    67 CGXServerLoop + 139 (in CoreGraphics) [0x7fff88107d4a]
    67 CGXRunOneServicesPass + 672 (in CoreGraphics) [0x7fff880fee4d]
    49 CGXRunOneServerPass + 262 (in CoreGraphics) [0x7fff88101c7a]
    49 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    17 CGXRunOneServerPass + 208 (in CoreGraphics) [0x7fff88101c44]
    17 machmsg_overwritetrap + 10 (in libSystem.B.dylib) [0x7fff888b4306]
    1 CGXRunOneServerPass + 451 (in CoreGraphics) [0x7fff88101d37]
    1 CGXPostPortData + 175 (in CoreGraphics) [0x7fff88101f2d]
    1 connectionHandler + 220 (in CoreGraphics) [0x7fff8811fe8a]
    1 _XGetWindowListWithTags + 1 (in CoreGraphics) [0x7fff882513b1]
    Kernel stack:
    66 ipcmqueue_receivecontinue + 0 [0x210c2f]
    1 lo_allintrs + 302 [0x29eb5e]
    1 interrupt + 171 [0x2a8033]
    1 lapic_interrupt + 126 [0x2af602]
    1 intel_startCPU + 405 [0x2b0bd2]
    1 synciss_toiks + 124 [0x2a7939]
    Thread 5f55000 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 66cd7a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 eventThread + 470 (in CoreGraphics) [0x7fff880e473e]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    66 ipcmqueue_receivecontinue + 0 [0x210c2f]
    1 lo64machscall + 77 [0x29f48d]
    1 thread_setuserstack + 405 [0x293eb4]
    1 machmsg_overwritetrap + 586 [0x216d1e]
    1 ipcmqueuereceive + 89 [0x211a9c]
    1 thread_block + 33 [0x227184]
    1 threadblockreason + 309 [0x2270e0]
    1 thread_go + 1982 [0x2264bc]
    1 thread_setrun + 1351 [0x2256d2]
    1 machine_idle + 239 [0x2a9ade]
    Thread 704d3d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 thread_fun + 34 (in QuartzCore) [0x7fff801a2b22]
    67 CA::Render::Server::server_thread(void*) + 177 (in QuartzCore) [0x7fff801a2be2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Binary Images:
    0x100000000 - 0x100000fff WindowServer ??? (???) <339853D7-1BCB-51F6-24DA-7615FFB3DDEB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    0x7fff80150000 - 0x7fff804e9ff7 com.apple.QuartzCore 1.6.2 (227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff88017000 - 0x7fff88714067 com.apple.CoreGraphics 1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: kernel_task [0]
    Path: kernel_task
    UID: 0
    Version: Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386
    Thread 0
    Thread 863a80
    Kernel stack:
    67 vmpageoutcontinue + 0 [0x276c2d]
    Thread 5673000
    Kernel stack:
    67 threadstackenqueue + 90 [0x22e4a1]
    Thread 56733d4
    Kernel stack:
    67 threaddaemoninit + 214 [0x22e20e]
    Thread 56737a8
    Kernel stack:
    67 assertwaitdeadline + 271 [0x227b4f]
    Thread 5673b7c
    Kernel stack:
    67 idle_thread + 0 [0x228015]
    Thread 56743d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 56747a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5674b7c
    Kernel stack:
    67 threadcallinitialize + 354 [0x22f966]
    Thread 5829000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 58297a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5829b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5830000
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 buf_strategy + 1042 [0x2ca408]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 58307a8
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 com.apple.driver.AppleIntelCPUPowerManagement 105.10.0 + 23498 [0x13a8bca]
    67 IOLockSleep + 39 [0x52b2ab]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 5830b7c
    Kernel stack:
    67 aio_return + 295 [0x4633fd]
    Thread 5839000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 58393d4
    Kernel stack:
    67 idle_thread + 0 [0x228015]
    Thread 5839b7c
    Kernel stack:
    67 aio_return + 295 [0x4633fd]
    Thread 5851b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5854000
    Kernel stack:
    67 threadcallinitialize + 663 [0x22fa9b]
    Thread 58543d4
    Kernel stack:
    67 vmpageout_internalstart + 80 [0x2751b3]
    Thread 58553d4
    Kernel stack:
    67 ifnet_detach + 582 [0x319a17]
    Thread 5855b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5856000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 58563d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 ifnetdetachprotocol + 1603 [0x31a281]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 58567a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5869000
    Kernel stack:
    67 vmpageout_internalstart + 945 [0x275514]
    Thread 58693d4
    Kernel stack:
    67 threadcallinitialize + 663 [0x22fa9b]
    Thread 58697a8
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 auditworkerinit + 956 [0x45ed2d]
    67 audit_cvwait + 50 [0x44fee1]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 5869b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 586d000
    Kernel stack:
    67 com.apple.nke.applicationfirewall 2.1.11 + 23895 [0x16afd57]
    Thread 586d7a8
    Kernel stack:
    67 memoryobject_recovernamed + 18276 [0x26f7d5]
    Thread 586db7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 586f000
    Kernel stack:
    67 aio_return + 295 [0x4633fd]
    Thread 586f3d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 586fb7c
    Kernel stack:
    67 aio_return + 295 [0x4633fd]
    Thread 58733d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 uxhandlerinit + 475 [0x4d0b5f]
    67 machmsgreceive + 168 [0x216e31]
    67 ipcmqueuereceive + 101 [0x211aa8]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 5873b7c
    Kernel stack:
    67 m_freem + 15868 [0x4a6802]
    Thread 591c000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 591c3d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 591c7a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 591cb7c
    Kernel stack:
    67 threadcallinitialize + 663 [0x22fa9b]
    Thread 59437a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5ea7b7c
    Kernel stack:
    67 vmpageout_internalstart + 80 [0x2751b3]
    Thread 5f27000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5f45b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 60953d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 com.apple.filesystems.autofs 2.1.0 + 24145 [0x15ade51]
    67 msleep + 157 [0x486eef]
    67 wakeup + 286 [0x4867cc]
    67 lckmtx_sleepdeadline + 104 [0x221340]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 66b17a8
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 ifnetdetachprotocol + 1603 [0x31a281]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 66b7000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c0000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c2000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c2b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c3000
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 ifnetdetachprotocol + 1603 [0x31a281]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 66c33d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c43d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66ca000
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 com.apple.driver.AppleIntelCPUPowerManagement 105.10.0 + 22427 [0x13a879b]
    67 IOLockSleep + 39 [0x52b2ab]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 66cc000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66cd3d4
    Kernel stack:
    67 threadcallinitialize + 663 [0x22fa9b]
    Thread 68823d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 70ad3d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 ifnetdetachprotocol + 1603 [0x31a281]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 76973d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 com.huawei.driver.HuaweiDataCardECMData 1.19.00 + 13976 [0x1b0b698]
    67 IOSleep + 25 [0x52a567]
    67 delayforinterval + 49 [0x2195c9]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]

  • Problem in using org.jdom.Parent in my EJB

    Hi All,
    I am using a code below to read a EBM and replace some of the node values in it. For that , initiallly, i want to check whether the XPATH class is working ..
    While i run this code in my SOAP-UI i get teh No class definition found exception for the class org.jdom.Parent. But i hav imported that jar inside my project. and i am able to use the line import org.jdom.parent. in my class file.
    package EBMhandling;
    import java.io.StringReader;
    import javax.jws.WebService;
    import java.io.StringReader;
    import javax.jws.WebService;
    import org.jdom.Document;
    import org.jdom.input.SAXBuilder;
    import org.jdom.output.XMLOutputter;
    import org.jdom.xpath.XPath;
    import org.xml.sax.InputSource;
    import org.jdom.Parent;
    @WebService
    public class UsingJDOMclass {
    public String ReplaceEBM(String input,String nodeXpath) {
    String modifiedEBM=null;
    try
    SAXBuilder builder = new SAXBuilder();
    Document doc = builder.build( new InputSource(new StringReader(input)) );
    modifiedEBM=(new XMLOutputter()).outputString(doc);
    // String innerXml = (new XMLOutputter()).outputString(XPath.selectSingleNode(doc,nodexpath));
    try
    XPath myxpath=XPath.newInstance(nodeXpath);
    modifiedEBM=myxpath.toString();
    catch(Exception e) {
    modifiedEBM="ERROR: inside :" + e.toString();
    catch(Exception e) {
    modifiedEBM="ERROR :" + e.toString();
    return modifiedEBM;
    This is the error i get:
    <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Body>
    <ns2:ReplaceEBMResponse xmlns:ns2="http://EBMhandling/">
    <return>ERROR: inside :org.jdom.JDOMException: java.lang.NoClassDefFoundError: org/jdom/Parent: org/jdom/Parent</return>
    </ns2:ReplaceEBMResponse>
    </S:Body>
    </S:Envelope>
    Kindly help me in this regard.
    Thanks,
    Sabarisri. N

    Hi Sameera,
    I found the conflict is because that, i hav added two different jars to my project folder. Both the jars contiained the definition of the class org.jdom.parent.
    So why the error have occured. I came to know a solution defined in https://issues.apache.org/jira/browse/GERONIMO-3894
    Not sure.. hw well it would work..
    So i think i can go for some alternative classes.
    Can u pls help me in the below requirement.
    I need to get a method which take input as (XMLasString,xpathOfElement,NewValueForThatElement)
    I shd replace the old value of that element by the NewValueForThatElement and again return back the XMLasString only..
    Thanks,
    Sabarisri. N

  • Little problem about using dispatchertimer on WP app developing

    First of all Hello to everyone,
    I m developing a little game on VS 2013 for windows phone. I m using dispatchertimer for show error messege on screen every 30 seconds. I m using dispatchertimer for this. But error message doesn't show up on screen after 30 seconds, i need to touch screen
    after 30 seconds for error message show up. How can i fix it ? I need to make this error message show up after 30 seconds without any touch.
    Btw I've created, defined dispatchertimer in "OnNavigatedTo(NavigationEventArgs e)" function...

    Hi PauBM,
    But error message doesn't show up on screen after 30 seconds, i need to touch screen after 30 seconds for error message show up.
    -> Sounds like you have to touch screen to start the timer...Not sure how you implement the function but I would suggest you share your code snippet with us. As Ken told, using dispatcher.begininvoke() to show the error is also necessary if your dispatcherTimer
    is not in UI thread:
    RunAsync method
    Basically here is a simple code snippet that can help you:
    DispatcherTimer = new DispatcherTimer { Interval = new TimeSpan(0, 0, 0, 0, 30) };
    DispatcherTimer.Tick += DispatcherTimerTick;
    DispatcherTimer.Start();
    In the dispatcherTimerTick method:
    private void DispatcherTimerTick(object sender, object e)
    //display your error here
    //if the dispatcherTimer runs in a non-UI threads, use
    dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    //display error here
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Submitting a form with enter key causing strange problems

    I am having a very strange problem with a webapp I am currently developing. I am using JSF 1.2 along with Facelets and RichFaces. I have coded a workflow/wizard 4-step process, and on some pages I have 4 submit buttons that all call different actions on the page. The users thought it would be useful to have the enter key submit the form, so I followed some online resources to trap a keypress using javascript, looking for the enter keycode and calling document.getElementById("elementName").click(). This works fine most of the time. Sometimes, though, it seems as if an entire new session is being created, and odd behavior starts happening. For example, my page will only include 2 of the 4 facelets on the screen -or- I will get NullPointerExceptions for objects that I know have been created in the session bean I am currently using -or- I will get a duplicate form Id after trying to re-submit the page. Could the javascript click simulation not be submitting all of the form elements or is the enter key also acting like its default action (the form submission) in addition to the "click"? I'm really at my wit's end here (plus it's nearly 3 AM, that never helps things). All of the buttons being clicked are standard h:commandButtons. There is some setTimeout logic included to disable the buttons on the page to prevent double clicks (I cannot disable them onsubmit because disabled buttons don't pass the right values, perhaps that's causing it, but if so, clicking the buttons with the mouse would cause that issue too, right?)
    I am not posting the code (yet), but if anyone wants to take a look see and see if I am doing something really abhorrently wrong, I'm more than willing to, I'm just curious if anyone has had problems regarding javascript submission of forms via the click() method. Clicking the button does not exhibit this type of behavior. Just as a side note: I am doing different things with the enter key depending if a modal window is open (the enter key closes the modal if it's up, and if not, it submits the form via a button click).
    Any help is much appreciated, if anyone has any inkling about where I should start looking for answers it would be really helpful.
    Thank you.

    edfrost wrote:
    Could the javascript click simulation not be submitting all of the form elements or is the enter key also acting like its default action (the form submission) in addition to the "click"?My guess is the second of these. You need to suppress the event handling after programmatically clicking the button.

  • Strange problem in AFW custom module (question for gurus)

    Hi there SDN'ers,
    I have I very strange problem with an additional Adapter Module I developed.
    My scenario is: IDOC -> JDBC (Oracle)
    Well, to make a long story short, say that before the JDBC Receiver cc can write my data to the db, I have to do (inside the channel) kinda java mapping in order to produce an XML document that is acceptable for it. So in my module I manipulate the payload via DOM. No problem here.
    The strange story is: at first attempt, the Adapter fails (see error below), while after 5 minutes, when automatically trying again, it succeeds.
    Just because I put some stuff in the message audit log, what I can tell you is this weird thing:
    1. at first, no XML document exists in the payload, but in place of it there's this string:
    org.apache.crimson.tree.XmlDocument@745501c6
    which seems to be a toString() of something I don't (or don't know to) use directly
    2. at the second attempt, even in the audit log I can actually see the weel-formed XML document ready for the JDBC adapter, and in fact data are written to the db.
    ?? WHAT COULD THIS BE CAUSED BY ??
    Say also that the the other way around (JDBC->IDOC) with another very similar module works perfectly.
    Thanks.
    Alex
    <b>Delivery of the message to the application using connection AFW failed, due to: ERROR occured parsing request:com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XMLParser: No data allowed here: (hex) 6f, 72, 67(:main:, row:1, col:3)(:main:, row=1, col=3) -> com.sap.engine.lib.xml.parser.ParserException: XMLParser: No data allowed here: (hex) 6f, 72, 67(:main:, row:1, col:3).</b>
    P.S. -> 6f, 72, 67  is "org", that is the first three letter of the weird payload I get at first attempt.

    Ok guys, I got that workin'.
    I don't know why - and don't think I'll have the time to investigate further - but it seems the implementation of DOM Document used by XI is different the first time AFW executes my module, so here my workaround.
    if (docOut instanceof org.apache.crimson.tree.XmlDocument) {
       org.apache.crimson.tree.XmlDocument tmpDocOut = (org.apache.crimson.tree.XmlDocument)docOut;
       tmpDocOut.write(out);               
    } else {
       out.write(docOut.toString().getBytes());
    Regards,
    Alex

  • Strange problem in XIF adapter?

    Hi ,
    I met a strange problem, I used to XIF adapter and IDoc to replicate BP to external system. When I update and save a BP in system, there's no IDoc generated when I check BD87. But if I use CRMXIF_PARTNER_TEST, the IDoc can be generated and sent out of system.
    What's the reason?

    Hi,
    The issue is resolved by applying a new patch.
    Regards,
    Joe.

Maybe you are looking for