OCCI AQ Subscription: callback not called

When data changed in table, I want my application to know immediately. So I use the Subsription class. The implements as follows. When I insert row to table set_tab_info, the triggers acts, but the callback not called. What's wrong?
--create multi consumer queue table
BEGIN
dbms_aqadm.create_queue_table (
                                   queue_table => 'hr.table06',
                                   queue_payload_type => 'RAW',
                                   comment => 'multi-consumer',
                                   multiple_consumers => TRUE,
                                   compatible => '8.1.0'
END;
--create multi consumer queue
BEGIN
dbms_aqadm.create_queue (
                              queue_name => 'queue06',
                              queue_table=> 'hr.table06'
END;
BEGIN
dbms_aqadm.start_queue(queue_name => 'queue06');
END;
--create table
CREATE TABLE set_tab_info(
     flag NUMBER
--create trigger, as a test, the payload is a byte
CREATE OR REPLACE TRIGGER tablechangeNew
     AFTER UPDATE OR INSERT OR DELETE
     ON set_tab_info
     FOR EACH ROW
DECLARE
     enqopt dbms_aq.enqueue_options_t;
     mprop dbms_aq.message_properties_t;
     enq_msgid RAW(16);
     rcpt_list dbms_aq.aq$_recipient_list_t;
BEGIN
     rcpt_list(0) := sys.aq$_agent('RECEIVER06', null, null);
     mprop.recipient_list := rcpt_list;
     dbms_aq.enqueue(
                    queue_name => 'hr.queue06',
                    enqueue_options => enqopt,
                    message_properties => mprop,
                    payload => HEXTORAW('61'),
                    msgid => enq_msgid);
END;
#include <iostream>
#include <iomanip>
#include <string>
#include <cstdlib>
#include <vector>
using namespace std;
#include "occi.h"
using namespace oracle::occi;
#include "occiAQ.h"
using namespace oracle::occi::aq;
string username("HR");
string password("HR");
string connstr("192.168.8.22:1521/study");
Environment* p_env = NULL;
Subscription* p_sub = NULL;
Connection* p_conn = NULL;
vector<Subscription> sub_vec;
class NotifyRegister
public:
     static unsigned int callback(Subscription& sub, NotifyResult* nr)
          //nr->getPayload();
          //Message msg = nr->getMessage();
          //Bytes bt =nr->getMessageId();
          cout << "callback was called!" << endl;
          return 0;
     void notifyTest()
          p_env = Environment::createEnvironment(Environment::EVENTS);
          p_sub = new Subscription(p_env);
          p_sub->setSubscriptionNamespace(Subscription::NS_AQ);
          //SCHEMA.QUEUE:CONSUMER_NAME
          p_sub->setSubscriptionName("HR.QUEUE06:RECEIVER06");
          p_sub->setPresentation(Subscription::PRES_DEFAULT);
          p_sub->setProtocol(Subscription::PROTO_CBK);
          p_sub->setNotifyCallback(&NotifyRegister::callback);
          //what's the context mean, how to set?
          p_sub->setCallbackContext((void*)this);
          p_env->enableSubscription(*p_sub);
          p_conn = p_env->createConnection(username, password, connstr);
          sub_vec.push_back(*p_sub);
          p_conn->registerSubscriptions(sub_vec);
int main()
     NotifyRegister nr;
     nr.notifyTest();
     pause();
     return EXIT_SUCCESS;
I don't know how to set the callback context. so just use this statement:
p_sub->setCallbackContext((void*)this);

Thanks, once again. Sorry for my naive questions, but I'm unable to find a good example for this...
After registering the Subscriber, and creating the environment in EVENT mode, it seems like it is picking up the message. Once I send a AQ message, I get an error from visual studio, telling me the variable ESP was not properly saved across a function call. At least it reacts now :)
Could it be that I'm doing something wrong when defining or hooking my callback function? The breakpoint in the callback function is never called....
my registering routine now looks like this:
void aq_connection::create_callback() {
payload = new Bytes(env); //is this the correct way?
Subscription sub(env);
sub.setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
sub.setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
sub.setPayload(*payload);
sub.setCallbackContext((void *)this);
sub.setSubscriptionName(quename + ":" + config->subscribername);
sub.setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
sub.setNotifyCallback(&aq_connection::event_message);
subs.push_back(sub);
conn->registerSubscriptions(subs);
I thought it was ok to create a local Subscription instance, as I put it into the global subs-vector.
Thanks in advance,
Sverre

Similar Messages

  • Occi AQ callback not called

    I have written code for dequeing messages with blocking calls (Consumer::recieve), which works fine. Now I try to register a callback function, which should be called when a message is in the queue.
    Some code:
    void aq_connection::create_callback() {
    payload = new Bytes(env); //?
    Subscription newSubscription(env);
    newSubscription.setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    newSubscription.setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    newSubscription.setPayload(*payload);
    newSubscription.setCallbackContext((void *)this);
    newSubscription.setSubscriptionName(quename + ":" + config->subscribername);
    newSubscription.setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    newSubscription.setNotifyCallback(&aq_connection::event_message);
    mye callback method is defined like this:
    static unsigned int event_message(oracle::occi::aq::Subscription &sub ,oracle::occi::aq::NotifyResult *not) {
    std::cout << "got message\n";
    return 0;
    The problem is, the event_message function is never called... I send in messages into the queue with this stored procedure:
    message := OURMSG_TYP(p_id, p_msg_type_id, p_msg, p_operation, p_data);
    enqueue_options.visibility := DBMS_AQ.ON_COMMIT;
         enqueue_options.relative_msgid := NULL;
         enqueue_options.sequence_deviation := NULL;
         enqueue_options.transformation := NULL;
         message_properties.priority := 1;
         message_properties.delay :=     DBMS_AQ.NO_DELAY;
         message_properties.expiration := p_expiration;
         message_properties.correlation := NULL;
         --message_properties.recipient_list :=
         message_properties.exception_queue := vcp_exception_queue_name;
         --message_properties.sender_id :=
         message_properties.original_msgid := NULL;
         message_properties.transaction_group := NULL;
         message_properties.user_property :=     NULL;
         DBMS_AQ.ENQUEUE(
         queue_name => our_queue_name,
    enqueue_options => enqueue_options,
    message_properties => message_properties,
    payload => message,
    msgid => message_handle
    Any obvious reason why my callback is never called?
    regards,
    Sverre

    Thanks, once again. Sorry for my naive questions, but I'm unable to find a good example for this...
    After registering the Subscriber, and creating the environment in EVENT mode, it seems like it is picking up the message. Once I send a AQ message, I get an error from visual studio, telling me the variable ESP was not properly saved across a function call. At least it reacts now :)
    Could it be that I'm doing something wrong when defining or hooking my callback function? The breakpoint in the callback function is never called....
    my registering routine now looks like this:
    void aq_connection::create_callback() {
    payload = new Bytes(env); //is this the correct way?
    Subscription sub(env);
    sub.setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    sub.setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    sub.setPayload(*payload);
    sub.setCallbackContext((void *)this);
    sub.setSubscriptionName(quename + ":" + config->subscribername);
    sub.setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    sub.setNotifyCallback(&aq_connection::event_message);
    subs.push_back(sub);
    conn->registerSubscriptions(subs);
    I thought it was ok to create a local Subscription instance, as I put it into the global subs-vector.
    Thanks in advance,
    Sverre

  • AQ callback not called in some environments

    Hi,
    I've got a client program that subscribes to a queue, and registers a callback that is called whenever a message is enqueued. This works fine on most computers, but on some computers this callback is never called. I've run it both in debug and release, and the breakpoint in the callback is never hit. On most computer thought, this works all the time.
    This is how I register the callback:
    sub = new Subscription(env);
    sub->setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    sub->setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    sub->setCallbackContext((void *)this);
    sub->setSubscriptionName(queue_name + ":" + config["subscribername"]);
    sub->setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    sub->setNotifyCallback(&messagequeueclient_occi::event_message);
    subs.push_back(*sub);
    conn->registerSubscriptions(subs);
    both subs and sub are class variables, and the callback look like this:
    static unsigned int event_message(
    oracle::occi::aq::Subscription &sub,
    oracle::occi::aq::NotifyResult *nr
    I've tried to examine the difference between the machines, but they all sem to have the same oracle client version etc...
    Any tip would be greatly appreciated.
    Regards,
    Sverre

    Thanks, once again. Sorry for my naive questions, but I'm unable to find a good example for this...
    After registering the Subscriber, and creating the environment in EVENT mode, it seems like it is picking up the message. Once I send a AQ message, I get an error from visual studio, telling me the variable ESP was not properly saved across a function call. At least it reacts now :)
    Could it be that I'm doing something wrong when defining or hooking my callback function? The breakpoint in the callback function is never called....
    my registering routine now looks like this:
    void aq_connection::create_callback() {
    payload = new Bytes(env); //is this the correct way?
    Subscription sub(env);
    sub.setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    sub.setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    sub.setPayload(*payload);
    sub.setCallbackContext((void *)this);
    sub.setSubscriptionName(quename + ":" + config->subscribername);
    sub.setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    sub.setNotifyCallback(&aq_connection::event_message);
    subs.push_back(sub);
    conn->registerSubscriptions(subs);
    I thought it was ok to create a local Subscription instance, as I put it into the global subs-vector.
    Thanks in advance,
    Sverre

  • Failover callback not called when listener dies

    I need to create a RAC-aware Pro*C application.
    I got the preconfigured VirtualBox images with OL 5 and RAC nodes.
    The listener is installed on both machines too. They share a single IP address for the listener, which I added to the hosts file:
    192.168.56.201   rac-scan.localdomain    rac-scanActually, the cluster decides to create a virtual network adapter on one of the nodes and this address is assigned to it and then the listener becomes awailable. When this node dies, the cluster starts the listener on another node.
    I don't know, whether it's a proper way. I heard that the listener should be on a separate machine.
    But the problem is: when I turn off the node my client program is connected to, the failover callback function is not called. The next oracle operation fails with "ORA-03114: not connected to ORACLE".
    I followed http://docs.oracle.com/cd/A91202_01/901_doc/appdev.901/a89857/oci09adv.htm#428924 and https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=415245.1 to create the sample program that registers the callback.
    Could it be that the failover only works when the DB service fails, but not the listener?

    The problem was bad connection string

  • Air.swf GetApplicationVersion callback not called

    I am trying to use air.swf from
    http://airdownload.adobe.com/air/browserapi
    per the Adobe documentation to detect if an air application is
    already installed. I'm using getApplicationVersion but the callback
    function is never called. launchApplication() and
    installApplication() work fine.
    The code looks like this:
    _air.getApplicationVersion(appID, pubID,
    versionDetectCallback);
    VersionDetectCallback() is never called. I de-compiled the
    air.swf and ran the code directly to try and figure out what's
    failing. But I get the same result. I can see the timer on the
    LocalConnection endpoint timing out after 5 seconds. I just can't
    figure out why the appinstaller is not calling back. The actual
    call (taken from the decompiled swf) looks like this:
    airappinstaller = new ProductManager("airappinstaller");
    var launchArgs:Array;
    launchArgs = ["-isinstalled", appID, pubID, "adobe.com" + ":"
    + lcName, "onApplicationVersion"];
    airappinstaller.launch(launchArgs.join(" "));
    where onApplicationVersion is the endpoint callback function
    and lcName is the LocalConnection name.
    Anyone know why GetApplicationVersion() doesn't work?

    I am trying to use air.swf from
    http://airdownload.adobe.com/air/browserapi
    per the Adobe documentation to detect if an air application is
    already installed. I'm using getApplicationVersion but the callback
    function is never called. launchApplication() and
    installApplication() work fine.
    The code looks like this:
    _air.getApplicationVersion(appID, pubID,
    versionDetectCallback);
    VersionDetectCallback() is never called. I de-compiled the
    air.swf and ran the code directly to try and figure out what's
    failing. But I get the same result. I can see the timer on the
    LocalConnection endpoint timing out after 5 seconds. I just can't
    figure out why the appinstaller is not calling back. The actual
    call (taken from the decompiled swf) looks like this:
    airappinstaller = new ProductManager("airappinstaller");
    var launchArgs:Array;
    launchArgs = ["-isinstalled", appID, pubID, "adobe.com" + ":"
    + lcName, "onApplicationVersion"];
    airappinstaller.launch(launchArgs.join(" "));
    where onApplicationVersion is the endpoint callback function
    and lcName is the LocalConnection name.
    Anyone know why GetApplicationVersion() doesn't work?

  • Java script callback not called from plugin code

    Hi,
    I am having a plugin which works on FF 3.6. I am trying to make it work on FireFox 4/5. My java script callback for resize is getting called only for first time from plugin code and second time onwards its not getting called. We are using Gecko 2.0 plug-in library.
    I found two bugs in Firefox which may cause call to invalid callback.
    https://bugzilla.mozilla.org/show_bug.cgi?id=664682
    https://bugzilla.mozilla.org/show_bug.cgi?id=653083
    I think because of these two bugs my callback is not getting called. Is there any update for FireFox 4/Firefox5 with the fix for above two issues?
    Thanks,
    Rohit

    The first Bug is listed as a duplicate of the 2nd Bug you posted.
    I don't see any information in the Bug report about which version is going to specifically get the patch. Firefox 4 isn't supported any longer, and I can only assume that with an '''''Importance:''''' of '''normal''', that it won't be "pushed" to Firefox 5. AFAIK, with the new Fast Release schedule only security bugs are going create a situation where a '''''dot#''''' release is going to be made, and other Bugs that have been patched might then be included. With the current release schedule it's going to be 6 weeks between versions, vs the previous 12 to 14 months, or so.
    You may want to try a 6.0 beta to see if it is fixed there.

  • 10g registered callback not called

    I have the following method on the superclass of all the classes I've mapped in TopLink. I want the classes to know what session they come from, so that if they need to do any further queries, they can use the same one. I've selected this method for the Build event on the Post-X choice on the Events tab of each of my descriptors. The 'Informant' call would print to the log if the method were ever called, but it's not. Is there something else I need to do, or is this broken in 10g?
         public void postBuildEventCallback( DescriptorEvent aDescriptorEvent ) {
              Informant.debug( "postBuildEventCallback on "+this+" with "+aDescriptorEvent );
              setTopLinkSession( aDescriptorEvent.getSession() );
         }

    The mapping still appears in the MW when I shut down and re-open JDeveloper, so I wasn't worried that it hadn't been saved. However, it turns out I hand't rebuilt the toplink-deployment-descriptor.xml, so it wasn't making it to the runtime.
    Everything seems to be working fine now. Thanks!

  • My Skype subscription for India calling is not wor...

    Hi, I recently purchased Skype India calling for 2500min/month subscription. My problems are listed below;
    1. The subscription is unfortunately not working at all. I tried on couple of mobile numbers, its sometimes connecting but no voice. Only one time I was able to connect to land line number and the voice was OK, but still not so good clarity.
    2. I am not able to use this subscription feature in my Android mobile (Galaxy S4), to call mobile numbers or land line number are not possible at all my Skype mobile.
    Please help me find a solution for it. My normal Skype video and voice calls are working fine in my Laptop and also in my Android mobile but the subscription is not working. If there is no solution or official communication I have to cancel subscription, why should I unnecessarily pay to Skype.
    Any suggestion or help is appreciated greatly.
    regards
    Unsatisfied Skype customer.
    Solved!
    Go to Solution.

    NormanM wrote:
    Hello,
    The fault is almost certainly with the local Indian carrier used to terminate the call and not Skype. (All Skype calls travel via the internet and only convert to PSTN/Cellular networks at a point close to the recipient's phone). The fact that your Skype-to-Skype calls are trouble-free demonstrates the point. You can also check by placing a free call to the Skype Call Testing Service (echo123).
    First of all thanks for your reply and also you mentioned something PSTN/Cellular network etc etc how the Skype is working. But look here my problem is why this is happening, the subscription name itself India calling then Skype should be able to tieup or catch up with the local Indian carrier, isn't it? How do I know that the local carrier is supporting or not? I need a solution not the reason, yeah it is good to know the reason but what I will do with the reason here; it is beyond my doing. If this is the genuince reason for the failure then Skype is making false statement and fooling around the customers saying you can call Indian Mobile and land lines by this subscription, which is clearly not happening.
    Please let me know if there is anything can be done on this issue, yours time and effort is appreciately greatly.
    regards
    Unsatisfied Skype Customer

  • Why my subscription is not showing up in my Androi...

    I bought a Skype Unlimited World premium subscription few days ago, it's showing up via my computer/web browser login, but when I logged onto the same Skype account on my Galaxy Note 3, the subscription did not show up there, and I can't make calls. 
    Please help, I am new to Skype...

    When I had an android phone the subscripton never showed up, but I never had a problem using skype. Are you going through the skype app, and you on wifi? If so your phone should work. Are you calling a mobile not covered by your subscription? That is a common problem.  I hope this helps. 
    If you found a post useful, please give Kudos. If it helped to fix your issue, mark it as a solution to help others.
    Thank You!

  • Subscriptions are not flexible

    Hello,
    On January 21st I created a subscription for 400 minutes/month landline calls.
    Paid via PayPal, without automatic repayments.
    The 400 minutes run out on February 13, so I tried to refill but there was not a way to do this, I had to wait until the end of the month (i.e. February 21st).
    I can't change anything in the subscription.
    I tried to create a new one but I got the message "If you continue to buy Greece 400 mins to landlines then you will be buying a calling subscription that overlaps with your previously purchased subscription.". No, I don't need a second subsciption.
    OK, I make patience and wait till the end of the month, but yesterday (February 18th) I got the message that Skype tried to get paid by PayPal for the next month and "the payment was refused". So the subscription is not renewed with new minutes, and it won't be ever.
    The status message reads "Your Greece 400 mins to landlines subscription will expire in 1 day as your payment has failed. Please change your payment method to retain your services."
    I tried to see if there is a way to pay manually via PayPal, but there not a way to do this.
    It seems that I have to cancel my subscription, read the "We are sorry that you did this, dear customer" and feel stressed, and subsequently make a new one, stressed once again by the message "...you will be buying a calling subscription that overlaps with your previously purchased subscription".
    This is funny. Skype tries to make with me a "long lasting contract" but can't provide me with elementary things: I run out of talking time before the end of the month. What do I do?
    Actually what I want is to buy some minutes talking time (let's say 400) to spend them as I wish. When run out, make a new payment, have another 400 minutes. Is this so difficult to have?

    Hey ,
    I dont have answer for your problem. But even i have the same problem. I hav also got 800 min for India calling. i have started on 1 st July but unfortunatly it got ove ron 26 th july itself. so i have to wait till 1 st Aug fot it to get renewed. I tried doing it ..but it had shown me d same error. I am so stressed with this. If you get answer to this please post it. I wana renew my account before it gets expired not on the last day only.

  • PO workflow process raises event but subscription does not fire

    Hi:
    We are sending POs electronically in XML (11.5.10.2). The PO reaches the supplier correctly. The workflow process to send the PO to the supplier completes successfully. The workflow diagrammer shows that the process fully completes. The last task in the standard process raises an event called oracle.apps.po.event.xmlposent. By default this event has no subscriptions, but I created a subscription that will call a custom workflow process. In testing, I can manually raise this event, and my custom process works. But when the full process runs and completes my custom process does not run. Again, according to the workflow diagrammer, the event in question gets raised. I find no evidence of the event in question in an queue. Why would the process complete, including the step to raise the event in question, but I find no trace of it.
    Can anyone suggest additional debugging steps or a solution?
    Thank you!

    Hi,
    I have answered your duplicate post on the [WorkflowFAQ forum|http://smforum.workflowfaq.com/index.php?topic=1045.0].
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Launching Fireworks CS6 (Subscription) Mac "Not Responding"

    I have a CS6 subscription.
    I had not used FW CS6 (subscription service version) for a few months, maybe last December. But I used it and version predecessors regularly for years and today the CS6 Subscription would not open with Mac 10.8.3 where it basically shows startup screen and then puts mac into overdrive using about 62% of CPU where mac reports in monitor "Not Responding) and same message on Force Quit menu.
    So I did rename prefs in both Library and Application Support. That did not work.
    Then I removed Fireworks CS6 using Uninstall and reinstalled from the Adobe Application Manager.
    When the problem first started you would at least see the doc window, empty, no panels, no menu. but now after reinstall just see a small light gray window in top left corner of screen narrow width about 100 px(approx) and about 400 px (approx) with six horizontal lines.
    I am really dependent on FW as I have used it since days of Macromedia.
    So I am at a lost what to do next.
    [Edit]
    Spent an hour online chat support with Adobe. Not real happy about that experience.
    Most of the time spent gathering information about me. I would say I got about 5 minutes of the hour on the actual problem. But that abysmal support process deserved a different airing.
    After going over with three people,posting this link twice for two of them and once for the last one, the final one from the installation team, they concluded I need to make a call the support number and talk to a person for a resolution. Cannot see how that is better, using a voice to communicate technical issues, but I will try and provide an update.
    But in meantime if anyone has a clue where to look. It almost feels FW is reloading modules or itself behind the scenes.

    the full error log is:
    Date/Time:       2013-04-05 21:39:34 -0400
    OS Version:      10.8.3 (Build 12D78)
    Architecture:    x86_64
    Report Version:  11
    Command:         Fireworks
    Path:            /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/MacOS/Adobe Fireworks CS6
    Version:         Adobe Fireworks CS6 version 12.0.0.236 (12.0.0)
    Parent:          launchd [146]
    PID:             717
    Event:           hang
    Duration:        1.14s
    Steps:           12 (100ms sampling interval)
    Hardware model:  MacBookAir5,2
    Active cpus:     4
    Free pages:      793677 pages (+51)
    Pageins:         37 pages
    Pageouts:        0 pages
    Process:         Adobe Fireworks CS6 [717]
    Path:            /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/MacOS/Adobe Fireworks CS6
    Architecture:    i386
    Parent:          launchd [146]
    UID:             502
    Task size:       30552 pages
    CPU Time:        0.869s
      Thread 0x43de     priority 46         cpu time   0.328s
    *12 hndl_alltraps + 225 (mach_kernel) [0xffffff80002cd401]
       *12 user_trap + 862 (mach_kernel) [0xffffff80002b833e]
         *12 exception_triage + 69 (mach_kernel) [0xffffff800021e5f5]
           *12 exception_deliver + 556 (mach_kernel) [0xffffff800021e45c]
             *12 exception_raise + 172 (mach_kernel) [0xffffff800024a40c]
               *8  mach_msg_rpc_from_kernel_body + 278 (mach_kernel) [0xffffff8000220f46]
                 *8  ipc_mqueue_receive + 66 (mach_kernel) [0xffffff8000213112]
                   *5  thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                     *5  ??? (mach_kernel + 190273) [0xffffff800022e741]
                       *5  machine_switch_context + 366 (mach_kernel) [0xffffff80002b403e]
                   *3  thread_block_reason + 352 (mach_kernel) [0xffffff800022da40]
                     *3  ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002b207b]
               *2  mach_msg_rpc_from_kernel_body + 199 (mach_kernel) [0xffffff8000220ef7]
                 *2  ipc_kmsg_send + 372 (mach_kernel) [0xffffff8000210554]
                   *2  ipc_mqueue_send + 388 (mach_kernel) [0xffffff8000212d34]
                     *2  ipc_mqueue_post + 539 (mach_kernel) [0xffffff8000212f7b]
                       *2  ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002b207b]
               *1  mach_msg_rpc_from_kernel_body + 634 (mach_kernel) [0xffffff80002210aa]
                 *1  ipc_kmsg_copyout_to_kernel + 90 (mach_kernel) [0xffffff800021270a]
                   *1  hw_lock_unlock + 31 (mach_kernel) [0xffffff80002ac7ff]
               *1  mach_msg_rpc_from_kernel_body + 232 (mach_kernel) [0xffffff8000220f18]
                 *1  usimple_lock + 8 (mach_kernel) [0xffffff80002b0488]
      Thread 0x43f2     DispatchQueue 1701273966 priority 48       
      12 _dispatch_mgr_thread + 53 (libdispatch.dylib) [0x9a58b7a9]
        12 kevent + 10 (libsystem_kernel.dylib) [0x982fd9ae]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x43f6     priority 54         cpu time   0.009s
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 TimerThread + 324 (CarbonCore) [0x9364e1a3]
            12 TSWaitOnSemaphoreRelative + 24 (CarbonCore) [0x9366840d]
              12 TSWaitOnSemaphoreCommon + 272 (CarbonCore) [0x93668184]
                12 TSWaitOnConditionTimedRelative + 177 (CarbonCore) [0x936686ad]
                  12 pthread_cond_timedwait_relative_np + 47 (libsystem_c.dylib) [0x92ddb572]
                    12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                     *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x43f7     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 CooperativeThread + 308 (CarbonCore) [0x93665c4d]
            12 FW_PowerPlant::LThread::DoEntry(void*) + 30 (libPowerPlant2.dylib) [0x93b1352]
              12 FW_PowerPlant::LThread::Cleanup::Run() + 33 (libPowerPlant2.dylib) [0x93b060d]
                12 FW_PowerPlant::LSemaphore::Wait(long) + 71 (libPowerPlant2.dylib) [0x93af1f7]
                  12 FW_PowerPlant::LSemaphore::BlockThread(long) + 70 (libPowerPlant2.dylib) [0x93af18e]
                    12 FW_PowerPlant::LThread::SemWait(FW_PowerPlant::LSemaphore*, long, QHdr&, unsigned char&) + 114 (libPowerPlant2.dylib) [0x93b027c]
                      12 SetThreadStateEndCritical + 111 (CarbonCore) [0x936660d4]
                        12 SetThreadState + 173 (CarbonCore) [0x93665e55]
                          12 YieldToThread + 389 (CarbonCore) [0x93666003]
                            12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                             *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4409     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (Adobe Fireworks CS6 + 12459297) [0xbe2d21]
              12 MPWaitOnQueue + 261 (CarbonCore) [0x935b4b8b]
                12 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9366868e]
                  12 TSWaitOnCondition + 128 (CarbonCore) [0x93668492]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4440     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (AdobeACE + 257433) [0x2ecdd99]
              12 ??? (AdobeACE + 260713) [0x2ecea69]
                12 MPWaitOnQueue + 261 (CarbonCore) [0x935b4b8b]
                  12 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9366868e]
                    12 TSWaitOnCondition + 128 (CarbonCore) [0x93668492]
                      12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                        12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                         *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4441     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (AdobeACE + 257433) [0x2ecdd99]
              12 ??? (AdobeACE + 260713) [0x2ecea69]
                12 MPWaitOnQueue + 261 (CarbonCore) [0x935b4b8b]
                  12 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9366868e]
                    12 TSWaitOnCondition + 128 (CarbonCore) [0x93668492]
                      12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                        12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                         *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4442     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (AdobeACE + 257433) [0x2ecdd99]
              12 ??? (AdobeACE + 260713) [0x2ecea69]
                12 MPWaitOnQueue + 261 (CarbonCore) [0x935b4b8b]
                  12 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9366868e]
                    12 TSWaitOnCondition + 128 (CarbonCore) [0x93668492]
                      12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                        12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                         *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x446c     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (Adobe Fireworks CS6 + 10819844) [0xa52904]
              12 ??? (Adobe Fireworks CS6 + 8673081) [0x846739]
                12 ??? (Adobe Fireworks CS6 + 8166105) [0x7caad9]
                  12 __accept + 10 (libsystem_kernel.dylib) [0x982fbe9a]
                   *12 ??? (mach_kernel + 842253) [0xffffff80002cda0d]
                     *12 unix_syscall + 467 (mach_kernel) [0xffffff80005e0343]
                       *12 accept_nocancel + 442 (mach_kernel) [0xffffff800059e8fa]
                         *12 msleep + 116 (mach_kernel) [0xffffff8000569154]
                           *12 ??? (mach_kernel + 3575142) [0xffffff8000568d66]
                             *12 lck_mtx_sleep + 78 (mach_kernel) [0xffffff80002265fe]
                               *12 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                                 *12 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                   *12 machine_switch_context + 366 (mach_kernel) [0xffffff80002b403e]
      Thread 0x4477     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 Invoke + 46771 (ServiceManager-Launcher.dylib) [0x1774a2eb]
            12 Invoke + 38189 (ServiceManager-Launcher.dylib) [0x17748165]
              12 Login + 15377 (ServiceManager-Launcher.dylib) [0x1773e09a]
                12 Login + 461 (ServiceManager-Launcher.dylib) [0x1773a656]
                  12 Invoke + 37242 (ServiceManager-Launcher.dylib) [0x17747db2]
                    12 Invoke + 36953 (ServiceManager-Launcher.dylib) [0x17747c91]
                      12 Invoke + 34757 (ServiceManager-Launcher.dylib) [0x177473fd]
                        12 Invoke + 34408 (ServiceManager-Launcher.dylib) [0x177472a0]
                          12 Invoke + 23745 (ServiceManager-Launcher.dylib) [0x177448f9]
                            12 Invoke + 23117 (ServiceManager-Launcher.dylib) [0x17744685]
                              12 Invoke + 21103 (ServiceManager-Launcher.dylib) [0x17743ea7]
                                12 Invoke + 20343 (ServiceManager-Launcher.dylib) [0x17743baf]
                                  12 Invoke + 40407 (ServiceManager-Launcher.dylib) [0x17748a0f]
                                    12 Invoke + 40272 (ServiceManager-Launcher.dylib) [0x17748988]
                                      12 Invoke + 44046 (ServiceManager-Launcher.dylib) [0x17749846]
                                        12 Invoke + 47867 (ServiceManager-Launcher.dylib) [0x1774a733]
                                          12 __recvfrom + 10 (libsystem_kernel.dylib) [0x982fcb3e]
                                           *12 ??? (mach_kernel + 842253) [0xffffff80002cda0d]
                                             *12 unix_syscall + 467 (mach_kernel) [0xffffff80005e0343]
                                               *12 recvfrom_nocancel + 255 (mach_kernel) [0xffffff800059fb1f]
                                                 *12 ??? (mach_kernel + 3800446) [0xffffff800059fd7e]
                                                   *12 soreceive + 5579 (mach_kernel) [0xffffff800059895b]
                                                     *12 sbwait + 175 (mach_kernel) [0xffffff800059bb6f]
                                                       *12 msleep + 116 (mach_kernel) [0xffffff8000569154]
                                                         *12 ??? (mach_kernel + 3575142) [0xffffff8000568d66]
                                                           *12 lck_mtx_sleep + 78 (mach_kernel) [0xffffff80002265fe]
                                                             *12 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                                                               *12 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                                                 *12 machine_switch_context + 366 (mach_kernel) [0xffffff80002b403e]
      Thread 0x447f     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 83439 (adbeapeengine) [0x1ab4962f]
                  12 APXGetHostAPI + 2633743 (adbeapeengine) [0x1adb804f]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4480     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 83439 (adbeapeengine) [0x1ab4962f]
                  12 APXGetHostAPI + 2633743 (adbeapeengine) [0x1adb804f]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4481     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 83439 (adbeapeengine) [0x1ab4962f]
                  12 APXGetHostAPI + 2633743 (adbeapeengine) [0x1adb804f]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4482     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 83439 (adbeapeengine) [0x1ab4962f]
                  12 APXGetHostAPI + 2633743 (adbeapeengine) [0x1adb804f]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x448d     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 2736590 (adbeapeengine) [0x1add120e]
                  12 APXGetHostAPI + 2633687 (adbeapeengine) [0x1adb8017]
                    12 pthread_cond_timedwait_relative_np + 47 (libsystem_c.dylib) [0x92ddb572]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x448e     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 4264232 (adbeapeengine) [0x1af46168]
                  12 APXGetHostAPI + 2633687 (adbeapeengine) [0x1adb8017]
                    12 pthread_cond_timedwait_relative_np + 47 (libsystem_c.dylib) [0x92ddb572]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x448f     priority 46         cpu time   0.531s
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          9  ExternalPlayer_Initialize + 1873594 (AuthPlayLib) [0x1d423942]
            9  mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
             *7  hndl_mach_scall + 222 (mach_kernel) [0xffffff80002cdaee]
               *7  ??? (mach_kernel + 679038) [0xffffff80002a5c7e]
                 *7  mach_msg_overwrite_trap + 427 (mach_kernel) [0xffffff800021970b]
                   *7  ipc_mqueue_receive + 59 (mach_kernel) [0xffffff800021310b]
                     *7  thread_block_reason + 275 (mach_kernel) [0xffffff800022d9f3]
                       *4  ??? (mach_kernel + 187521) [0xffffff800022dc81]
                         *4  processor_idle + 227 (mach_kernel) [0xffffff800022f1c3]
                           *4  machine_idle + 282 (mach_kernel) [0xffffff80002b901a]
                       *3  ??? (mach_kernel + 187510) [0xffffff800022dc76]
                         *3  ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002b207b]
             *2  call_continuation + 23 (mach_kernel) [0xffffff80002b2977]
               *2  mach_msg_receive_continue + 33 (mach_kernel) [0xffffff8000219551]
                 *1  ipc_kmsg_put + 106 (mach_kernel) [0xffffff80002105fa]
                   *1  ??? (mach_kernel + 720693) [0xffffff80002aff35]
                 *1  mach_msg_receive_results + 498 (mach_kernel) [0xffffff80002192b2]
                   *1  ipc_kmsg_copyout + 65 (mach_kernel) [0xffffff8000212251]
                     *1  ipc_kmsg_copyout_body + 233 (mach_kernel) [0xffffff8000212129]
                       *1  ipc_kmsg_copyout_port_descriptor + 68 (mach_kernel) [0xffffff8000211c34]
                         *1  ipc_object_copyout + 41 (mach_kernel) [0xffffff8000214409]
                           *1  usimple_lock + 6 (mach_kernel) [0xffffff80002b0486]
          3  ExternalPlayer_Initialize + 1873438 (AuthPlayLib) [0x1d4238a6]
            3  ExternalPlayer_Initialize + 1873327 (AuthPlayLib) [0x1d423837]
              1  ExternalPlayer_Initialize + 1874127 (AuthPlayLib) [0x1d423b57]
                1  thread_suspend + 90 (libsystem_kernel.dylib) [0x982f6014]
                  1  mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                   *1  hndl_mach_scall + 222 (mach_kernel) [0xffffff80002cdaee]
                     *1  ??? (mach_kernel + 679038) [0xffffff80002a5c7e]
                       *1  mach_msg_overwrite_trap + 119 (mach_kernel) [0xffffff80002195d7]
                         *1  ipc_kmsg_get + 115 (mach_kernel) [0xffffff8000210133]
                           *1  ??? (mach_kernel + 720980) [0xffffff80002b0054]
              1  ExternalPlayer_Initialize + 1874231 (AuthPlayLib) [0x1d423bbf]
                1  thread_set_state + 208 (libsystem_kernel.dylib) [0x982f5f35]
                  1  mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                   *1  hndl_mach_scall + 222 (mach_kernel) [0xffffff80002cdaee]
                     *1  ??? (mach_kernel + 679038) [0xffffff80002a5c7e]
                       *1  mach_msg_overwrite_trap + 187 (mach_kernel) [0xffffff800021961b]
                         *1  ipc_kmsg_send + 104 (mach_kernel) [0xffffff8000210448]
                           *1  ipc_kobject_server + 317 (mach_kernel) [0xffffff8000220aed]
                             *1  ??? (mach_kernel + 357403) [0xffffff800025741b]
                               *1  ??? (mach_kernel + 246531) [0xffffff800023c303]
                                 *1  thread_stop + 409 (mach_kernel) [0xffffff800022cfd9]
                                   *1  ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002b207b]
              1  ExternalPlayer_Initialize + 1874160 (AuthPlayLib) [0x1d423b78]
                1  thread_get_state + 172 (libsystem_kernel.dylib) [0x982f5d2d]
                  1  mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                   *1  hndl_mach_scall + 222 (mach_kernel) [0xffffff80002cdaee]
                     *1  ??? (mach_kernel + 679038) [0xffffff80002a5c7e]
                       *1  mach_msg_overwrite_trap + 153 (mach_kernel) [0xffffff80002195f9]
                         *1  ipc_kmsg_copyin + 33 (mach_kernel) [0xffffff8000211601]
                           *1  ipc_kmsg_copyin_header + 1013 (mach_kernel) [0xffffff8000210a45]
      Thread 0x4490     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 ??? (AuthPlayLib + 2987354) [0x1d24e55a]
            12 ExternalPlayer_Initialize + 87949 (AuthPlayLib) [0x1d26fa15]
              12 ??? (AuthPlayLib + 2986332) [0x1d24e15c]
                12 pthread_cond_wait + 48 (libsystem_c.dylib) [0x92e68af0]
                  12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                   *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4491     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 ??? (AuthPlayLib + 2987354) [0x1d24e55a]
            12 ExternalPlayer_Initialize + 87949 (AuthPlayLib) [0x1d26fa15]
              12 ??? (AuthPlayLib + 2986332) [0x1d24e15c]
                12 pthread_cond_wait + 48 (libsystem_c.dylib) [0x92e68af0]
                  12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                   *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4492     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 ??? (AuthPlayLib + 2987354) [0x1d24e55a]
            12 ExternalPlayer_Initialize + 87949 (AuthPlayLib) [0x1d26fa15]
              12 ??? (AuthPlayLib + 2986332) [0x1d24e15c]
                12 pthread_cond_wait + 48 (libsystem_c.dylib) [0x92e68af0]
                  12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                   *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4493     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 ??? (AuthPlayLib + 2987354) [0x1d24e55a]
            12 ExternalPlayer_Initialize + 87949 (AuthPlayLib) [0x1d26fa15]
              12 ??? (AuthPlayLib + 2986332) [0x1d24e15c]
                12 pthread_cond_wait + 48 (libsystem_c.dylib) [0x92e68af0]
                  12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                   *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x449f     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 catch_exception_raise + 4487288 (Adobe Fireworks CS6) [0x10eff88]
            12 catch_exception_raise + 4464217 (Adobe Fireworks CS6) [0x10ea569]
              12 catch_exception_raise + 4486363 (Adobe Fireworks CS6) [0x10efbeb]
                12 __semwait_signal + 10 (libsystem_kernel.dylib) [0x982fcc72]
                 *12 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x44a0     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (Adobe Fireworks CS6 + 10819844) [0xa52904]
              12 ??? (Adobe Fireworks CS6 + 9919210) [0x976aea]
                12 RunCurrentEventLoop + 61 (HIToolbox) [0x995b2193]
                  12 RunCurrentEventLoopInMode + 242 (HIToolbox) [0x99450f5a]
                    12 CFRunLoopRunInMode + 123 (CoreFoundation) [0x92fe5e9b]
                      12 CFRunLoopRunSpecific + 378 (CoreFoundation) [0x92fe602a]
                        12 __CFRunLoopRun + 1247 (CoreFoundation) [0x92fe696f]
                          12 __CFRunLoopServiceMachPort + 185 (CoreFoundation) [0x92fe0f89]
                            12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                             *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Binary Images:
                  0x1000 -          0x17b2ff3  com.macromedia.fireworks Adobe Fireworks CS6 version 12.0.0.236 (12.0.0) <2F0A75BA-AD91-EA3C-EFBF-9218722A0DF5> /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/MacOS/Adobe Fireworks CS6
               0x2e8f000 -          0x300bff3  com.adobe.ACE AdobeACE 2.19.18.19243 (2.19.18.19243) <464E11C2-11BF-EED9-445F-B110D65E1944> /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
               0x9305000 -          0x940dfff  libPowerPlant2.dylib <97FD0C33-9BA8-83BC-CD83-97E5A5297ADA> /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/Frameworks/libPowerPlant2.dylib
              0x17735000 -         0x1775cffb  ServiceManager-Launcher.dylib <4EEAF886-0B48-9FF4-BE65-41E222123A50> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
              0x1ab00000 -         0x1ba48fcb  com.adobe.ape.engine 3.3.8.19346 (3.3.8.19346) <FB642021-E854-27B0-9C15-E3567B4F56B9> /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbea peengine
              0x1cf75000 -         0x1d60affb  com.macromedia.Flash Player.authplaylib 10.0.0.508 (1.0.1d333) <02A2245F-4883-4AA8-B06C-47704216613B> /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/PlugIns/AuthPlayLib.bundle/Contents/MacOS/AuthPlayLib
              0x92dc0000 -         0x92e7dfeb  libsystem_c.dylib <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
              0x92faf000 -         0x93197ffb  com.apple.CoreFoundation 6.8 (744.18) <68AFEE40-0078-347E-9DEE-32CFE0062A10> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
              0x935a5000 -         0x938aaff7  com.apple.CoreServices.CarbonCore 1037.5 (1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
              0x982e8000 -         0x98302ffc  libsystem_kernel.dylib <70C520E8-0394-3DFB-823B-FE8C251C169A> /usr/lib/system/libsystem_kernel.dylib
              0x993f9000 -         0x997dcfff  com.apple.HIToolbox 2.0 <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
              0x9a587000 -         0x9a599ff7  libdispatch.dylib <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         1Password Helper [229]
    Path:            /Applications/1Password.app/Contents/Library/LoginItems/1Password Helper.app/Contents/MacOS/1Password Helper
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean
    Task size:       3291 pages
    Process:         1PasswordAgent [188]
    Path:            /Users/USER/Library/Application Support/1Password/*/1PasswordAgent.app/Contents/MacOS/1PasswordAgent
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Task size:       4806 pages
    Process:         accountsd [194]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean (allows idle exit)
    Task size:       1364 pages
      Thread 0x6fd      DispatchQueue 1          priority 31       
      12 start + 1 (libdyld.dylib) [0x7fff949ba7e1]
        12 ??? (accountsd + 3048) [0x101fabbe8]
          12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
            12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
              12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                 *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x71f      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x101fab000 -        0x101fabfff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8c1bc000 -     0x7fff8c3a6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff949b8000 -     0x7fff949bbff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AdobeCrashDaemon [719]
    Path:            /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaemon.app/Co ntents/MacOS/AdobeCrashDaemon
    Architecture:    x86_64
    Parent:          Adobe Fireworks CS6 [717]
    UID:             502
    Task size:       1083 pages (+1)
    CPU Time:        0.005s
    Process:         AirPort Base Station Agent [232]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean
    Task size:       515 pages
      Thread 0xa23      DispatchQueue 1          priority 31       
      12 ??? (AirPort Base Station Agent + 3676) [0x10598ce5c]
        12 ??? (AirPort Base Station Agent + 71073) [0x10599d5a1]
          12 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8c1ffdd1]
            12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
              12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                  12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                   *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xa24      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0xa2f      priority 31       
      12 thread_start + 13 (libsystem_c.dylib) [0x7fff89c951e1]
        12 _pthread_start + 327 (libsystem_c.dylib) [0x7fff89ca87a2]
          12 __select + 10 (libsystem_kernel.dylib) [0x7fff8914b322]
           *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x10598c000 -        0x1059a2fff  com.apple.AirPortBaseStationAgent 2.0 (200.4) <76A9C7FD-FFC5-3AB2-B7FD-9349F8AB5F2D> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c94000 -     0x7fff89d60ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
          0x7fff8c1bc000 -     0x7fff8c3a6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         Android File Transfer Agent [220]
    Path:            /Users/USER/Library/Application Support/Google/*/Android File Transfer Agent.app/Contents/MacOS/Android File Transfer Agent
    Architecture:    i386
    Parent:          launchd [146]
    UID:             502
    Task size:       803 pages
    Note:            Throttled by external source
    Process:         appleeventsd [70]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       678 pages
      Thread 0x2ee      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x2ef      DispatchQueue 7          priority 31       
      12 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8d97dd85]
        12 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8914b566]
         *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x10614b000 -        0x10614bfff  appleeventsd <33899092-67A8-3A39-A63C-27BAC6C22174> /System/Library/CoreServices/appleeventsd
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AppleIDAuthAgent [176]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean (allows idle exit)
    Task size:       492 pages
      Thread 0x6e3      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x6e5      DispatchQueue 7          priority 31       
      12 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8d97dd85]
        12 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8914b566]
         *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0xbf4      DispatchQueue 16         priority 31       
      12 start_wqthread + 13 (libsystem_c.dylib) [0x7fff89c951d1]
        12 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff89caad0b]
          12 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8d97f1c3]
            12 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8d97f2f1]
              12 _dispatch_queue_drain + 180 (libdispatch.dylib) [0x7fff8d97f448]
                12 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x7fff8d97f305]
                  12 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x7fff8d98029b]
                    12 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff8d97e0b6]
                      12 _dispatch_after_timer_callback + 22 (libdispatch.dylib) [0x7fff8d98296f]
                        12 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff8d97e0b6]
                          12 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8d981f01]
                            12 ??? (AppleIDAuthAgent + 9227) [0x10715d40b]
                              12 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x7fff891496c2]
                               *12 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Binary Images:
             0x10715b000 -        0x10718bfff  AppleIDAuthAgent <91A3B8DC-AD42-399C-9A44-413CF8DF2CA4> /System/Library/CoreServices/AppleIDAuthAgent
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c94000 -     0x7fff89d60ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AppleSpell [723]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean
    Task size:       1194 pages
      Thread 0x4421     DispatchQueue 1          priority 46       
      12 start + 1 (libdyld.dylib) [0x7fff949ba7e1]
        12 ??? (AppleSpell + 7271) [0x10d28dc67]
          12 -[NSSpellServer run] + 73 (Foundation) [0x7fff8d006516]
            12 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8c1ffdd1]
              12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
                12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                  12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                    12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                     *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4424     DispatchQueue 2          priority 48       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x10d28c000 -        0x10d341ff7  com.apple.AppleSpell 1.9 (173.1) <6ED0981A-B081-3345-8EBB-E4AB821B077A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8c1bc000 -     0x7fff8c3a6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ce84000 -     0x7fff8d1e1ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff949b8000 -     0x7fff949bbff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         apsd [193]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2110 pages
      Thread 0x6ea      DispatchQueue 1          priority 31       
      12 start + 1 (libdyld.dylib) [0x7fff949ba7e1]
        12 ??? (apsd + 21734) [0x1070ed4e6]
          12 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8ceb775a]
            12 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8cf1ef5e]
              12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
                12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                  12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                    12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                     *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x710      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x7c5      priority 63       
      12 thread_start + 13 (libsystem_c.dylib) [0x7fff89c951e1]
        12 _pthread_start + 327 (libsystem_c.dylib) [0x7fff89ca87a2]
          12 __NSThread__main__ + 1345 (Foundation) [0x7fff8cf19cd2]
            12 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff8cebbb66]
              12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
                12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                  12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                    12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                     *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x7cc      priority 31       
      12 thread_start + 13 (libsystem_c.dylib) [0x7fff89c951e1]
        12 _pthread_start + 327 (libsystem_c.dylib) [0x7fff89ca87a2]
          12 __select + 10 (libsystem_kernel.dylib) [0x7fff8914b322]
           *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x1070e8000 -        0x107166ff7  apsd <44247DBB-E2FB-3858-9CDD-F5C3C5FBAA6A> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c94000 -     0x7fff89d60ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
          0x7fff8c1bc000 -     0x7fff8c3a6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ce84000 -     0x7fff8d1e1ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff949b8000 -     0x7fff949bbff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         autofsd [74]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       469 pages
      Thread 0x2e2      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x2e3      DispatchQueue 7          priority 31       
      12 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8d97dd85]
        12 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8914b566]
         *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x10d596000 -        0x10d597fff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         BBDaemon [77]
    Path:            /Library/Application Support/BlackBerry/BBDaemon
    Architecture:    i386
    Parent:          launchd [1]
    UID:             0
    Task size:       469 pages (-2)
    Process:         BBLaunchAgent.app [184]
    Path:            /Library/Application Support/BlackBerry/BBLaunchAgent.app
    Architecture:    i386
    Parent:          launchd [146]
    UID:             502
    Task size:       716 pages
    CPU Time:        0.001s
    Process:         BlackBerry-Link-Helper-Agent [183]
    Path:            /Library/Application Support/BlackBerry/BlackBerry-Link-Helper-Agent.app/Contents/MacOS/BlackBerry-Link-Helper -Agent
    Architecture:    i386
    Parent:          launchd [146]
    UID:             502
    Task size:       6657 pages
    Process:         blued [37]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       1339 pages
      Thread 0x259      DispatchQueue 1          priority 31       
      12 start + 1 (libdyld.dylib) [0x7fff949ba7e1]
        12 ??? (blued + 169421) [0x10debc5cd]
          12 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8ceb775a]
            12 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8cf1ef5e]
              12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
                12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                  12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                    12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                     *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x25a      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]

  • Cancelling subscriptions; instructions not working

    The page https://support.skype.com/en/faq/FA1881/how-do-i-cancel-my-subscription with instructions to cancel my subscription does not seem to be correct for me; I do not have the options shown to cancel my subscription. Can anyone tell me if there is now a different way to cancel?
    As additional feedback (for Skype): the reason why I want to cancel my unlimited calling subscriptions is that Skype continues to attempt to obtain unauthorized payments at random times throughout the year, for various amounts not matching my subscriptions and at dates other than subscription renewal date. Luckily, my stored payment method doesn't work anymore... This continues to happen even after various complaints throughout the years. This is of course completely unacceptable, and quite frankly unbelievable for what I thought was a mature company. And to be completely childish in my feedback: the lack of maturity of course also shows in the successfull attempt hide every way to address Skype directly with these kind of issues nowadays.... It's been many years, Skype, but you're close to losing me completely as a customer.

    What do you mean by "it does not work when i copy it into safari?" Does Safari return an error message? Does the address to the calendar start with "http" or with "webcal?" If you enter the address starting with "webcal" into Safari, it should directly try to subscribe to it using iCal. What I was wondering is whether Safari displays the calendar if you enter the address starting with "http."

  • Subscription for phone calls to Poland

    Hello, my name is Maria
    I paid Au Dollars 4.47 for my 180 minutes Skype calls to Poland on 13.11.2012 thru
    Commonwealth Bank , branch Glendale NSW , BBS 2836 and my subscription is not  yet activated. Please check below details and send me a prompt reply
    *removed for privacy*
    To global Collect BV account number ********
     Thank you for  the attention

    Hi,
    Please check this FAQ: https://support.skype.com/en/faq/FA10661
    If my answer helped to fix your issue, mark it as a Solution to help others.
    Thank You!
    Please send private messages only upon request.

  • Failover callback NOT registered. - What it's mean?

    Hi
    In the logs we receives information’s " ... Failover callback NOT registered." What it's exactly mean?
    We use TT RO Cache groups to RAC.
    The OracleDB and Oracle client the same version 10.2
    10:54:50.91 Info: ORA: 9391: ora-9391-0013-raStuff08713: refresh.c:4051 (srvH ctx func) = (0x00000000009b1358 0x0000000000000000(0x0000000000000000 0x0000000000000000) 0x0000000000000000) Failover callback NOT registered.
    BR
    Andrzej

    root@tbaltJSLEE1# ttVersion
    TimesTen Release 7.0.5.0.0 (64 bit Solaris/x86) (tt70:17001) 2008-04-04T00:06:18Z
    Instance admin: jnetx
    Instance home directory: /opt/TimesTen/tt70
    Daemon home directory: /var/TimesTen/tt70
    Access control enabled.
    root@tbaltJSLEE1#
    Command> call ttConfiguration;
    < CkptFrequency, 600 >
    < CkptLogVolume, 0 >
    < CkptRate, 0 >
    < ConnectionCharacterSet, UTF8 >
    < ConnectionName, ccompldsn >
    < Connections, 64 >
    < DataBaseCharacterSet, UTF8 >
    < DataStore, /data/DataStore/CCOMPL/ccomplds >
    < DurableCommits, 0 >
    < GroupRestrict, <NULL> >
    < LockLevel, 0 >
    < LockWait, 10 >
    < LogBuffSize, 65536 >
    < LogDir, /data/DataStore/CCOMPL/log >
    < LogFileSize, 64 >
    < LogFlushMethod, 1 >
    < LogPurge, 1 >
    < Logging, 1 >
    < MemoryLock, 0 >
    < NLS_LENGTH_SEMANTICS, BYTE >
    < NLS_NCHAR_CONV_EXCP, 0 >
    < NLS_SORT, BINARY >
    < OracleID, SUNSEED >
    < PassThrough, 0 >
    < PermSize, 1000 >
    < PermWarnThreshold, 90 >
    < PrivateCommands, 0 >
    < Preallocate, 0 >
    < QueryThreshold, 0 >
    < RACCallback, 1 >
    < SQLQueryTimeout, 0 >
    < TempSize, 64 >
    < TempWarnThreshold, 90 >
    < Temporary, 0 >
    < TransparentLoad, 0 >
    < TypeMode, 0 >
    < UID, CCOMPL >
    37 rows found.
    Command>

Maybe you are looking for

  • Can any one tell me how to send one PO to mutilple mail ids in vendor maste

    Hi Experts, Can any one tell me how to send one PO as a mail to multiple vendors who are all maintained in my vendor master record Suppose I have 3 mail ids in my Vendor master record and I created a PO with that vendor, will that PO goes to all the

  • Rechargeable batteries with Magic Mouse?

    is it possible to use Rechargeable Nimh batteries with the magic mouse? Thanks

  • CS 5.1

    Hi, I an running Adobe CS 5.1. There is something wrong with it (i supose). Installation was OK.    I downloaded RAW version 6.7.0.339 and indeed, i can open a RAW file and work on it. My camera is: Canon 600D.  I see that the program is reading  and

  • Execute workitem link

    In HCm forms  when it goes for first level approval.. There is a link 'Execute Workitem' in the inbox of the approver... In the some application, when we click on this link it is taking to the portal as the task is the Webdynpro Java application task

  • Illustrator: improve the anchor and direction points as also the direction lines.

    The work with anchor and direction points, as well as their direction lines is often frustrating. This is caused by two main problems. a) Anchor and direction points are visually not different enough, hence give us many options to do that please, e.g