Double = int / constant

I have a double
I just want to write:
Ratio=this.getSize().width/500;
and i get tons of errors, i tried to do it using a temporary float but i had other problems with it too
any advices?

int / int == int (I think).
Try:
Ratio=this.getSize().width/500.0; // Note the .0
You can store an int into a double.Sure, but the arithmetic will be off. For instance,
if width is 750, he probably wants Ratio equal to
1.5, not 1.0 - which is what integer division would
do to him if width is an integer and he left off the
".0" part.True but that would not lead to tons of errors, well I suppose it would be a "calculation error" but that doesn't sound like it here. For all we know the problem might be in another part of his program.. I'm betting on classpath issues ;-)

Similar Messages

  • Overloading ambiguity between "std::pow(double, int)" and "std::pow(long do

    hello all,
    we have a problem with sources coming from visual c++, i can reproduce the problem with the small code:
    $ cat test.cc
    #include <math.h>
    int main()
    double kk;
    int j11;
    j11=4;
    kk=pow(2,j11);
    $ CC test.cc
    "test.cc", line 8: Error: Overloading ambiguity between "std::pow(double, int)" and "std::pow(long double, int)".
    1 Error(s) detected.we are on linux, with sun studio 12u1
    thanks in advance for help,
    gerard

    The issue is whether the standard headers associated with the compiler have the overloads required by the standard. If the required overloads are present, the original call of std::pow is ambiguous, and the compiler will report it.
    If you have a recent version of Visual C++, I'd be very surprised if the function overloads were not available. Possibly you are using a compiler option, perhaps a default option, that hides the overloaded declarations. In that case, some C++ code that conforms to the standard would not behave correctly when used with the compiler in that mode.
    The correct approach is to use the compiler in standard-conforming mode so that code you write will be accepted by other standard-conforming compilers. That is, after all, the purpose of the standard.

  • Problem with reading numbers from file into double int array...

    Okay, this is a snippet of my code:
    public void readMap(String file){
            try {
                URL url = getClass().getResource(file);
                System.out.println(url.getPath());
                BufferedReader in = new BufferedReader(new FileReader(url.getPath()));
                String str;
                String[] temp;
                int j=0;
                while ((str = in.readLine()) != null) {
                    temp = str.split(",");
                    for(int i=0;i<temp.length;i++){
                        map[j] = java.lang.Integer.parseInt(temp[i]);
    j++
    in.close();
    } catch (IOException e) {
    System.out.println("Error: "+ e.toString());
    map[][] is a double int array. Now, the code is running through each line of the text file (with each line looking like this: 0,3,6,2,2,3,1,5,2,3,5,2), and I want to put the numbers into a corresponding double int array (which is where map[][] comes in). Now, this code WOULD work, except I need to set the sizes of each array before I start adding, but I don't know how to get the exact sizes.. how can I get around this issue?
    Message was edited by:
    maxfarrar

    You can do a two-dimensional ArrayList? That syntax
    you wrote didn't work.
    I tried doing:
    private ArrayList<ArrayList><Integer>> map;
    Your syntax is just wrong -- or, this forum software has bug in handling angle brackets.
    ArrayList<ArrayList<Integer>>...The closing angle bracket after the second 'ArrayList' is the one generated by the bug. Basically, it should be T<T<T2>> without spaces. Oh, for that matter:
    Arraylist<ArrayList<Integer>>

  • Multiply double with const????

    how can I multiply a double with another double, e.g. 1.2345? It does not work, but I can multiply with int. What can I do?

    FWIW, I believe there are some classes out there that allow you to format your output and more importantly in the case of money, round appropriately so that they behave well instead of the infamous truncation that ocurrs that can cause people to lose $$ or deutsche marks, etc.
    -Felix

  • Newbie problem: cast double- int

    hi!
    let's say i have got a variable double x = 15.03 an ii want it as integer value, but a normal cast does not work for me.
    i tried int y = (int)x and Integer y = new Integer().parseInt(x), but the compiler says cannot cast double to integer...
    whats my fault?

    i should give information to you. its all about writing a rgb image filter.
    int alpha = argb >>> 24;
    int rot = argb&0x00ff0000>>>16;
    int gruen = argb&0x0000ff00>>>8;
    int blau = argb&0x000000ff;
    int sw = (int) ((double) rot)*0.59 + ((double) gruen)*0.35+((double) blau)*0.11;
    return (alpha<<24|sw<<16|sw<<8|sw);
    when i run the class in eclipse i get the error cannot cast from double to integer. i think the error is in the line that starts with int sw = ...

  • Int, Double Help please

    Ok, I give up. I cannot figure out the most elementary of concepts here and am tired and frustrated.
    My code will not help the question so I won't waste space with it. Here is my problem:
    I am creating an applet to calculate fabric yardage. I need to be able to read in the input which will either be an int or a double/float to 2 decimal places.
    I will then use that to calculate yardage using a numberOfStrips * width style equation. This equation will need to be rounded up to the nearest integer, thus, a 2.34 will need to go up to a 3 not down to a 2.
    I have tried every combination of float, double, int and cannot figure this out. I cannot use the double.parseDouble() to read in a double because Netscape will not recognize it and any time I attempt to cast to a double from an int, or vice versa, I just get 'loss of precision' errors from compilers.
    I am giving up for now but I hope someone can help me figure this out. (Why don't they teach real world stuff like this in classes!)
    TIA

    I don't understand what you mean by "I cannot use the
    double.parseDouble() to read in a double because
    Netscape will not recognize it" so I can't help
    there.Wow, thanks everyone, I wil try these suggestions. when I was trying to use double.parseDouble() in netscape (communicator 4.78), it just doesn't do anything. It loads the applet, but when I press the button, nothing.
    I found on another site, the O'Reilly site, and it said that Netscape doesn't recognize Double without the plug-in. Problem is, I am trying to install the plug-in, and it doesn't find Netscape as a browser option. Ugh. I have to assume that this will work for all users so if it crashes on Netscape, need to figure out how to get around that.
    I will try these suggestions.

  • Fast scaling of double values?

    So far, I use my own method to scale double values:
         * Scale decimal number via the rounding mode BigDecimal.ROUND_HALF_UP.
         * @param value Decimal value.
         * @param scale New scale.
         * @param roundingMode Optional rounding mode from BigDecimal.ROUND_... constants. (Default: BigDecimal.ROUND_HALF_UP)
         * @return Scaled number.
         * @since 1.8.3
        static public double getScaled(double value, final int scale, final int... roundingMode) {
            double result = value; //default: unscaled
            value = (Double.isNaN(value) || Double.isInfinite(value)) ? 0.0 : value; //reser NaN
            //use BigDecimal String constructor as this is the only exact way for double values
            int rm = BigDecimal.ROUND_HALF_UP;
            if (roundingMode != null && roundingMode.length > 0) {
                rm = roundingMode[0];
            result = new BigDecimal(""+value).setScale(scale, rm).doubleValue();
            return result;
        }//getScaled()BigDecimal offers scale methods, so I use them. The String constructor is also the only way to convert a double into a BigDecimal.
    This works fine but is quite slow on heavy number crunching with lots of scales. Is there a faster way?

    After heavy profiling of our number crunching apps, I replaced my former scaling method (with BigDecimal) with a costum version:
         * Get scaled decimal value with a fixed rounding method 'ROUND_HALF_UP'.
         * <p>
         * Note: there's also a getScaled() version that supports more rounding modes but is slower.
         * @param value Value to scale.
         * @param scale New scale.
         * @return Scaled values.
         * @since 2.14.0
         * @see #getScaled(double, int, int) Scaling with custom rounding mode.
        static public double getScaled(double value, final int scale) {
            double result = 0.0; //default: unscaled
            if (value != 0.0 && !Double.isNaN(value) && !Double.isInfinite(value)) {
                final BigDecimal bd = new BigDecimal(""+value);
                final int signum = bd.signum();
                final long l = bd.unscaledValue().abs().longValue();
                final int s = scale - bd.scale();
                if (s < 0) { //new scale is smaller than old scale
                    long l2 = l / (long) Math.pow(10.0, -s); //cut old unrequired scale
                    final long roundDigit = (l / (long) Math.pow(10.0, -s -1)) % 10;
                    if (roundDigit >= 5) {
                        l2 +=1;
                    result = l2 / Math.pow(10.0, scale);
                } else { //new scale is equal or greater than old scale
                    result = (l * Math.pow(10.0, s)) / Math.pow(10.0, scale);
                if (signum == -1) {
                    result = -result;
            }//else: Nan/Infinite => 0.0
            return result;
        }//getScaled()And even though it looks a bit scary, it make the whole application more than twice as fast (4 Minutes compared to 9 Minutes with the former BigDecimal scaling). As our app does lots of different calculations with lots of interim scaling and storing, this performance gain is quite surprising, as it shows that BigDecimal is not very usefull for massive math calculations ...

  • Most efficient way to strip nulls from a Double[] array?

    I'm trying to optimize performance of some code that needs to accept a Double[] array (or a List<Double>) and fetch the median of the non-null values. I'm using org.apache.commons.math.stat.descriptive.rank.Median to fetch the median after converting to double[]. My question is how I can most efficiently make this conversion?
    public class MathStatics {
         private static Median median = new Median();
         public static Double getMedian(Double[] doubles) {
              int numNonNull = 0;
              for (int i = 0; i < doubles.length; i++) {
                   if (doubles[i] != null) numNonNull++;
              double[] ds = new double[numNonNull];
              for (int i = 0; i < doubles.length; i++) {
                   if (doubles[i] != null) ds[i] = doubles;
                   System.out.println(ds[i]);
              return median.evaluate(ds);
         public static void main(String[] args) {
              Double[] test = new Double[] {null,null,-1.1,2.2,5.8,null};
              System.out.println(MathStatics.getMedian(test));
    I'm sure that the code I wrote above is clunky and amateurish, so I'd really appreciate some insight into how to make improvements. FWIW, the arrays will typically range in size from ~1-15,000 doubles.
    Thanks!

    There's no need to loop over the array twice
              int numNonNull = 0;
              double[] ds = new double[numNonNull];
              for (int i = 0; i < doubles.length; i++) {
                   if (doubles[i] != null) {
    numNonNull++;
    ds[i] = doubles;
                   System.out.println(ds[i]);
    Except that ds will have length zero, so you'll get a OutOfBoundsException every time you use it.
    As you're using Doubles rather than doubles, you can add the non-null values to an ArrayList and then convert it to an array at the end.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem with Expilicit Instantiation using const

    Hello All,
    I have a global template function
    template <typename T> int getValue(T t);
    defined in file "a.h"
    I am trying to do explicit instantiation of this function in "b.h" like this:
    #include "a.h"
    struct B;
    template <> int getValue<const B&>(const B& t);
    where "B" is any Structure.
    Definition of above function is present in "b.C" as:
    template<> int getValue<const B&>(const B& t)
         return t.getIntValue();
    getIntValue() defined in Struct B returns int identifier of that object.
    On Compiling this code using Forte Compiler 5.3 update 2 i am getting following Errors.
    >>
    /opt/SUNWspro/bin/../WS6U2/bin/CC -g -c -o output/main.o
    main.C
    main.C:
    *** Error code 1
    "b.h", line 3: Error: No match found to do explicit
    instantation of type int(const B&).
    1 Error(s) detected.
    dmake: Fatal error: Command failed for target `output/main.o'
    <<
    Can anybody tell me what can be the problem. One thing to note is that same code use to compile using Forte 5.3 update 1.
    Also if I remove const declaration in explicit instantiation the code compiles.
    Please respond ASAP.
    Best Regards,
    Sanyam

    The compiler does not generate template instances that are already in libCstd, which is linked by default to programs. Instead of trying to force those instances into your shared library, you should build your library with a dependency on libCstd.
    Remember that no system libraries are referenced automatically when you create a shared library -- you have to mention them explicitly. Normally you want to link against libCstd, libCrun, libm and libc. Refer to the C++ User's Guide that comes with the compiler, the "Building Libraries" chapter.

  • Issues with Double, calc not accepted

    I found a site with some example problems I'm working through. I'm following what I think I understand is right, but I get errors that the calculation with type Double isn't accepted. What am I missing?
    import java.io.*;
    class Change
      public static void main (String [] args) throws IOException
        String charData;
        Double change;
        Double value;
        //read in change amount
        BufferedReader stdin = new BufferedReader
          (new InputStreamReader (System.in));
        System.out.println ("Enter amount in cents");
        charData = stdin.readLine();
        change = Double.parseDouble (charData);
        //calculate change due
        //dollars
        value = change / 100;
        System.out.println ("There are " + value + " dollars");
        change = change % 100;
        //quarters
        value = change / 25;
        System.out.println ("There are " + value + " quarters");
        change = change % 25;
        //dimes
        value = change / 10;
        System.out.println ("There are " + value + " dimes");
        change = change % 10;
        //nickles
        value = change / 5;
        System.out.println ("There are " + value + " nickles");
        change = change % 5;
        //pennies
        System.out.println ("There are " + change + " pennies");
        //end
        System.out.println ("End");
    }and my errors...
    C:\JP>javac Change.java
    Change.java:19: incompatible types
    found : double
    required: java.lang.Double
    change = Double.parseDouble (charData);
    ^
    Change.java:24: operator / cannot be applied to java.lang.Double,double
    value = change / 100.0;
    ^
    Change.java:26: operator % cannot be applied to java.lang.Double,double
    change = change % 100.0;
    ^
    Change.java:29: operator / cannot be applied to java.lang.Double,double
    value = change / 25.0;
    ^
    Change.java:31: operator % cannot be applied to java.lang.Double,double
    change = change % 25.0;
    ^
    Change.java:34: operator / cannot be applied to java.lang.Double,int
    value = change / 10;
    ^
    Change.java:36: operator % cannot be applied to java.lang.Double,int
    change = change % 10;
    ^
    Change.java:39: operator / cannot be applied to java.lang.Double,int
    value = change / 5;
    ^
    Change.java:41: operator % cannot be applied to java.lang.Double,int
    change = change % 5;
    ^
    9 errors
    Thanks in advance for any help.

    I just realized I included errors that included trying to force the 100 and 25 to Double by making them 100.0 etc. It basically yielded the same results though. sigh

  • How to define a constant in TSQL ?

    I need to define a group of int constants and use them by a group of functions . 
    so how I define a constant ?
    and how to make it accessible by multiple functions ?

    Hi, 
    I am guessing that you are developer by your nickname, so i will add something for developers :-)
    This is actually a good question and the answer is that you can use database (and this is where this forum come to help you, and
    Kalman Toth gave you the basic answer), but if your need is for application that you are developing then there are several more option which you need to check what is best for you.
    define a group of int constants in application can be done:
    >> Using database table (best for big collection or a Collection that you need some changing)
    >> Using ini file (very useful for constant Collection)
    >> Using app config file (useful for constant Collection, remember that changing the file will restart the app and all users sessions will end in some cases)
    >> Using static class
    and so on
    I hope this is useful :-)
    [Personal Site] [Blog] [Facebook]

  • Possible to read input directly to double?

    i know how to parse double/ int and all that stuff from a string,
    but i was wondering (for future reference) if there is a quicker way to just go from input to double.
    i know this way
    string1 = stdin.readLine( );
    int1 = Integer.parseInt (string1);

    Have a look at the Double class:
    http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Double.html

  • How do I create an n-dimensional constant array?

    I have a code where I am trying to mathematically manipulate arrays in a while loop. I was planning on multiplying an array by a constant, but on the second iteration the constant actually ends up changing to an array of different constants*. Therefore, I'd like to define an array of constants of one value. I did this using the "array constant". I stuck a double point constant inside and wired it to me terminal. One problem I'm having is that the size of the array isn't matching my other array. In the box to the left of my double point constant value, I put in "10" because the size of the array I want is 10. Instead of generating a 10 element array with all the same constant, it generated...uhhh...nothing. I received null: []. What am I doing wrong?
    Next, is there a way to define the length of this array based on the length of another array? For example, the array I want to work with is 10 elements, but it might not ALWAYS be 10 elements. I'd like to put in some flexibility so that if it changes to 30 elements, the constant array I create will be smart enough to know it also needs to be a 30 element array.
    Also, I apologize for not including a picture. The computer with LabVIEW is not the same as the computer connected to the internet. Furthering my frustration, the only way I can transfer data from that computer to this one results in encrypted data unless I burn a CD. Ohhhh working for the federal government is a delight sometimes.
    *The constant changes to an array of constants because the process is iterative. I start with a guess for the constant, but then that guess gets updated by the values in the array, forcing it to become an array itself.
    Solved!
    Go to Solution.

    The problem is that when I do a shift register in my while loop, the constant is changed to an array. So to make the loop work, I want to initialize the loop with an array of constants.
    This is a simplified version of what I'm trying to do in pseudocode:
    C_old = [0.99, 0.99, 0.99]  // I shortened this to a 3 element array for simplicity
    C_new = [0.99, 0.99, 0.99]
    Re_old = [1E5, 1.2E5, 1.5E5]
    while (abs(C_old-C_new) < 0.001)
         Re_new = Re_old*(C_new/C_old)
         C_newer = a bunch of stuff as a function of Re_new
         C_old = C_new
         C_new = C_newer
         Re_old = Re_new
    So in my while loop, I have C_old, C_new, and Re_old on the boundary as shift registers. I don't really need the constants to be arrays, but the problem is that when I do C_newer as a function of Re_new (which is an array), I get an array of constants. So to make the shift registers work, they need to be the same datatype, so I need to initialize an array of constants at the beginning as C_old and C_new and also to test the values to stop the while loop.

  • Is (double[]).getClass().getName() defined?

    I have a simple class that holds an ArrayList of a single type of Objects.
    Most of the time it will be a double[] but other times it might be a data
    holding class.
    I want to be able to query the holding class for what type of objects are
    in the ArrayList. I was going to return a Class object.
    public Class getObjectType(){
    return some Class;
    I get "[D" as the Class name for double[]. Can i rely on that name or
    should i just wrap the double[] array into a wrapper class?
    I wrote this test class:
    public class ArrayClassTest{
    public static void main(String[] args) {
         new ArrayClassTest();
    public ArrayClassTest(){
         System.out.println("This Class: " + this.getClass().getName());
         double[] dblArray = {0.0, 1.0, 2.0};
         int[] intArray = {1, 2, 3};
         Object[] objArray = {null};
         ArrayClassTest[] actArray = {this};
         System.out.println("Array Class: " + dblArray.getClass().getName());
         System.out.println("Array Class: " + intArray.getClass().getName());
         System.out.println("Array Class: " + objArray.getClass().getName());
         System.out.println("Array Class: " + actArray.getClass().getName());
    }Which yields these results:
    This Class: ArrayClassTest
    Array Class: [D
    Array Class: [I
    Array Class: [Ljava.lang.Object;
    Array Class: [LArrayClassTest;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I think so, the names of the array classes have been stable at least since Java 1.2, as far as I know.
    The '[' says that it's an array. D, I etc. specifies a primitive (double, int etc.) '[L' means it's an object array, followed by the fully qualified name of the element type. So [Ljava.lang.String; would be a String[] etc.

  • Still crashing constant , wit's end

    Premiere CS6 is hanging non stop.  Talked to apple support and did all the debugging on the OSX side, talked to promise pegasus and the RAID looks fine, apparently adobe chat + phone is reserved for CC members even though i spent the same money on a CS6 license.  not too inspired to get a membership with the lack of support.  can anyone tell from this process sample what's going on?
    Sampling process 666 for 3 seconds with 1 millisecond of run time between samples
    Sampling completed, processing symbols...
    Analysis of sampling Adobe Premiere Pro CS6 (pid 666) every 1 millisecond
    Process:         Adobe Premiere Pro CS6 [666]
    Path:            /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Load Address:    0x100000000
    Identifier:      com.adobe.AdobePremierePro
    Version:         6.0.5 (6.0.5)
    Code Type:       X86-64
    Parent Process:  ??? [1]
    Date/Time:       2015-04-16 18:49:05.498 -0700
    OS Version:      Mac OS X 10.10.3 (14D131)
    Report Version:  7
    Analysis Tool:   /usr/bin/sample
    Call graph:
        2652 Thread_240211   DispatchQueue_1: com.apple.main-thread  (serial)
        + 2652 start  (in Adobe Premiere Pro CS6) + 52  [0x10000361c]
        +   2652 main  (in Adobe Premiere Pro CS6) + 647  [0x1000038b7]
        +     2652 Run  (in Startup) + 247  [0x10cd741d7]
        +       2652 AppMain  (in Frontend) + 380  [0x10cc03d0c]
        +         2652 FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&)  (in Frontend) + 5681  [0x10cbacdff]
        +           2652 FE::MacApplication::RunSelf()  (in Frontend) + 44  [0x10cc02794]
        +             2652 -[NSApplication run]  (in AppKit) + 594  [0x10d41bbf3]
        +               2652 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]  (in AppKit) + 346  [0x10d425f68]
        +                 2652 _DPSNextEvent  (in AppKit) + 978  [0x10d4269bb]
        +                   2652 _BlockUntilNextEventMatchingListInModeWithFilter  (in HIToolbox) + 71  [0x10f71d12b]
        +                     2652 ReceiveNextEventCommon  (in HIToolbox) + 431  [0x10f71d2ea]
        +                       2652 RunCurrentEventLoopInMode  (in HIToolbox) + 235  [0x10f71d56f]
        +                         2652 CFRunLoopRunSpecific  (in CoreFoundation) + 296  [0x10cee2bd8]
        +                           2652 __CFRunLoopRun  (in CoreFoundation) + 2024  [0x10cee3608]
        +                             2652 __CFRunLoopDoTimers  (in CoreFoundation) + 301  [0x10cf9b53d]
        +                               2652 __CFRunLoopDoTimer  (in CoreFoundation) + 1059  [0x10cf27f73]
        +                                 2652 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__  (in CoreFoundation) + 20  [0x10cf282e4]
        +                                   2652 __NSFireTimer  (in Foundation) + 95  [0x10eb29953]
        +                                     2652 -[PremiereCocoaMacApplication idle:]  (in Frontend) + 108  [0x10cc0130c]
        +                                       2652 void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*)  (in dvacore) + 125  [0x100612e3d]
        +                                         2652 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*)  (in dvacore) + 112  [0x100610900]
        +                                           2652 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0 <int>)  (in Frontend) + 57  [0x10cbc8735]
        +                                             2652 int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*)  (in dvacore) + 28  [0x100610a0e]
        +                                               2652 HandleIdle(NSTimer*)  (in Frontend) + 92  [0x10cc0269c]
        +                                                 2652 FE::DoSuspendResume()  (in Frontend) + 355  [0x10cc00203]
        +                                                   2652 ASL::StationUtils::BroadcastMessage(ASL::ImmutableString const&, ASL::Message const&)  (in ASLMessaging) + 66  [0x100b84f72]
        +                                                     2652 ASL::Broadcaster::BroadcastMessage(ASL::Message const&)  (in ASLMessaging) + 1565  [0x100b77841]
        +                                                       2652 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0 <int>)  (in Frontend) + 57  [0x10cbc8735]
        +                                                         2652 ASL::Broadcaster::BroadcastMessageInner(ASL::Broadcaster::ListenerRecord const&, ASL::Message const&)  (in ASLMessaging) + 75  [0x100b7622b]
        +                                                           2652 ML::VideoPlayerProxy::ListenToMessage(ASL::Message const&)  (in PlayerHost) + 506  [0x104e5a508]
        +                                                             2652 ML::VideoPlayerProxy::OnApplicationResumed()  (in PlayerHost) + 168  [0x104e4c718]
        +                                                               2652 ML::VideoPlayerProxy::ActivateDevice()  (in PlayerHost) + 39  [0x104e54d85]
        +                                                                 2652 ML::AsioHostInstanceWrapper::AsioHostInstanceWrapper()  (in PlayerHost) + 271  [0x104e29e31]
        +                                                                   2652 ML::CoreAudioHost::AddDependancy()  (in AudioSupport) + 57  [0x10351512f]
        +                                                                     2652 ML::CoreAudioHost::LoadDriver(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&)  (in AudioSupport) + 35  [0x103520c13]
        +                                                                       2652 ML::CoreAudioHost::LoadDriverPrivate(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, bool, bool)  (in AudioSupport) + 492  [0x103520ad0]
        +                                                                         2652 ASL::StationUtils::BroadcastMessage(ASL::ImmutableString const&, ASL::Message const&)  (in ASLMessaging) + 66  [0x100b84f72]
        +                                                                           2652 ASL::Broadcaster::BroadcastMessage(ASL::Message const&)  (in ASLMessaging) + 1565  [0x100b77841]
        +                                                                             2652 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0 <int>)  (in Frontend) + 57  [0x10cbc8735]
        +                                                                               2652 ASL::Broadcaster::BroadcastMessageInner(ASL::Broadcaster::ListenerRecord const&, ASL::Message const&)  (in ASLMessaging) + 39  [0x100b76207]
        +                                                                                 2652 HandlerAudioMixer::TrackView::ListenToMessage(ASL::Message const&)  (in HandlerAudioMixer) + 509  [0x10896c3bb]
        +                                                                                   2652 HandlerAudioMixer::TrackView::OnAsioDriverChanged()  (in HandlerAudioMixer) + 18  [0x10896cf9a]
        +                                                                                     2652 HandlerAudioMixer::TrackView::BuildInputPopup()  (in HandlerAudioMixer) + 453  [0x10896eedd]
        +                                                                                       2652 non-virtual thunk to ML::CoreAudioHost::GetInputChannelNames()  (in AudioSupport) + 26  [0x10351cd3a]
        +                                                                                         2652 ML::CoreAudioHost::GetChannelNames(bool)  (in AudioSupport) + 750  [0x10351c87c]
        +                                                                                            2652 ML::Device::GetNumberOfPhysicalChannels(unsigned int, bool)  (in AudioSupport) + 195  [0x103527433]
        +                                                                                              2652 ML::Device::GetNumberOfChannels(unsigned int, bool)  (in AudioSupport) + 256  [0x1035272a0]
        +                                                                                                2652 AudioDeviceGetProperty  (in CoreAudio) + 306  [0x1104b26c8]
        +                                                                                                  2652 HALObject::GetPropertyData(AudioObjectPropertyAddress const&, unsigned int, void const*, unsigned int&, void*) const  (in CoreAudio) + 362  [0x110493d16]
        +                                                                                                    2652 HALPlugIn::ObjectGetPropertyData(HALObject const&, AudioObjectPropertyAddress const&, unsigned int, void const*, unsigned int&, void*) const  (in CoreAudio) + 42  [0x11049a228]
        +                                                                                                      2652 HAL_HardwarePlugIn_ObjectGetPropertyData(AudioHardwarePlugInInterface**, unsigned int, AudioObjectPropertyAddress const*, unsigned int, void const*, unsigned int*, void*)  (in CoreAudio) + 146  [0x11049a35a]
        +                                                                                                        2652 HALC_ShellObject::GetPropertyData(unsigned int, AudioObjectPropertyAddress const&, unsigned int, void const*, unsigned int, unsigned int&, void*) const  (in CoreAudio) + 756  [0x11049a66a]
        +                                                                                                          2652 HALC_ProxyIOContext::GetPropertyData(AudioObjectPropertyAddress const&, unsigned int, void const*, unsigned int, unsigned int&, void*) const  (in CoreAudio) + 517  [0x11049eea9]
        +                                                                                                            2652 HALC_ProxyObject::GetPropertyData(AudioObjectPropertyAddress const&, unsigned int, void const*, unsigned int, unsigned int&, void*) const  (in CoreAudio) + 980  [0x11048d76a]
        +                                                                                                              2652 HALC_Object_GetPropertyData_DI32  (in CoreAudio) + 125  [0x11048e439]
        +                                                                                                                2652 mach_msg  (in libsystem_kernel.dylib) + 55  [0x111fe664f]
        +                                                                                                                  2652 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x111fe74de]
        2652 Thread_240245   DispatchQueue_2: com.apple.libdispatch-manager  (serial)
        + 2652 _dispatch_mgr_thread  (in libdispatch.dylib) + 52  [0x111e01a6a]
        +   2652 kevent64  (in libsystem_kernel.dylib) + 10  [0x111fed232]
        2652 Thread_240309
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 PrivateMPEntryPoint  (in CarbonCore) + 58  [0x11240123c]
        +         2652 ASL::(anonymous namespace)::TaskProc(void*)  (in ASLFoundation) + 160  [0x100a447b0]
        +           2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +             2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +               2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                 2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240458
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240461
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240462
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*)  (in dvatransport) + 9  [0x100c1703b]
        +           2652 SkyConnectionEnv::MainLoop()  (in dvatransport) + 129  [0x100c16fbd]
        +             2652 boost::asio::detail::task_io_service::run(boost::system::error_code&)  (in dvatransport) + 291  [0x100c2a467]
        +               2652 boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<boost::asio ::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*)  (in dvatransport) + 512  [0x100c2a0da]
        +                 2652 kevent  (in libsystem_kernel.dylib) + 10  [0x111fed21a]
        2652 Thread_240463
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 boost_asio_detail_posix_thread_function  (in dvatransport) + 19  [0x100c1ac33]
        +         2652 boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run()  (in dvatransport) + 42  [0x100c17c2a]
        +           2652 boost::asio::detail::task_io_service::run(boost::system::error_code&)  (in dvatransport) + 291  [0x100c2a467]
        +             2652 boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<boost::asio ::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*)  (in dvatransport) + 369  [0x100c2a04b]
        +               2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240517
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240518
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240519
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240520
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240521
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240614
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 147  [0x11242ac5e]
        +                   2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240615
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_240652
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_242459
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 ImporterFlash::SingleThreadExecutor::ThreadProcedure()  (in ImporterFlash) + 127  [0x137704a99]
        +             2652 void boost::condition_variable_any::wait<boost::unique_lock<boost::recursive_mutex> >(boost::unique_lock<boost::recursive_mutex>&)  (in ImporterFlash) + 62  [0x13770859a]
        +               2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_243457
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*)  (in AVCVideoServices) + 186  [0x11f864ad0]
        +         2652 CFRunLoopRunSpecific  (in CoreFoundation) + 296  [0x10cee2bd8]
        +           2652 __CFRunLoopRun  (in CoreFoundation) + 1371  [0x10cee337b]
        +             2652 __CFRunLoopServiceMachPort  (in CoreFoundation) + 212  [0x10cee3eb4]
        +               2652 mach_msg  (in libsystem_kernel.dylib) + 55  [0x111fe664f]
        +                 2652 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x111fe74de]
        2652 Thread_243458
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*)  (in AVCVideoServices) + 186  [0x11f864ad0]
        +         2652 CFRunLoopRunSpecific  (in CoreFoundation) + 296  [0x10cee2bd8]
        +           2652 __CFRunLoopRun  (in CoreFoundation) + 1371  [0x10cee337b]
        +             2652 __CFRunLoopServiceMachPort  (in CoreFoundation) + 212  [0x10cee3eb4]
        +               2652 mach_msg  (in libsystem_kernel.dylib) + 55  [0x111fe664f]
        +                 2652 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x111fe74de]
        2652 Thread_243579
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2651 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +           ! 2650 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +           ! : 2650 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +           ! :   2650 TSWaitOnConditionTimedRelative  (in CarbonCore) + 147  [0x11242ac5e]
        +           ! :     2649 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        +           ! :     1 DYLD-STUB$$__error  (in libsystem_pthread.dylib) + 0  [0x11210510e]
        +           ! 1 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 65  [0x10067deed]
        +           !   1 dvacore::threads::ThreadSafeDelayQueue::NextDelayQueueTimeout(bool)  (in dvacore) + 82  [0x10067da70]
        +           !     1 boost::unique_lock<boost::mutex>::lock()  (in dvacore) + 49  [0x10066d01d]
        +           1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 117  [0x10067b275]
        2652 Thread_243602
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 TS_exception_listener_thread  (in CarbonCore) + 100  [0x112427aae]
        +         2652 mach_msg  (in libsystem_kernel.dylib) + 55  [0x111fe664f]
        +           2652 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x111fe74de]
        2652 Thread_243627
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 ScObjects::Thread::go(void*)  (in ScriptLayerPPro) + 166  [0x107190a66]
        +         2649 ScObjects::BridgeTalkThread::run()  (in ScriptLayerPPro) + 169  [0x10717c259]
        +         ! 2649 ScObjects::Thread::sleep(unsigned int)  (in ScriptLayerPPro) + 59  [0x1071906fb]
        +         !   2648 __semwait_signal  (in libsystem_kernel.dylib) + 10  [0x111fec48a]
        +         !   1 nanosleep  (in libsystem_c.dylib) + 199  [0x111f21f5d]
        +         !     1 cerror  (in libsystem_kernel.dylib) + 0  [0x111fe7c78]
        +         3 ScObjects::BridgeTalkThread::run()  (in ScriptLayerPPro) + 112  [0x10717c220]
        +           2 ScObjects::BridgeTalkThread::runLocked()  (in ScriptLayerPPro) + 38  [0x10717baf6]
        +           : 1 MacInterAppStream::messagePending() const  (in ScriptLayerPPro) + 101  [0x10719d285]
        +           : | 1 CFRunLoopContainsSource  (in CoreFoundation) + 90  [0x10ced000a]
        +           : |   1 __CFRunLoopFindMode  (in CoreFoundation) + 197  [0x10cec0215]
        +           : |     1 CFSetGetValue  (in CoreFoundation) + 125  [0x10cea800d]
        +           : |       1 CFBasicHashFindBucket  (in CoreFoundation) + 3608  [0x10ce7b4c8]
        +           : |         1 CFEqual  (in CoreFoundation) + 1  [0x10ce8f821]
        +           : 1 MacInterAppStream::messagePending() const  (in ScriptLayerPPro) + 149  [0x10719d2b5]
        +           :   1 CFRunLoopRunSpecific  (in CoreFoundation) + 183  [0x10cee2b67]
        +           1 ScObjects::BridgeTalkThread::runLocked()  (in ScriptLayerPPro) + 96  [0x10717bb30]
        +             1 ScObjects::BridgeTalk::processIncomingMessage(unsigned long, bool)  (in ScriptLayerPPro) + 65  [0x10716e541]
        +               1 ScObjects::BridgeTalk::incomingMessagePending() const  (in ScriptLayerPPro) + 89  [0x10716cbd9]
        +                 1 MacInterAppStream::messagePending() const  (in ScriptLayerPPro) + 296  [0x10719d348]
        +                   1 CFRunLoopAddSource  (in CoreFoundation) + 296  [0x10ced01b8]
        +                     1 CFBasicHashAddValue  (in CoreFoundation) + 110  [0x10ce8183e]
        2652 Thread_243637
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 Invoke  (in ServiceManager-Launcher.dylib) + 44800  [0x127f54253]
        +         2652 Invoke  (in ServiceManager-Launcher.dylib) + 37055  [0x127f52412]
        +           2652 Login  (in ServiceManager-Launcher.dylib) + 15394  [0x127f487ad]
        +             2652 Login  (in ServiceManager-Launcher.dylib) + 480  [0x127f44d6b]
        +               2652 Invoke  (in ServiceManager-Launcher.dylib) + 36186  [0x127f520ad]
        +                 2652 Invoke  (in ServiceManager-Launcher.dylib) + 35935  [0x127f51fb2]
        +                   2652 Invoke  (in ServiceManager-Launcher.dylib) + 33826  [0x127f51775]
        +                     2652 Invoke  (in ServiceManager-Launcher.dylib) + 33482  [0x127f5161d]
        +                       2652 Invoke  (in ServiceManager-Launcher.dylib) + 23534  [0x127f4ef41]
        +                         2652 Invoke  (in ServiceManager-Launcher.dylib) + 22916  [0x127f4ecd7]
        +                           2652 Invoke  (in ServiceManager-Launcher.dylib) + 21187  [0x127f4e616]
        +                             2652 Invoke  (in ServiceManager-Launcher.dylib) + 20412  [0x127f4e30f]
        +                               2652 Invoke  (in ServiceManager-Launcher.dylib) + 39187  [0x127f52c66]
        +                                 2652 Invoke  (in ServiceManager-Launcher.dylib) + 39053  [0x127f52be0]
        +                                   2652 Invoke  (in ServiceManager-Launcher.dylib) + 42176  [0x127f53813]
        +                                     2652 __recvfrom  (in libsystem_kernel.dylib) + 10  [0x111fec33a]
        2652 Thread_244309
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 RGS::ThreadObject::ThreadFunc(void*)  (in Colorista_II_x64) + 10  [0x12cbd29a4]
        +         2651 RGS::SerialServer::ThreadProcess()  (in Colorista_II_x64) + 33  [0x12cbd0fb7]
        +         ! 2651 sleep  (in libsystem_c.dylib) + 42  [0x111f21dbd]
        +         !   2651 __semwait_signal  (in libsystem_kernel.dylib) + 10  [0x111fec48a]
        +         1 RGS::SerialServer::ThreadProcess()  (in Colorista_II_x64) + 22  [0x12cbd0fac]
        +           1 RGS::SerialServer::BroadcastMessage()  (in Colorista_II_x64) + 140  [0x12cbd0ea4]
        +             1 _platform_memset$VARIANT$Ivybridge  (in libsystem_platform.dylib) + 19  [0x1120edeb3]
        2652 Thread_244328
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 RGS::ThreadObject::ThreadFunc(void*)  (in Instant4K) + 13  [0x12d13da0f]
        +         2652 non-virtual thunk to RGS::SerialServer::ThreadProcess()  (in Instant4K) + 13  [0x12d13cc02]
        +           2652 RGS::SerialServer::ThreadProcess()  (in Instant4K) + 39  [0x12d13cbc5]
        +             2652 sleep  (in libsystem_c.dylib) + 42  [0x111f21dbd]
        +               2651 __semwait_signal  (in libsystem_kernel.dylib) + 10  [0x111fec48a]
        +               1 nanosleep  (in libsystem_c.dylib) + 199  [0x111f21f5d]
        +                 1 cerror  (in libsystem_kernel.dylib) + 0  [0x111fe7c78]
        2652 Thread_244339
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_244671
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 _NSEventThread  (in AppKit) + 137  [0x10d4ee66b]
        +         2652 CFRunLoopRunSpecific  (in CoreFoundation) + 296  [0x10cee2bd8]
        +           2652 __CFRunLoopRun  (in CoreFoundation) + 1371  [0x10cee337b]
        +             2652 __CFRunLoopServiceMachPort  (in CoreFoundation) + 212  [0x10cee3eb4]
        +               2652 mach_msg  (in libsystem_kernel.dylib) + 55  [0x111fe664f]
        +                 2652 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x111fe74de]
        2652 Thread_246010
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 thread_proxy  (in boost_threads) + 158  [0x1005aface]
        +         2652 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
        +           2652 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
        +             2652 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
        +               2652 MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
        +                 2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +                   2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                     2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_434930
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*)  (in AVCVideoServices) + 186  [0x11f864ad0]
        +         2652 CFRunLoopRunSpecific  (in CoreFoundation) + 296  [0x10cee2bd8]
        +           2652 __CFRunLoopRun  (in CoreFoundation) + 1371  [0x10cee337b]
        +             2652 __CFRunLoopServiceMachPort  (in CoreFoundation) + 212  [0x10cee3eb4]
        +               2652 mach_msg  (in libsystem_kernel.dylib) + 55  [0x111fe664f]
        +                 2652 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x111fe74de]
        2652 Thread_520807
        + 2652 thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
        +   2652 _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
        +     2652 _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
        +       2652 PrivateMPEntryPoint  (in CarbonCore) + 58  [0x11240123c]
        +         2652 RenderTask(void*)  (in ColoristaRenderer) + 48  [0x143d41fe0]
        +           2652 MPWaitForEvent  (in CarbonCore) + 189  [0x112400408]
        +             2652 TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
        +               2652 TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
        +                 2652 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x111fec136]
        2652 Thread_619422
        + 2652 start_wqthread  (in libsystem_pthread.dylib) + 13  [0x1120ff40d]
        +   2651 __workq_kernreturn  (in libsystem_kernel.dylib) + 10  [0x111fec94a]
        +   1 _pthread_wqthread  (in libsystem_pthread.dylib) + 674  [0x112101600]
        2652 Thread_638124
        + 2652 start_wqthread  (in libsystem_pthread.dylib) + 13  [0x1120ff40d]
        +   2652 __workq_kernreturn  (in libsystem_kernel.dylib) + 10  [0x111fec94a]
        2651 Thread_638125
        + 2651 start_wqthread  (in libsystem_pthread.dylib) + 13  [0x1120ff40d]
        +   2651 __workq_kernreturn  (in libsystem_kernel.dylib) + 10  [0x111fec94a]
        1 Thread_638125   DispatchQueue_9: com.apple.root.utility-qos.overcommit  (serial)
          1 start_wqthread  (in libsystem_pthread.dylib) + 13  [0x1120ff40d]
            1 _pthread_wqthread  (in libsystem_pthread.dylib) + 729  [0x112101637]
              1 _dispatch_worker_thread3  (in libdispatch.dylib) + 91  [0x111e0ffe4]
                1 _dispatch_root_queue_drain  (in libdispatch.dylib) + 463  [0x111e016b7]
                  1 _dispatch_source_invoke  (in libdispatch.dylib) + 412  [0x111e0262b]
                    1 _dispatch_source_latch_and_call  (in libdispatch.dylib) + 721  [0x111e0987e]
                      1 _dispatch_client_callout  (in libdispatch.dylib) + 8  [0x111dfec13]
                        1 CFRunLoopWakeUp  (in CoreFoundation) + 171  [0x10cecf61b]
                          1 mach_msg  (in libsystem_kernel.dylib) + 55  [0x111fe664f]
                            1 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x111fe74de]
    Total number in stack (recursive counted multiple, when >=5):
            27       _pthread_body  (in libsystem_pthread.dylib) + 131  [0x112101268]
            27       _pthread_start  (in libsystem_pthread.dylib) + 176  [0x1121011e5]
            27       thread_start  (in libsystem_pthread.dylib) + 13  [0x1120ff41d]
            17       __psynch_cvwait  (in libsystem_kernel.dylib) + 0  [0x111fec12c]
            15       thread_proxy  (in boost_threads) + 158  [0x1005aface]
            14       MPWaitOnQueue  (in CarbonCore) + 192  [0x112400d6b]
            14       dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&)  (in dvacore) + 163  [0x100678963]
            13       TSWaitOnCondition  (in CarbonCore) + 108  [0x11242aa77]
            13       TSWaitOnConditionTimedRelative  (in CarbonCore) + 171  [0x11242ac76]
            13       dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&)  (in dvacore) + 115  [0x10067b273]
            13       dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int)  (in dvacore) + 200  [0x10067df74]
            7       mach_msg  (in libsystem_kernel.dylib) + 55  [0x111fe664f]
            7       mach_msg_trap  (in libsystem_kernel.dylib) + 0  [0x111fe74d4]
            5       CFRunLoopRunSpecific  (in CoreFoundation) + 296  [0x10cee2bd8]
    Sort by top of stack, same collapsed (when >= 5):
            __psynch_cvwait  (in libsystem_kernel.dylib)        45081
            mach_msg_trap  (in libsystem_kernel.dylib)        15913
            __workq_kernreturn  (in libsystem_kernel.dylib)        7954
            __semwait_signal  (in libsystem_kernel.dylib)        7950
            __recvfrom  (in libsystem_kernel.dylib)        2652
            kevent  (in libsystem_kernel.dylib)        2652
            kevent64  (in libsystem_kernel.dylib)        2652
    Binary Images:
           0x100000000 -        0x100003ff7 +com.adobe.AdobePremierePro (6.0.5 - 6.0.5) <7B15D25B-FF19-2682-5A28-F3C5C7DF7F8E> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
           0x100008000 -        0x100008fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10000b000 -        0x10000bfff  com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10000e000 -        0x100012ff7 +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120720) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x100018000 -        0x1000fcfe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x10010d000 -        0x10017ffff  com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x1001b8000 -        0x100422ff7  com.apple.security (7.0 - 57031.20.26) <6568520A-587D-3167-BB79-60CE6FEADC64> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x100575000 -        0x100583ff7  com.apple.opengl (11.1.2 - 11.1.2) <864B35BF-1E76-382B-8D5F-38C7282621E6> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10058c000 -        0x100593fff +com.adobe.boost_date_time.framework (6.0.5 - 6.0.5.1) <64121647-B4BC-033A-D012-C2DC054F8394> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1005ae000 -        0x1005bdfff +com.adobe.boost_threads.framework (6.0.5 - 6.0.5.1) <A2CADF3A-D4FE-108F-BA05-42401578350C> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x1005de000 -        0x1007a8fe7 +com.adobe.dvacore.framework (6.0.5 - 6.0.5.1) <4369B8BA-0C09-143B-E64D-B687AE3585D6> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x1009b6000 -        0x1009e0ff7 +com.adobe.dvamediatypes.framework (6.0.5 - 6.0.5.1) <CC13BA64-2ED2-D9E5-0D47-E37FB6C0C794> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/dvamediatypes.framework/Versions/A/dvamediatypes
           0x100a13000 -        0x100a14ff7 +com.adobe.PRM.framework (6.0.5 - 6.0.5.0) <11279970-9B5F-84CF-E10C-B47A5E39629B> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/PRM.framework/Versions/A/PRM
           0x100a1a000 -        0x100a7dff7 +com.adobe.ASLFoundation.framework (6.0.5 - 6.0.5.0) <7D481729-6AAC-9E8B-04A9-B2EF0858BAB1> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/ASLFoundation.framework/Versions/A/ASLFoundation
           0x100b74000 -        0x100b91fff +com.adobe.ASLMessaging.framework (6.0.5 - 6.0.5.0) <7F911C2C-E73B-D564-4FB9-F7CBEE9F16B1> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/ASLMessaging.framework/Versions/A/ASLMessaging
           0x100bbf000 -        0x100bc0fff +com.adobe.Memory.framework (6.0.5 - 6.0.5.0) <02E1F954-F099-2154-AB75-5923B7F2B205> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/Memory.framework/Versions/A/Memory
           0x100bc7000 -        0x100bd6fff +com.adobe.ASLUnitTesting.framework (6.0.5 - 6.0.5.0) <0A15FE95-C365-98C3-7466-2B32FD1ADF78> /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/Frameworks/ASLUnitTesting.framework/Versions/A/ASLUnitTesting
           0x100bf1000 -        0x100bf4fff +com.adobe.boost_system.framework (6.0.5 - 6.0.5.1)

    No, i didn't notice any less crashes on a previous version, the crashes were what motivated the upgrade. 
    but it was crashing as well on mavericks, i figured since i was running yosemite, i might as well make sure that my OS is up to date as there are usually bugs in earlier versions. and yeah i did trash my preferences.
    i hear you that there are arbitrary limits set by a company that would unfortunately rather choose to spend the same amount of time and energy telling me they can't help me vs simply having a look at an error log to help pin point  a possible issue. if someone spends 15 minutes dodging my questions it's 15 min. adobe has paid them to be non proactive.
    anyway, if anyone else has the knowledge or inclination to take a look at my latest crash report i would be grateful.
    Process:               Adobe Premiere Pro CS6 [296]
    Path:                  /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Identifier:            com.adobe.AdobePremierePro
    Version:               6.0.5 (6.0.5)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Adobe Premiere Pro CS6 [296]
    User ID:               501
    Date/Time:             2015-04-20 22:56:16.927 -0700
    OS Version:            Mac OS X 10.10.3 (14D131)
    Report Version:        11
    Anonymous UUID:        24C9C214-3CE5-4994-4CC0-C73757D7546F
    Time Awake Since Boot: 5700 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGABRT)
    Exception Codes:       EXC_I386_GPFLT
    Application Specific Information:
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff880fa286 __pthread_kill + 10
    1   libsystem_c.dylib             0x00007fff9345fb53 abort + 129
    2   com.adobe.premiere.frontend   0x000000010c77e291 UnixInterruptSignal(int) + 49
    3   com.adobe.dvacore.framework   0x0000000100279b35 (anonymous namespace)::SignalHandler(int, __siginfo*, void*) + 261
    4   libsystem_platform.dylib       0x00007fff8d5fdf1a _sigtramp + 26
    5   com.adobe.dvaui.framework     0x0000000103438bb1 dvaui::ui::UI_Node::UI_SetSelfDisabled(bool) + 107
    6   com.adobe.dvaui.framework     0x0000000103438c0b dvaui::ui::UI_Node::UI_SetDisabled(bool) + 43
    7   com.adobe.UIFramework.framework 0x0000000103d017bd UIF::TimeBarControlImpl::Enable(bool) + 79
    8   com.adobe.HandlerTimeline.framework 0x0000000109b8d886 HandlerTimeline::TimeBarArea::SetSequence(ASL::InterfaceRef<BE::ISequence, BE::ISequence>) + 3346
    9   com.adobe.HandlerTimeline.framework 0x0000000109bb4f6d HandlerTimeline::TimelineView::SubviewsSetSequence(ASL::InterfaceRef<BE::ISequence, BE::ISequence>, bool) + 1805
    10  com.adobe.HandlerTimeline.framework 0x0000000109bb1e21 HandlerTimeline::TimelineView::Hide() + 319
    11  com.adobe.UIFramework.framework 0x0000000103cc1e56 UIF::TabViewImpl::UI_NodeChanged(dvaui::ui::UI_Node::NodeChange) + 64
    12  com.adobe.dvaui.framework     0x0000000103430e0c dvaui::ui::UI_Node::UI_DispatchNodeChange(dvaui::ui::UI_Node::NodeChange) + 30
    13  com.adobe.dvaui.framework     0x00000001034a43f5 dvaui::ui::OS_View::UI_Show(bool) + 175
    14  com.adobe.dvaworkspace.framework 0x0000000106a412e6 dvaworkspace::workspace::TabPanel::UI_Show(bool) + 28
    15  com.adobe.HandlerTimeline.framework 0x0000000109bb1de4 HandlerTimeline::TimelineView::Hide() + 258
    16  com.adobe.dvaworkspace.framework 0x0000000106a4ccd4 dvaworkspace::workspace::WorkspaceFrame::HandleTabItemAction(dvaui::controls::TabItemActi on, unsigned int, dvacore::geom::RectT<int> const*) + 998
    17  com.adobe.dvaui.framework     0x00000001033696af dvaui::controls::UI_TabWell::SetFrontmostAndBroadcast(long, bool, long) + 515
    18  com.adobe.dvaworkspace.framework 0x0000000106a4c9c6 dvaworkspace::workspace::WorkspaceFrame::HandleTabItemAction(dvaui::controls::TabItemActi on, unsigned int, dvacore::geom::RectT<int> const*) + 216
    19  com.adobe.dvaui.framework     0x000000010335ffd6 dvaui::controls::UI_TabItemBase::UI_DoMouseEvent(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&) + 628
    20  com.adobe.dvaui.framework     0x00000001034394c8 dvaui::ui::UI_Node::DispatchMouseEvent::operator()(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvacore::geom::PointT<float> const&) const + 184
    21  com.adobe.dvaui.framework     0x000000010344307b std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::DispatchMouseEv ent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 91
    22  com.adobe.dvaui.framework     0x00000001034430c5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::DispatchMouseEv ent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    23  com.adobe.dvaui.framework     0x00000001034430c5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::DispatchMouseEv ent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    24  com.adobe.dvaui.framework     0x00000001034430c5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::DispatchMouseEv ent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    25  com.adobe.dvaui.framework     0x0000000103439635 dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeaf(dvaui::ui::MouseEvent const&, bool) + 75
    26  com.adobe.dvaui.framework     0x000000010343d29e dvaui::ui::UI_Node::UI_DispatchMouseEventToTarget(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&, bool) + 136
    27  com.adobe.dvaui.framework     0x000000010343d33f dvaui::ui::UI_Node::UI_DispatchMouseEvent(dvaui::ui::MouseEvent const&, bool) + 63
    28  com.adobe.dvaui.framework     0x00000001034a4c12 dvaui::ui::OS_View::UI_DispatchPlatformMouseEvent(dvaui::ui::MouseEvent const&, bool) + 702
    29  com.adobe.dvaui.framework     0x00000001034a2d1a dvaui::ui::OS_View::UI_DispatchPlatformMouseClickEvent(dvaui::ui::OS_Event const&) + 470
    30  com.adobe.dvaui.framework     0x00000001034a1939 dvaui::ui::OS_View::UI_DispatchEvent(dvaui::ui::OS_Event*) + 123
    31  com.adobe.dvaui.framework     0x00000001034a3008 dvaui::ui::OS_View::UI_HandleOSEvent(dvaui::ui::OS_Event*) + 28
    32  com.adobe.dvaui.framework     0x000000010349fae7 dvaui::ui::OS_View::UI_HandlePlatformEvent(NSEvent*) + 57
    33  com.adobe.dvacore.framework   0x000000010018ba0e int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    34  com.adobe.premiere.frontend   0x000000010c743735 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0 <int>) + 57
    35  com.adobe.dvacore.framework   0x000000010018b900 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*) + 112
    36  com.adobe.dvacore.framework   0x000000010018de3d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    37  com.adobe.dvaui.framework     0x000000010349922f -[DVAMacContainerView mouseDown:] + 127
    38  com.apple.AppKit               0x00007fff9239c2fc -[NSWindow _reallySendEvent:isDelayedEvent:] + 14125
    39  com.apple.AppKit               0x00007fff91d2bd76 -[NSWindow sendEvent:] + 470
    40  com.apple.AppKit               0x00007fff91d28312 -[NSApplication sendEvent:] + 2504
    41  com.adobe.dvaui.framework     0x0000000103492bd6 -[DVAMacApplication sendEvent:] + 630
    42  com.adobe.premiere.frontend   0x000000010c77c530 -[PremiereCocoaMacApplication sendEvent:] + 304
    43  com.apple.AppKit               0x00007fff91c51c68 -[NSApplication run] + 711
    44  com.adobe.premiere.frontend   0x000000010c77d794 FE::MacApplication::RunSelf() + 44
    45  com.adobe.premiere.frontend   0x000000010c727dff FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 5681
    46  com.adobe.premiere.frontend   0x000000010c77ed0c AppMain + 380
    47  com.adobe.premiere.startup     0x000000010c8ef1d7 Run + 247
    48  com.adobe.AdobePremierePro     0x00000001000038b7 main + 647
    49  com.adobe.AdobePremierePro     0x000000010000361c start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff880fb232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8d6e1a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.ASLFoundation.framework 0x00000001005bf7b0 ASL::(anonymous namespace)::TaskProc(void*) + 160
    5   com.apple.CoreServices.CarbonCore 0x00007fff9442423c PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff880fb21a kevent + 10
    1   com.adobe.dvatransport.framework 0x00000001007a50da boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<boost::asio ::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 512
    2   com.adobe.dvatransport.framework 0x00000001007a5467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    3   com.adobe.dvatransport.framework 0x0000000100791fbd SkyConnectionEnv::MainLoop() + 129
    4   com.adobe.dvatransport.framework 0x000000010079203b SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    6   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.adobe.dvatransport.framework 0x00000001007a504b boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<boost::asio ::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 369
    2   com.adobe.dvatransport.framework 0x00000001007a5467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    3   com.adobe.dvatransport.framework 0x0000000100792c2a boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 42
    4   com.adobe.dvatransport.framework 0x0000000100795c33 boost_asio_detail_posix_thread_function + 19
    5   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444dc5e TSWaitOnConditionTimedRelative + 147
    2   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    3   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    4   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    5   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    6   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    7   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff880f54de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff880f464f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff885efeb4 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff885ef37b __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff885eebd8 CFRunLoopRunSpecific + 296
    5   com.apple.AVCVideoServices     0x0000000128a3dad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff880f54de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff880f464f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff885efeb4 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff885ef37b __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff885eebd8 CFRunLoopRunSpecific + 296
    5   com.apple.AVCVideoServices     0x0000000128a3dad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444dc5e TSWaitOnConditionTimedRelative + 147
    2   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    3   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    4   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    5   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    6   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    7   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff880f54de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff880f464f mach_msg + 55
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444aaae TS_exception_listener_thread + 100
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff880fa48a __semwait_signal + 10
    1   com.adobe.ScriptLayerPPro.framework 0x0000000106d0b6fb ScObjects::Thread::sleep(unsigned int) + 59
    2   com.adobe.ScriptLayerPPro.framework 0x0000000106cf7259 ScObjects::BridgeTalkThread::run() + 169
    3   com.adobe.ScriptLayerPPro.framework 0x0000000106d0ba66 ScObjects::Thread::go(void*) + 166
    4   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff880fa33a __recvfrom + 10
    1   ServiceManager-Launcher.dylib 0x0000000123497813 Invoke + 42176
    2   ServiceManager-Launcher.dylib 0x0000000123496be0 Invoke + 39053
    3   ServiceManager-Launcher.dylib 0x0000000123496c66 Invoke + 39187
    4   ServiceManager-Launcher.dylib 0x000000012349230f Invoke + 20412
    5   ServiceManager-Launcher.dylib 0x0000000123492616 Invoke + 21187
    6   ServiceManager-Launcher.dylib 0x0000000123492cd7 Invoke + 22916
    7   ServiceManager-Launcher.dylib 0x0000000123492f41 Invoke + 23534
    8   ServiceManager-Launcher.dylib 0x000000012349561d Invoke + 33482
    9   ServiceManager-Launcher.dylib 0x0000000123495775 Invoke + 33826
    10  ServiceManager-Launcher.dylib 0x0000000123495fb2 Invoke + 35935
    11  ServiceManager-Launcher.dylib 0x00000001234960ad Invoke + 36186
    12  ServiceManager-Launcher.dylib 0x0000000123488d6b Login + 480
    13  ServiceManager-Launcher.dylib 0x000000012348c7ad Login + 15394
    14  ServiceManager-Launcher.dylib 0x0000000123496412 Invoke + 37055
    15  ServiceManager-Launcher.dylib 0x0000000123498253 Invoke + 44800
    16  libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    17  libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    18  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423408 MPWaitForEvent + 189
    4   com.redgiantsoftware.MBLooksRenderLibCPU 0x000000013af4f9c0 RenderTask(void*) + 48
    5   com.apple.CoreServices.CarbonCore 0x00007fff9442423c PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff880fa48a __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff93480dbd sleep + 42
    2   com.redgiantsoftware.Looks3_AE 0x0000000122f150ff RGSerialEnableLicensing(_struct_rgs_product_descriptor*, char const*) + 8575
    3   com.redgiantsoftware.Looks3_AE 0x0000000122f16b0c RGSerialEnableLicensing(_struct_rgs_product_descriptor*, char const*) + 15244
    4   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff880fa48a __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff93480dbd sleep + 42
    2   com.RedGiant.AfterEffects.Instant4k 0x0000000124d72bc5 RGS::SerialServer::ThreadProcess() + 39
    3   com.RedGiant.AfterEffects.Instant4k 0x0000000124d72c02 non-virtual thunk to RGS::SerialServer::ThreadProcess() + 13
    4   com.RedGiant.AfterEffects.Instant4k 0x0000000124d73a0f RGS::ThreadObject::ThreadFunc(void*) + 13
    5   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib         0x00007fff880fa48a __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff93480dbd sleep + 42
    2   com.Redgiant.AfterEffects.MagicBullet.Colorista_II 0x000000013bfe3fb7 RGS::SerialServer::ThreadProcess() + 33
    3   com.Redgiant.AfterEffects.MagicBullet.Colorista_II 0x000000013bfe59a4 RGS::ThreadObject::ThreadFunc(void*) + 10
    4   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423d6b MPWaitOnQueue + 192
    4   com.adobe.dvacore.framework   0x00000001001f8f74 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework   0x00000001001f6273 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework   0x00000001001f3963 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework 0x000000010012aace thread_proxy + 158
    8   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib         0x00007fff880f54de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff880f464f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff885efeb4 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff885ef37b __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff885eebd8 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff91d2466b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9444da77 TSWaitOnCondition + 108
    2   com.apple.CoreServices.CarbonCore 0x00007fff9444dc76 TSWaitOnConditionTimedRelative + 171
    3   com.apple.CoreServices.CarbonCore 0x00007fff94423408 MPWaitForEvent + 189
    4   com.redgiantsoftware.ColoristaRenderer 0x000000013c1e9fe0 RenderTask(void*) + 48
    5   com.apple.CoreServices.CarbonCore 0x00007fff9442423c PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff880fa94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9349340d start_wqthread + 13
    Thread 29:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib         0x00007fff880f54de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff880f464f mach_msg + 55
    2   com.apple.audio.CoreAudio     0x00007fff96a8057e HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio     0x00007fff96a8050c HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio     0x00007fff96a7eaa9 HALC_ProxyIOContext::IOWorkLoop() + 965
    5   com.apple.audio.CoreAudio     0x00007fff96a7e612 HALC_ProxyIOContext::IOThreadEntry(void*) + 88
    6   com.apple.audio.CoreAudio     0x00007fff96a7e4e3 HALB_IOThread::Entry(void*) + 157
    7   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib         0x00007fff880fa94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9349340d start_wqthread + 13
    Thread 31:
    0   libsystem_kernel.dylib         0x00007fff880fa94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9349340d start_wqthread + 13
    Thread 32:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 40:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 41:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 42:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 43:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 44:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 45:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 46:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 47:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 48:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 49:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 50:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 51:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 52:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 53:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 54:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 55:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 56:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 57:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 58:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 59:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13
    Thread 60:
    0   libsystem_kernel.dylib         0x00007fff880fa136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000145070d9d h264in_Video_GetAPIExt + 238429
    2   com.mainconcept.mc.bc.dec.avc 0x0000000144fe9785 open_h264in_Video_stream + 341877
    3   libsystem_pthread.dylib       0x00007fff93495268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff934951e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9349341d thread_start + 13

Maybe you are looking for