Working with Large Blobs in BerkeleyDB

Hi Everyone,
I'm trying to use BerkeleyDB as a simple key/value store for large (~50 MB) blobs of data.
Before I get too deep into this, I wanted to see if anyone had any advice as to the best way to configure Berkeley to do this efficiently. Some of the areas I could imagine being important are...
1.) Whether or not to use a BTree index.
2.) How cache and page sizes should be configured.
3.) If the blobs are very large but divisible, are there any best practices around partitioning?
Thanks,
Caleb

Hi,
That's an interesting question. When Berkeley DB stores data items they are broken up into "page size" pieces, and stored on a number of different pages. The best advice is to configure large page sizes when dealing with larger data items, that will result in us splitting the data into less pieces, thus reducing the cost of re-assembling the data to service read requests.
Do you really need to store this actual data in a database file? Would it be practical for you to just keep metadata and reference information in the database, and store the actual blob data on disk? That configuration will likely deliver far superior performance - though you do loose the ACID guarantees on the blob data.
Answers to your specific questions:
1.) Whether or not to use a BTree index.
I would use a btree database (index) for your situation.
2.) How cache and page sizes should be configured.
A cache that can hold the entire data set, and the largest possible page size (64k) would be my recommended configuration.
3.) If the blobs are very large but divisible, are there any best practices around partitioning?
I'd say that you are best to split the blobs into smaller data items in that scenario. The smaller the better :)
Regards,
Alex Gorrod
Oracle Berkeley DB

Similar Messages

  • Working with large Artboards/Files in Illustrator

    Hello all!
    I'm currently designing a full size film poster for a client. The dimensions of the poster are 27" x 40" (industry standard film poster).
    I am a little uncertain in working with large files in Illustrator, so I have several problems that have come up in several design projects using similar large formats.
    The file size is MASSIVE. This poster uses several large, high-res images that I've embedded. I didn't want them to pixelate, so I made sure they were high quality. After embedding all these images, along with the vector graphics, the entire .ai file is 500MB. How can I reduce this file size? Can I do something with the images to make the .ai file smaller?
    I made my artboard 27" x 40" - the final size of the poster. Is this standard practice? Or when designing for a large print format, are you supposed to make a smaller, more manageable artboard size, and then scale up after to avoid these massive file sizes?
    I need to upload my support files for the project, including .ai and .eps - so it won't work if they're 500MB. This would be good info to understand for all projects I think.
    Any help with this would be appreciated. I can't seem to find any coherent information pertaining to this problem that seems to address my particular issues. Thank you very much!
    Asher

    Hi Asher,
    It's probably those high-res images you've embedded. Firstly, be sure your images are only as large as you need them Secondly, a solution would be to use linked images while you're working instead of embedding them into the file.
    Here is a link to a forum with a lot of great discussion about this issue, to get you started: http://www.cartotalk.com/lofiversion/index.php?t126.html
    And another: http://www.graphicdesignforum.com/forum/archive/index.php/t-1907.html
    Here is a great list of tips that someone in the above forum gave:
    -Properly scale files.  Do not take a 6x6' file then use the scaling tool to make it a 2x2'  Instead scale it in photoshop to 2x2 and reimport it.  Make a rule like over 20%, bring it back in to photoshop for rescaling.
    -Check resolutions. 600dpi is not going to be necessary for such and such printer.
    -Delete unused art.  Sloppy artists may leave old unused images under another image.  The old one is not being used but it still takes up space, therefore unecessarily inflating your file.
    -Choose to link instead of embedd.  This is your choice.  Either way you still have to send a large file but many times linking is less total MB then embedding.  Also embedding works well with duplicated images. That way multiple uses link to one original, whereas embedding would make copies.
    -When you are done, using compression software like ZIP or SIT (stuffit)
    http://www.maczipit.com/
    Compression can reduce file sizes alot, depending on the files.
    This business deals with alot of large files.  Generally people use FTP's to send large files, or plain old CD.  Another option is using segmented compression.  Something like winRAR/macRAR or dropsegment (peice of stuffit deluxe) compresses files, then breaks it up into smaller manageble pieces.   This way you can break up a 50mb file into say 10x 5mb pieces and send them 5mb at a time. 
    http://www.rarlab.com/download.htm
    *make sure your client knows how to uncompress those files.  You may want to link them to the site to download the software."
    Good luck!

  • Working with Large Numbers

    Hi there,
    I am currently doing a school assignment and not looking for answers but just a little guidance.
    I am working with large numbers and the modulo operator.
    I might have some numbers such as :
    int n = 221;
    int e = 5;
    int d = 77;
    int message = 84;
    int en = (int) (Math.pow(message, e) % n);
    int dn = (int) (Math.pow(en, d) % n);Would there be a better way to do this kind of calculation. The dn value should come out the same as message. But I always get something different and I think I might be losing something in the fact that an int can only hold smaller values.

    EJP wrote:
    It might make sense in some contexts to have a positive and negative infinity.
    Yes, perhaps that's a better name. Guess I was harking back to old COBOL days :-).(*)
    But the reason these things exist in FP is because the hardware can actually deliver them. That rationale doesn't apply to BIgInteger.Actually, it does. All I'm talking about is a value that compares higher or lower than any other. That could be done either by a special internal sign value (my slight preference) or by simply adding code to compareTo(), equals() and hashCode() methods that takes the two constants into account (as they already do with ZERO and ONE).
    Don't worry, I'm not holding my breath; but I have come across a few situations in which values like that would have been useful.
    Winston
    Edited by: YoungWinston on Mar 22, 2011 9:07 AM
    (*) Actually, '±infinity' tends to suggest a valid arithmetic value, and I wasn't thinking of changing existing BigInteger/BigDecimal maths (except perhaps to throw an exception if either value is involved).

  • Working with Large List in sharepoint 2010

    Hi All
    I have a list with almost 10k records in my sharepoint list and based on some business requirement i am binding (almost 6k records) the data to asp.net grid view and this will visible on the home page of the portal where most of the users will access. Can
    someone please guide the best method to reduce the performance inorder the program to hit the SP list everytime the page loads...
    Thanks & Regards
    Rakesh Kumar

    Hi,
    If you are Working with large data retrieval from the content database (SharePoint list), the points below for your reference:
    1. Limit the number of returned items.
    SPQuery query = new SPQuery();
    query.RowLimit =6000; // we want to retrieve2000 items
    query.ListItemCollectionPosition = prevItems.ListItemCollectionPosition; // starting at a previous position
    SPListItemCollection items = SPContext.Current.List.GetItems(query);
    2. Limit the number of returned columns.
    SPQuery query = new SPQuery();
    query.ViewFields = "";
    3. Query specific items using CAML (Collaborative Markup Language).
    SPQuery query = new SPQuery();
    query.Query = "15";
    4.Use ContentIterator class
    https://spcounselor-public.sharepoint.com/Blog/Post/2/Querying-a--big-list--with-ContentIterator-and-multiple-filters
    5. Create a Stored Procedure in Database to get the special data, create a web service to get the data, when create a web part to show the data in home page.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Is anyone working with large datasets ( 200M) in LabVIEW?

    I am working with external Bioinformatics databasesa and find the datasets to be quite large (2 files easily come out at 50M or more). Is anyone working with large datasets like these? What is your experience with performance?

    Colby, it all depends on how much memory you have in your system. You could be okay doing all that with 1GB of memory, but you still have to take care to not make copies of your data in your program. That said, I would not be surprised if your code could be written so that it would work on a machine with much less ram by using efficient algorithms. I am not a statistician, but I know that the averages & standard deviations can be calculated using a few bytes (even on arbitrary length data sets). Can't the ANOVA be performed using the standard deviations and means (and other information like the degrees of freedom, etc.)? Potentially, you could calculate all the various bits that are necessary and do the F-test with that information, and not need to ever have the entire data set in memory at one time. The tricky part for your application may be getting the desired data at the necessary times from all those different sources. I am usually working with files on disk where I grab x samples at a time, perform the statistics, dump the samples and get the next set, repeat as necessary. I can calculate the average of an arbitrary length data set easily by only loading one sample at a time from disk (it's still more efficient to work in small batches because the disk I/O overhead builds up).
    Let me use the calculation of the mean as an example (hopefully the notation makes sense): see the jpg. What this means in plain english is that the mean can be calculated solely as a function of the current data point, the previous mean, and the sample number. For instance, given the data set [1 2 3 4 5], sum it, and divide by 5, you get 3. Or take it a point at a time: the average of [1]=1, [2+1*1]/2=1.5, [3+1.5*2]/3=2, [4+2*3]/4=2.5, [5+2.5*4]/5=3. This second method required far more multiplications and divisions, but it only ever required remembering the previous mean and the sample number, in addition to the new data point. Using this technique, I can find the average of gigs of data without ever needing more than three doubles and an int32 in memory. A similar derivation can be done for the variance, but it's easier to look it up (I can provide it if you have trouble finding it). Also, I think this funtionality is built into the LabVIEW pt by pt statistics functions.
    I think you can probably get the data you need from those db's through some carefully crafted queries, but it's hard to say more without knowing a lot more about your application.
    Hope this helps!
    Chris
    Attachments:
    Mean Derivation.JPG ‏20 KB

  • Speed up Illustrator CC when working with large vector files

    Raster (mainly) files up to 350 Mb. run fast in Illustrator CC, while vector files of 10 Mb. are a pain in the *blieb* (eg. zooming & panning). When reading the file it seems to freeze around 95 % for a few minutes. Memory usage goes up to 6 Gb. Processor usage 30 - 50 %.
    Are there ways to speed things up while working with large vector files in Illustrator CC?
    System:
    64 bit Windows 7 enterprise
    Memory: 16 Gb
    Processor: Intel Xeon 3,7 GHz (8 threads)
    Graphics: nVidia Geforce K4000

    Files with large amounts vector points will put a strain on the fastest of computers. But any type of speed increase we can get you can save you lots of time.
    Delete any unwanted stray points using  Select >> Object >> stray points
    Optimize performance | Windows
    Did you draw this yourself, is the file as clean as can be? Are there any repeated paths underneath your art which do not need to be there from live tracing or stock art sites?
    Check the control panel >> programs and features and sort by installed recently and uninstall anything suspicious.
    Sorry there will be no short or single answer to this, as per the previous poster using layers effectively, and working in outline mode when possible might the best you can do.

  • Photoshop CS6 keeps freezing when I work with large files

    I've had problems with Photoshop CS6 freezing on me and giving me RAM and Scratch Disk alerts/warnings ever since I upgraded to Windows 8.  This usually only happens when I work with large files, however once I work with a large file, I can't seem to work with any file at all that day.  Today however I have received my first error in which Photoshop says that it has stopped working.  I thought that if I post this event info about the error, it might be of some help to someone to try to help me.  The log info is as follows:
    General info
    Faulting application name: Photoshop.exe, version: 13.1.2.0, time stamp: 0x50e86403
    Faulting module name: KERNELBASE.dll, version: 6.2.9200.16451, time stamp: 0x50988950
    Exception code: 0xe06d7363
    Fault offset: 0x00014b32
    Faulting process id: 0x1834
    Faulting application start time: 0x01ce6664ee6acc59
    Faulting application path: C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Photoshop.exe
    Faulting module path: C:\Windows\SYSTEM32\KERNELBASE.dll
    Report Id: 2e5de768-d259-11e2-be86-742f68828cd0
    Faulting package full name:
    Faulting package-relative application ID:
    I really hope to hear from someone soon, my job requires me to work with Photoshop every day and I run into errors and bugs almost constantly and all of the help I've received so far from people in my office doesn't seem to make much difference at all.  I'll be checking in regularly, so if you need any further details or need me to elaborate on anything, I should be able to get back to you fairly quickly.
    Thank you.

    Here you go Conroy.  These are probably a mess after various attempts at getting help.

  • How does the sync functionality work with large libraries on small devices?

    How does the sync functionality work with large libraries?
    Say I sync 100gb of photos with the new Photos app and turn on sync on a 16gb iphone. Will it fill the device up to 16gb? Can I tell it to limit to xgb so I leave room for music and apps? How does this work? Will it slow down my phone if its trying to sync 100gb across smaller devices?

    "Will the Apple TV now read directly from the Time Capsule?" ATV does not 'read' from the TC. It connects to the Mac and itunes library associated with the Mac. Of course the itunes program can 'point' to a library on the TC. You'll still need to have itunes open and the Mac powered on and not sleeping with the TC mounted to the Desktop to use ATV properly. So bottom line the use of TC just adds one more step to view files on the ATV.

  • Performance issue while working with large files.

    Hello Gurus,
    I have to upload about 1 million keys from a CSV file on the application server and then delete the entries from a DB table containing 18 million entries. This is causing performance problems and my programm is very slow. Which approach will be better?
    1. First read all the data in the CSV and then use the delete statement?
    2. Or delete each line directly after reading the key from the file?
    And another program has to update about 2 million entries in a DB table containing  20 million entries. Here I also have very big performance problems(the program has been running for more the 14 hours). Which is the best way to work with such a large amount?
    I tried to rewrite the program so that it will run parallel but since this program will only run once the costs of implementing a aRFC parallization are too big. Please help, maybe someone doing migration is good at this
    Regards,
    Ioan.

    Hi,
    I would suggest, you should split the files and then process each set.
    lock the table to ensure it is available all time.
    After each set ,do a commit and then proceed.
    This would ensure there is no break in middle and have to start again by deleteing the entries from files which are already processed.
    Also make use of the sorted table and keys when deleting/updating DB.
    In Delete, when multiple entries are involved , use of  an internal table might be tricky as some records may be successfully deleted and some maynot.
    To make sure, first get the count of records from DB that are matching in Internal table set 1
    Then do the delete from DB with the Internal tabel set 1
    Again check the count from DB that are matching in Internal table set 1 and see the count is zero.
    This would make sure the entire records are deleted. but again may add some performance
    And the goal here is to reduce the execution time.
    Gurus may have a better idea..
    Regards
    Sree

  • Photoshop CC crashes working with larger TIFF

    I have a Mac workstation that is routinely crashing while working on larger TIFF files. Here is a copy of the latest crash report.
    Process:         Adobe Photoshop CS6 [1900] 
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.1.2 (13.1.2.224)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [165]
    Date/Time:       2014-01-15 09:29:03.431 -0800
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          274555 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  1517785 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      F64B6195-CB0C-467E-B495-A3293D5B43A6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    VM Regions Near 0x18:
    -->
        __TEXT                 0000000100000000-0000000103674000 [ 54.5M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Application Specific Information:
    objc[1900]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.FinderKit             0x00007fff91fdeeeb TGroupManager::CompareGroups(TGroup const*, TGroup const*) + 7
    1   com.apple.FinderKit             0x00007fff920ac16e GroupComparator::operator()(TFENode const&, TFENode const&) const + 98
    2   com.apple.FinderKit             0x00007fff920af35b void std::__insertion_sort<__gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, GroupComparator>(__gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, __gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, GroupComparator) + 92
    3   com.apple.FinderKit             0x00007fff920af2f0 void std::__final_insertion_sort<__gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, GroupComparator>(__gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, __gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, GroupComparator) + 154
    4   com.apple.FinderKit             0x00007fff920ad415 -[FI_TBrowserViewDataSource(groupings) sortGroups:ascending:] + 55
    5   com.apple.FinderKit             0x00007fff920ae1f2 -[FI_TBrowserViewDataSource(groupings) addNodesInGroups:forContainer:removeAll:groupChanges:sortGroupsAscending:] + 918
    6   com.apple.FinderKit             0x00007fff920b48e4 -[FI_TBrowserViewController(DataSource) addItems:forContainer:removeAll:groupChanges:] + 106
    7   com.apple.FinderKit             0x00007fff920b4a28 -[FI_TBrowserViewController(DataSource) folderContentChanged:] + 181
    8   com.apple.FinderKit             0x00007fff920fea19 -[FI_TColumnViewController folderContentChanged:] + 67
    9   com.apple.FinderKit             0x00007fff920130c3 TNodeEngine::AddPreparedNodes(TFENode const&, bool, TFENodeVector const&, TGroupedNodes const&, objc_object*) + 97
    10  com.apple.FinderKit             0x00007fff92014a58 TNodeBrowser::AddPreparedNodes(TFENode const&, bool, TFENodeVector const&, TGroupedNodes const&, objc_object*) + 240
    11  com.apple.FinderKit             0x00007fff92014d23 TNodeBrowser::HandleFirstPopulationAttempt(TFENode const&, bool, TFENodeVector const&, TGroupedNodes const&, bool, objc_object*) + 35
    12  com.apple.FinderKit             0x00007fff920199a3 TNodeInsertionHandler::SecondStep() + 201
    13  com.apple.FinderKit             0x00007fff920125e8 TNodeEngine::ProcessCompletion(TNodeEngineNotificationHandler*) + 74
    14  com.apple.FinderKit             0x00007fff92057ec2 IAsynchronousOperation::PerformSecondStepOnMainThread() + 44
    15  com.apple.FinderKit             0x00007fff9205814c __ScheduleSecondStepOnMainThread_block_invoke_0 + 27
    16  libdispatch.dylib               0x00007fff92e9ca82 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib               0x00007fff92e9e8f2 _dispatch_main_queue_callback_4CF + 308
    18  com.apple.CoreFoundation      0x00007fff96686e7c __CFRunLoopRun + 1724
    19  com.apple.CoreFoundation      0x00007fff96686486 CFRunLoopRunSpecific + 230
    20  com.apple.HIToolbox             0x00007fff968252bf RunCurrentEventLoopInMode + 277
    21  com.apple.HIToolbox             0x00007fff9682c4bf ReceiveNextEventCommon + 181
    22  com.apple.HIToolbox             0x00007fff9682c3fa BlockUntilNextEventMatchingListInMode + 62
    23  com.apple.AppKit              0x00007fff93efb779 _DPSNextEvent + 659
    24  com.apple.AppKit              0x00007fff93efb07d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    25  com.apple.AppKit              0x00007fff941af735 -[NSApplication _realDoModalLoop:peek:] + 610
    26  com.apple.AppKit              0x00007fff941af369 -[NSApplication runModalForWindow:] + 120
    27  com.apple.AppKit              0x00007fff94432579 -[NSSavePanel runModal] + 300
    28  com.apple.AppKit              0x00007fff9443053d -[NSSavePanel runModalForDirectory:file:types:] + 247
    29  com.apple.AppKit              0x00007fff944305de -[NSSavePanel runModalForDirectory:file:] + 21
    30  com.adobe.Photoshop             0x000000010171906c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20502348
    31  com.adobe.Photoshop             0x000000010009f65f 0x100000000 + 652895
    32  com.adobe.Photoshop             0x0000000100fc437f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12814943
    33  com.adobe.Photoshop             0x000000010009feea 0x100000000 + 655082
    34  com.adobe.Photoshop             0x0000000100fc5ba6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12821126
    35  com.adobe.Photoshop             0x00000001005f15cd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2514093
    36  com.adobe.Photoshop             0x0000000100091074 0x100000000 + 594036
    37  com.adobe.Photoshop             0x000000010008cffa 0x100000000 + 577530
    38  com.adobe.Photoshop             0x0000000100087af7 0x100000000 + 555767
    39  com.adobe.Photoshop             0x0000000100087993 0x100000000 + 555411
    40  com.adobe.Photoshop             0x0000000101706654 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20426036
    41  com.apple.AppKit              0x00007fff93ef7a0e -[NSApplication run] + 555
    42  com.adobe.Photoshop             0x0000000101706d22 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20427778
    43  com.adobe.Photoshop             0x0000000101707fec AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20432588
    44  com.adobe.Photoshop             0x000000010008818d 0x100000000 + 557453
    45  com.adobe.Photoshop             0x00000001002ca14c boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2249692
    46  com.adobe.Photoshop             0x00000001002ca229 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2249913
    47  com.adobe.Photoshop             0x00000001000029f4 0x100000000 + 10740
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x00007fff90cff7e6 kevent + 10
    1   libdispatch.dylib               0x00007fff92e9e786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib               0x00007fff92e9d316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib        0x00007fff90cfee42 __semwait_signal + 10
    1   libsystem_c.dylib               0x00007fff95f0bdea nanosleep + 164
    2   com.adobe.PSAutomate          0x000000012c1436eb 0x12c000000 + 1324779
    3   com.adobe.PSAutomate          0x000000012c129539 0x12c000000 + 1217849
    4   com.adobe.PSAutomate          0x000000012c143a56 0x12c000000 + 1325654
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine          0x0000000142c76c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x0000000142a24ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine          0x0000000142c76c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x0000000142a24ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine          0x0000000142c76c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x0000000142a24ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine          0x0000000142c76c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x0000000142a24ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib        0x00007fff90cfd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff90cfcd71 mach_msg + 73
    2   com.apple.CoreFoundation      0x00007fff9667e50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation      0x00007fff96686c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation      0x00007fff96686486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO           0x00007fff8ddd0fe9 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO           0x00007fff8ddc715a CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f592a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine          0x0000000142c76bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine          0x0000000142c8eddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f592a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine          0x0000000142c76bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine          0x0000000142e092c3 APXGetHostAPI + 4164403
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib        0x00007fff90cfed7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib   0x000000012fc7e5ec Invoke + 45721
    2   ServiceManager-Launcher.dylib   0x000000012fc7d813 Invoke + 42176
    3   ServiceManager-Launcher.dylib   0x000000012fc7cbe0 Invoke + 39053
    4   ServiceManager-Launcher.dylib   0x000000012fc7cc66 Invoke + 39187
    5   ServiceManager-Launcher.dylib   0x000000012fc7830f Invoke + 20412
    6   ServiceManager-Launcher.dylib   0x000000012fc78616 Invoke + 21187
    7   ServiceManager-Launcher.dylib   0x000000012fc78cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib   0x000000012fc78f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib   0x000000012fc7b61d Invoke + 33482
    10  ServiceManager-Launcher.dylib   0x000000012fc7b775 Invoke + 33826
    11  ServiceManager-Launcher.dylib   0x000000012fc7bfb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib   0x000000012fc7c0ad Invoke + 36186
    13  ServiceManager-Launcher.dylib   0x000000012fc6ed6b Login + 480
    14  ServiceManager-Launcher.dylib   0x000000012fc727ad Login + 15394
    15  ServiceManager-Launcher.dylib   0x000000012fc7c412 Invoke + 37055
    16  ServiceManager-Launcher.dylib   0x000000012fc7e253 Invoke + 44800
    17  libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    18  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib        0x00007fff90cff7e6 kevent + 10
    1   com.adobe.dvatransport.framework0x000000012fa695b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   com.adobe.dvatransport.framework0x000000012fa7527b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   com.adobe.dvatransport.framework0x000000012fa5dab5 SkyConnectionEnv::MainLoop() + 117
    4   com.adobe.dvatransport.framework0x000000012fa5db19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.dvatransport.framework0x000000012fa754df boost::asio::detail::task_io_service::run(boost::system::error_code&) + 1167
    3   com.adobe.dvatransport.framework0x000000012fa75acd boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 61
    4   com.adobe.dvatransport.framework0x000000012fa67d99 boost_asio_detail_posix_thread_function + 25
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib        0x00007fff90cff7e6 kevent + 10
    1   com.adobe.dvatransport.framework0x000000012fa695b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   com.adobe.dvatransport.framework0x000000012fa7527b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   com.adobe.dvatransport.framework0x000000012fa5dab5 SkyConnectionEnv::MainLoop() + 117
    4   com.adobe.dvatransport.framework0x000000012fa5db19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 40:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x00007fff90cfedf2 __select + 10
    1   com.apple.CoreFoundation      0x00007fff966cfc8b __CFSocketManager + 1355
    2   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    3   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 41:: CoreAnimation render server
    0   libsystem_kernel.dylib        0x00007fff90cfd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff90cfcd71 mach_msg + 73
    2   com.apple.QuartzCore          0x00007fff9090fdf5 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore          0x00007fff9090fd35 thread_fun + 24
    4   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    5   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 42:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.Photoshop             0x000000010029b77d boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2058765
    3   com.adobe.Photoshop             0x00000001017e3aca AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21332394
    4   com.adobe.Photoshop             0x00000001017e1959 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21323833
    5   com.adobe.Photoshop             0x0000000101747974 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20693076
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 43:: ace
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw             0x00000001be2e6776 0x1be030000 + 2844534
    6   com.adobe.CameraRaw             0x00000001be2e6403 0x1be030000 + 2843651
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 44:: ace
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw             0x00000001be2e6776 0x1be030000 + 2844534
    6   com.adobe.CameraRaw             0x00000001be2e6403 0x1be030000 + 2843651
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 45:: ace
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw             0x00000001be2e6776 0x1be030000 + 2844534
    6   com.adobe.CameraRaw             0x00000001be2e6403 0x1be030000 + 2843651
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 46:: ace
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw             0x00000001be2e6776 0x1be030000 + 2844534
    6   com.adobe.CameraRaw             0x00000001be2e6403 0x1be030000 + 2843651
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 47:: cr_scratch
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.CameraRaw             0x00000001be5e6551 0x1be030000 + 5989713
    3   com.adobe.CameraRaw             0x00000001be5884c2 0x1be030000 + 5604546
    4   com.adobe.CameraRaw             0x00000001be3ed2f9 0x1be030000 + 3920633
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 48:
    0   libsystem_kernel.dylib        0x00007fff90cffab6 pwrite + 10
    1   com.apple.CoreServices.CarbonCore0x00007fff990d9ccc BasicWrite(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 200
    2   com.apple.CoreServices.CarbonCore0x00007fff990d9bd6 PBWriteForkSync + 88
    3   com.apple.CoreServices.CarbonCore0x00007fff9911867b AsyncFileThread(void*) + 128
    4   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    5   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 49:: Dispatch queue: com.apple.NetworkBrowser.ConnectedBrowser
    0   libsystem_kernel.dylib        0x00007fff90cff386 close + 10
    1   com.apple.AppleShareClientCore0x000000012dba7a7c GetStatus + 1017
    2   com.apple.AppleShareClientCore0x000000012dba765a TServerProxy::GetSrvrInfo(sockaddr*, unsigned char*) + 66
    3   com.apple.AppleShareClientCore0x000000012dbba92c TServerProxy::Connect(unsigned int) + 118
    4   com.apple.URLMount.AFPPlugin  0x000000011a136eab AFP_GetServerInfo + 887
    5   com.apple.CoreServices.OSServices0x00007fff8d0d178e ConnectedBrowser::setNodeModel(__NWNode*, __CFString const*, __CFURL const*) + 134
    6   com.apple.CoreServices.OSServices0x00007fff8d0d23ef ConnectedBrowser::copyConnected() + 837
    7   com.apple.CoreServices.OSServices0x00007fff8d0d1c66 __workAroundRadarBug6737002_block_invoke_3 + 61
    8   libdispatch.dylib               0x00007fff92e9ca82 _dispatch_call_block_and_release + 18
    9   libdispatch.dylib               0x00007fff92e9e2d2 _dispatch_queue_drain + 264
    10  libdispatch.dylib               0x00007fff92e9e12e _dispatch_queue_invoke + 54
    11  libdispatch.dylib               0x00007fff92e9d928 _dispatch_worker_thread2 + 198
    12  libsystem_c.dylib               0x00007fff95f573da _pthread_wqthread + 316
    13  libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 50:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib        0x00007fff90cfeafa __open_nocancel + 10
    1   libsystem_c.dylib               0x00007fff95f19f7a fopen + 80
    2   com.apple.DesktopServices       0x00007fff96f8e407 TFSVolumeInfo::GetHiddenList() + 175
    3   com.apple.DesktopServices       0x00007fff96f8dc73 TFSVolumeInfo::Initialize(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, bool&) + 1477
    4   com.apple.DesktopServices       0x00007fff96f8f10f TFSVolumeInfo::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TCountedPtr<TFSVolumeInfo>&, bool&) + 129
    5   com.apple.DesktopServices       0x00007fff96f5d7da TNode::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TNodePtr&, bool&) + 126
    6   com.apple.DesktopServices       0x00007fff96f66a14 TNode::SynchronizeVolumes(bool, TCountedPtr<TVolumeSyncThread> const&) + 214
    7   com.apple.DesktopServices       0x00007fff96f67339 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 891
    8   com.apple.DesktopServices       0x00007fff96f8d041 __PostNodeTaskRequest_block_invoke_010 + 82
    9   com.apple.DesktopServices       0x00007fff96fa0978 ExceptionSafeBlock(void ( block_pointer)()) + 15
    10  com.apple.DesktopServices       0x00007fff96f8cfe9 __PostNodeTaskRequest_block_invoke_0 + 88
    11  libdispatch.dylib               0x00007fff92e9ca82 _dispatch_call_block_and_release + 18
    12  libdispatch.dylib               0x00007fff92e9e2d2 _dispatch_queue_drain + 264
    13  libdispatch.dylib               0x00007fff92e9e12e _dispatch_queue_invoke + 54
    14  libdispatch.dylib               0x00007fff92e9d928 _dispatch_worker_thread2 + 198
    15  libsystem_c.dylib               0x00007fff95f573da _pthread_wqthread + 316
    16  libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 51:
    0   libsystem_kernel.dylib        0x00007fff90cff192 __workq_kernreturn + 10
    1   libsystem_c.dylib               0x00007fff95f57594 _pthread_wqthread + 758
    2   libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 52:
    0   libsystem_kernel.dylib        0x00007fff90cff192 __workq_kernreturn + 10
    1   libsystem_c.dylib               0x00007fff95f57594 _pthread_wqthread + 758
    2   libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 53:: Dispatch queue: TNodeEngine 0x12dff6790
    0   com.apple.CoreFoundation      0x00007fff9665008d CFBasicHashFindBucket + 1917
    1   com.apple.CoreFoundation      0x00007fff9664f8ef CFDictionaryGetValue + 143
    2   com.apple.CoreServicesInternal0x00007fff9713e4a4 _ZL17getPropertyForKeyPK10__CFString + 27
    3   com.apple.CoreServicesInternal0x00007fff97147e25 _FSURLCopyResourcePropertyForKey + 65
    4   com.apple.CoreFoundation      0x00007fff966a5225 CFURLCopyResourcePropertyForKey + 133
    5   com.apple.DesktopServices       0x00007fff96fb1503 TFSInfo::GetBooleanProperty(__CFString const*) const + 29
    6   com.apple.DesktopServices       0x00007fff96fb14e1 TFSInfo::IsRootItem() const + 19
    7   com.apple.DesktopServices       0x00007fff96f37bde TNode::IsVisible() const + 122
    8   com.apple.DesktopServices       0x00007fff96f352b7 TNodeIterator::GetUnsortedChildrenForNode(TNodePtr const&, short (*)(unsigned long, unsigned short const*, unsigned long, unsigned short const*), short (*)(long long, long long), unsigned int, bool) + 227
    9   com.apple.DesktopServices       0x00007fff96f34ef5 TNodeIterator::TNodeIterator(TNodePtr const&, short (*)(unsigned long, unsigned short const*, unsigned long, unsigned short const*), short (*)(long long, long long), unsigned int, bool) + 257
    10  com.apple.DesktopServices       0x00007fff96f348e5 TNode::NewNodeIterator(TNodeIterator*&, short (*)(unsigned long, unsigned short const*, unsigned long, unsigned short const*), short (*)(long long, long long), unsigned int, OpaqueNodeRequest* const&, unsigned int) const + 303
    11  com.apple.DesktopServices       0x00007fff96f34768 NodeNewSortedIterator(OpaqueNodeRef*, short (*)(unsigned long, unsigned short const*, unsigned long, unsigned short const*), short (*)(long long, long long), unsigned int, OpaqueNodeIterator**, OpaqueNodeRequest*, unsigned int) + 122
    12  com.apple.DesktopServices       0x00007fff96f346e6 NodeNewIterator + 28
    13  com.apple.FinderKit             0x00007fff91ffc36f TFENodeIterator::Init(TFENode const&, TNodeObserver const*, bool, bool volatile*) + 329
    14  com.apple.FinderKit             0x00007fff920198a2 TNodeInsertionHandler::FirstStep() + 170
    15  com.apple.FinderKit             0x00007fff920176eb TNodeEngineNotificationHandler::FirstStepOnSecondaryThread() + 25
    16  com.apple.FinderKit             0x00007fff92058022 __PerformAsyncOnQueue_block_invoke_0 + 34
    17  libdispatch.dylib               0x00007fff92e9ca82 _dispatch_call_block_and_release + 18
    18  libdispatch.dylib               0x00007fff92e9e2d2 _dispatch_queue_drain + 264
    19  libdispatch.dylib               0x00007fff92e9e12e _dispatch_queue_invoke + 54
    20  libdispatch.dylib               0x00007fff92e9d928 _dispatch_worker_thread2 + 198
    21  libsystem_c.dylib               0x00007fff95f573da _pthread_wqthread + 316
    22  libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 54:
    0   libsystem_kernel.dylib        0x00007fff90cff192 __workq_kernreturn + 10
    1   libsystem_c.dylib               0x00007fff95f57594 _pthread_wqthread + 758
    2   libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 55:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib        0x00007fff90cfee42 __semwait_signal + 10
    1   libsystem_c.dylib               0x00007fff95f0bdea nanosleep + 164
    2   libsystem_c.dylib               0x00007fff95f0bbb5 usleep + 53
    3   com.apple.AppKit              0x00007fff9413011b -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation          0x00007fff961e572a -[NSThread main] + 68
    5   com.apple.Foundation          0x00007fff961e56a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 56:
    0   libsystem_kernel.dylib        0x00007fff90cff192 __workq_kernreturn + 10
    1   libsystem_c.dylib               0x00007fff95f57594 _pthread_wqthread + 758
    2   libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 57:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff5fbfcb68  rcx: 0x0000000132880678  rdx: 0x0000000000000000
      rdi: 0x000000012dd625c0  rsi: 0x0000000131fc2820  rbp: 0x00007fff5fbfcb00  rsp: 0x00007fff5fbfcb00
       r8: 0x0000000000000000   r9: 0x0000000000000005  r10: 0x0000000000004da0  r11: 0xfffffffecd32dbdf
      r12: 0x0000000000000000  r13: 0x0000000131fc2820  r14: 0x00000001339d9908  r15: 0x00000001339d9900
      rip: 0x00007fff91fdeeeb  rfl: 0x0000000000010246  cr2: 0x0000000000000018
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x103673fff +com.adobe.Photoshop (13.1.2 - 13.1.2.224) <E29BEA76-8EC8-3A4C-8279-056B8B0006D7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
           0x103d34000 -        0x103d60ff7 +libtbb.dylib (??? - ???) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbb.dylib
           0x103d77000 -        0x103d85ff3 +libtbbmalloc.dylib (??? - ???) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbbmalloc.dylib
           0x103d99000 -        0x103da0fff  org.twain.dsm (1.9.5 - 1.9.5) <D3C111E6-AAE8-3267-B760-1529D0917170> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103da8000 -        0x103dc2ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103dcb000 -        0x103dd1fff  com.apple.agl (3.2.0 - AGL-3.2.0) <AB0B5D3F-BA2A-3366-830A-EF9258C18276> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103dd8000 -        0x103fa1fff +com.adobe.owl (AdobeOwl version 5.0.4 - 5.0.4) <0FA698D2-CE7E-3C5A-B3D2-D9859A8612A0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103fe3000 -        0x104429ff7 +com.adobe.MPS (AdobeMPS 5.8.0.19463 - 5.8.0.19463) <8A4BA3B2-6F6A-3958-ABDE-C3E8F21373B0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x1044a5000 -        0x1047feff7 +com.adobe.AGM (AdobeAGM 4.26.20.20743 - 4.26.20.20743) <27080135-E835-75EF-FF42-15299479FDA1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104867000 -        0x104bc8fef +com.adobe.CoolType (AdobeCoolType 5.10.33.20743 - 5.10.33.20743) <758DF893-C0F4-5769-53C5-7C80FC9111FB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104c15000 -        0x104c3dff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <BFA061BE-7598-275D-D3F7-5842674E367E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104c44000 -        0x104c70fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x104c93000 -        0x104de0ff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x104e54000 -        0x104ec3fff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <3DF07718-0B1A-3EFC-AEC6-A5F77F441243> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x104ee3000 -        0x104f42ff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <213B039E-BFDA-3FD3-9E86-C5A7F96F33E4> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104fa4000 -        0x105034ff7 +com.adobe.AIF (Adob

    Happened again, here's another crash report. This time it was on a smaller file, so I'm not sure file size had anything to do with it.
    Process:         Adobe Photoshop CS6 [290]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.1.2 (13.1.2.224)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [163]
    Date/Time:       2014-01-15 15:23:45.349 -0800
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          295628 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  1538014 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      F64B6195-CB0C-467E-B495-A3293D5B43A6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000100000000-0000000103674000 [ 54.5M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Application Specific Information:
    objc_msgSend() selector name: isKindOfClass:
    objc[290]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                 0x00007fff90b06110 objc_msgSend_vtable4 + 16
    1   com.adobe.owl                   0x0000000103df5858 0x103dd8000 + 120920
    2   com.adobe.owl                   0x0000000103df587f 0x103dd8000 + 120959
    3   com.adobe.owl                   0x0000000103e23bda 0x103dd8000 + 310234
    4   com.adobe.owl                   0x0000000103e23898 OWLWidgetGetParent + 57
    5   com.adobe.Photoshop             0x0000000101703552 0x100000000 + 24130898
    6   com.adobe.Photoshop             0x0000000101060a4a 0x100000000 + 17173066
    7   com.adobe.Photoshop             0x000000010105f161 0x100000000 + 17166689
    8   com.adobe.Photoshop             0x000000010105f28f 0x100000000 + 17166991
    9   com.adobe.Photoshop             0x0000000100fdfc40 0x100000000 + 16645184
    10  com.adobe.Photoshop             0x0000000101741b50 0x100000000 + 24386384
    11  com.adobe.Photoshop             0x0000000101743bb9 0x100000000 + 24394681
    12  com.adobe.owl                   0x0000000103e207ef 0x103dd8000 + 296943
    13  com.adobe.owl                   0x0000000103e205b8 0x103dd8000 + 296376
    14  com.adobe.owl                   0x0000000103e94661 0x103dd8000 + 771681
    15  com.adobe.owl                   0x0000000103e33765 0x103dd8000 + 374629
    16  com.adobe.owl                   0x0000000103dffdfe 0x103dd8000 + 163326
    17  com.adobe.owl                   0x0000000103e02b53 0x103dd8000 + 174931
    18  com.apple.Foundation            0x00007fff961e2f40 __NSFireTimer + 102
    19  com.apple.CoreFoundation        0x00007fff966a6934 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    20  com.apple.CoreFoundation        0x00007fff966a6486 __CFRunLoopDoTimer + 534
    21  com.apple.CoreFoundation        0x00007fff96686e11 __CFRunLoopRun + 1617
    22  com.apple.CoreFoundation        0x00007fff96686486 CFRunLoopRunSpecific + 230
    23  com.apple.HIToolbox             0x00007fff968252bf RunCurrentEventLoopInMode + 277
    24  com.apple.HIToolbox             0x00007fff9682c4bf ReceiveNextEventCommon + 181
    25  com.apple.HIToolbox             0x00007fff9682c3fa BlockUntilNextEventMatchingListInMode + 62
    26  com.apple.AppKit                0x00007fff93efb779 _DPSNextEvent + 659
    27  com.apple.AppKit                0x00007fff93efb07d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    28  com.apple.AppKit                0x00007fff93ef79b9 -[NSApplication run] + 470
    29  com.adobe.Photoshop             0x0000000101706d22 0x100000000 + 24145186
    30  com.adobe.Photoshop             0x0000000101707fec 0x100000000 + 24149996
    31  com.adobe.Photoshop             0x000000010008818d 0x100000000 + 557453
    32  com.adobe.Photoshop             0x00000001002ca14c 0x100000000 + 2924876
    33  com.adobe.Photoshop             0x00000001002ca229 0x100000000 + 2925097
    34  com.adobe.Photoshop             0x00000001000029f4 0x100000000 + 10740
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib          0x00007fff90cff7e6 kevent + 10
    1   libdispatch.dylib               0x00007fff92e9e786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib               0x00007fff92e9d316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib          0x00007fff90cfee42 __semwait_signal + 10
    1   libsystem_c.dylib               0x00007fff95f0bdea nanosleep + 164
    2   com.adobe.PSAutomate            0x00000001179436eb 0x117800000 + 1324779
    3   com.adobe.PSAutomate            0x0000000117929539 0x117800000 + 1217849
    4   com.adobe.PSAutomate            0x0000000117943a56 0x117800000 + 1325654
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine            0x0000000130626c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine            0x00000001303d4ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine            0x0000000130626c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine            0x00000001303d4ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine            0x0000000130626c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine            0x00000001303d4ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine            0x0000000130626c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine            0x00000001303d4ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib          0x00007fff90cfd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib          0x00007fff90cfcd71 mach_msg + 73
    2   com.apple.CoreFoundation        0x00007fff9667e50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation        0x00007fff96686c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation        0x00007fff96686486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO           0x00007fff8ddd0fe9 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO           0x00007fff8ddc715a CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f592a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine            0x0000000130626bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine            0x000000013063eddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f592a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine            0x0000000130626bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine            0x00000001307b9233 APXGetHostAPI + 4164259
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib          0x00007fff90cff7e6 kevent + 10
    1   com.adobe.dvatransport.framework  0x0000000126b285b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   com.adobe.dvatransport.framework  0x0000000126b3427b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   com.adobe.dvatransport.framework  0x0000000126b1cab5 SkyConnectionEnv::MainLoop() + 117
    4   com.adobe.dvatransport.framework  0x0000000126b1cb19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.dvatransport.framework  0x0000000126b344df boost::asio::detail::task_io_service::run(boost::system::error_code&) + 1167
    3   com.adobe.dvatransport.framework  0x0000000126b34acd boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 61
    4   com.adobe.dvatransport.framework  0x0000000126b26d99 boost_asio_detail_posix_thread_function + 25
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib          0x00007fff90cff7e6 kevent + 10
    1   com.adobe.dvatransport.framework  0x0000000126b285b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   com.adobe.dvatransport.framework  0x0000000126b3427b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   com.adobe.dvatransport.framework  0x0000000126b1cab5 SkyConnectionEnv::MainLoop() + 117
    4   com.adobe.dvatransport.framework  0x0000000126b1cb19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib          0x00007fff90cfed7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib   0x00000001184825ec Invoke + 45721
    2   ServiceManager-Launcher.dylib   0x0000000118481813 Invoke + 42176
    3   ServiceManager-Launcher.dylib   0x0000000118480be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib   0x0000000118480c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib   0x000000011847c30f Invoke + 20412
    6   ServiceManager-Launcher.dylib   0x000000011847c616 Invoke + 21187
    7   ServiceManager-Launcher.dylib   0x000000011847ccd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib   0x000000011847cf41 Invoke + 23534
    9   ServiceManager-Launcher.dylib   0x000000011847f61d Invoke + 33482
    10  ServiceManager-Launcher.dylib   0x000000011847f775 Invoke + 33826
    11  ServiceManager-Launcher.dylib   0x000000011847ffb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib   0x00000001184800ad Invoke + 36186
    13  ServiceManager-Launcher.dylib   0x0000000118472d6b Login + 480
    14  ServiceManager-Launcher.dylib   0x00000001184767ad Login + 15394
    15  ServiceManager-Launcher.dylib   0x0000000118480412 Invoke + 37055
    16  ServiceManager-Launcher.dylib   0x0000000118482253 Invoke + 44800
    17  libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    18  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 33:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib          0x00007fff90cfedf2 __select + 10
    1   com.apple.CoreFoundation        0x00007fff966cfc8b __CFSocketManager + 1355
    2   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    3   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 34:: CoreAnimation render server
    0   libsystem_kernel.dylib          0x00007fff90cfd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib          0x00007fff90cfcd71 mach_msg + 73
    2   com.apple.QuartzCore            0x00007fff9090fdf5 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore            0x00007fff9090fd35 thread_fun + 24
    4   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    5   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                    0x0000000103d43010 tbb::internal::rml::pr

  • Two work-arounds for Siena when working with large files

    MonaTech pointed out that Project Siena will crash when switching to the desktop or another app.  I've also noticed this happening even when the monitor goes to sleep with inactivity.  To be clear, this is *developing* in Siena, not after the app
    you're working on has been compiled and installed.
    The 'non-technical' work-around that has been successful for me is to split the screen before I switch to another app.  It's not perfect but at least I can switch to another app (browser, desktop app, etc.) without losing where I'm at.
    A more technical work-around is proposed in this thread:http://social.technet.microsoft.com/Forums/en-US/c768be8f-3c85-444e-bb44-6f29abdecee7/project-siena-app-memory-issues-with-large-project-?forum=projectsiena 
    If you have a version of Visual Studio (that's not Express) it may do the trick for you.
    FYI - In the post you'll see that Olivier responded and indicates that this is a known issue.
    Thor

    Wow - that's what you get for multi-tasking! :)
    The link is now fixed in my original post and posted here for convenience:
    http://social.technet.microsoft.com/Forums/en-US/c768be8f-3c85-444e-bb44-6f29abdecee7/project-siena-app-memory-issues-with-large-project-?forum=projectsiena
    Thor

  • Best practices for working with large placed bitmap images?

    Hey all,
    I need some advice on the best way to approach building these files. I've been working on some banners that are very large: 3 x 7 feet.
    Each banner has a simple vector graphic treatment at the top and bottom (rectangle with a different colored rule on top, and vector logo) and a small amount of text, just a URL and a headline.The headline is type (not converted to outlines) and usually has some other effect applied to it, say a drop shadow or outer glow. Under these graphics is a full bleed image. The placed images need to be 150ppi at actual size, so they're honking big, sometimes up to 2GB. Once the layouts are approved, they have to go to a vendor for output.
    The Illustrator docs are really large, and I've read in other threads how to combat that (PDF compatibility, raster settings). But even still, does anyone have any insight into the best way to deal with these things? The dimensions are large, and then the images are large, and it just makes for lots of looking at the spinning ball of death...
    If it were me, I'd build them in InDe, but the vector graphics need to be edited for each one, and I so don't like to do that in InDe unless forced. To me, it's still ultimately a page layout app, not a drawing app. (Old school here.)
    FYI, our machines are all MBPs with 8G ram and the latest Intel Core 2 Duo chips, 2.66 and 2.8GHz. If we keep the files local (as opposed to working on the server) it should be fairly zippy... No?
    Any advice is appreciated, thanks!

    You can get into memory trouble with very large placed pdf files. Tiffs too.
    This has to do with the preview, which contains much more information than you need for working with.
    On the other hand if you place EPSs and take care not to turn on overprint preview you can get away with huge files.
    If you do turn on overprint preview your machine will slow down a lot and the file may become totally unmanageable.
    Compare this with to InDesign where you can control the quality of the preview. A hi-res preview will slow you down and most often you don't need it anyway.
    I was working (in Illie) the other day on much larger files than you mention – displays for whole walls – and had some considerable trouble until I reverted to the old EPS format. They say it's dying but it ain't dead yet .

  • Working with Large files in Photoshop 10

    I am taking pictures with a 4X5 large format film camera and scanning them at 3,000 DPI, which is creating extremely large files. My goal is to take them into Photoshop Elements 10 to cleanup, edit, merge photos together and so on. The cleanup tools don't seem to work that well on large files. My end result is to be able to send these pictures out to be printed at large sizes up to 40X60. How can I work in this environment and get the best print results?

    You will need to work with 8bit files to get the benefit of all the editing tools in Elements.
    I would suggest resizing at resolution of 300ppi although you can use much lower resolutions for really large prints that will be viewed from a distance e.g. hung on a gallery wall.
    That should give you an image size of 12,000 x 18,000 pixels if the original aspect ratio is 2:3
    Use the top menu:
    Image >> Resize >> Image Size

  • Illustrator Image Trace doesn't work with large images

    Illustrator's Image Trace doesn't seem to work at all with large images.  The attached image shows the following:
    A) The original raster cropped tightly.
    B) Converting the raster with default "Black and White Logo" settings.  Results in 242 paths and 4792 anchors.
    C) Adding a massive amount of white space and then converting the raster with default "Black and White Logo" settings.  Results in 407 paths and 1620 anchors.
    For whatever reason Illustrator can't seem to handle large images.  This test shows it's not an issue with the image being too complex since all I've done is add white space and the file was saved without compression so there should be no noise.
    This type of glitch started with CS6 with the new Image Trace tool.  Is there a fix for this?  Maybe setting Image Trace into legacy mode?

    Moving to Illustrator forum.

  • Best way to work with large image sequences

    Hello,
    Im relatively new to Adobe CS4. I am learning to create detailed animations with another software that produces thousands of still images. (I normally save them as  .png, 720 x 480, 29.97 fps) I spent the money to buy CS4 becuase I was told this was what I needed to turn those images into video, add titles, captions, credits, etc. So far, I've been useing PremierPro to import the image sequences and add titles. But when I export the sequences, the quality is crap. I've tried all combinations of exporting formats, but even when I try to go for the greatest quality, my files are 100 MB large, and the quality is still crap (nice smooth lines are jagged, and details are blurry and pixilated, even with the titles I added). Can someone tell me how I should be working with these still image sequences so that I can retain the best quality while keeping the file size large. These videos are just played on local computer systems, not over a network or on DVDs. I dont know if I should be bringing the shorter clip sequences into AfterEffects and somehow exporting those. I just dont know. But nothing is working for me. Help!
    Nikki

    Hello!,
    The output frame size has so far been the same as my rendering size (720 x 480), but I's just trying to get the best quality, if I need to render larger I can. Delivery has so far just been video, no audio, although when I get better at this I will record narrations of the animations and put that in. Playback is intended only for computers. Every once in a while, it is requested in a format that will be played over our network, but I wanted to worry about that later.
    The preset I chose for the sequence was the DV-NTSC Standard 32kHz
    The project/sequence settings are:
    General
         Editing Mode: DV NTSC
         Timebase: 29.97 fps
    Video
         Frame size: 720, 480 4:3
         Pixel Aspect Ratio: D1/DV NTSC (0.9091)
         Display Format: 30 fps Non-Drop-Frame Timecode
    Audio
         doesnt matter
    Video Previews
         Preview File Format: NTSC DV
         Codec: DV NTSC
         Maximum Bit Depth
    Hope that was the information you requested.
    Nikki

Maybe you are looking for