Dreamweaver CS3 Slows/Crashes On Certain Files

I'm working on redesigning a website for a client of mine, but for whatever reason, whenever I open the files (HTML, CSS, etc.), Dreamweaver CS3 slows drastically.
If I try to preview the files, if I change the CSS information, if I save them, (the basics) the program slows, and gives a "Not Responding" message. Thankfully, it doesn't crash, but I need to give it upwards of two minutes each time.
This doesn't happen with other websites or projects I've worked or am working on. Any idea on what could be causing this?
My OS is Vista (I know, I know,) and my computer is older by healthy.
I'm just looking for educated guesses, or suggestions on what I might possibly be able to do to test fix it.
Thanks!

I've seen this happen with CSS Templates designed in Artisteer.  The complex CSS code drives DW bonkers.  In my case, DW kept freezing while CSS was enabled.
You might try disabling CSS styles. View > Style Rendering > untick Display Styles.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Mplayer crashes on certain files

    my mplayer is crashing on certain files,
    and on my observations it seems to be *.mkv files only.
    MPlayer interrupted by signal 11 in module: init_audio_codec
    with -nosound:
    MPlayer interrupted by signal 11 in module: video_read_frame
    even though i put mplayer's verbose message open, the only error i could find is the above.
    it seems mplayer managed to crash itself in different modules, but i have no idea why.
    plz help.
    Last edited by b4283 (2009-05-01 07:47:18)

    I'm having the same problem, when trying to play .mkv files SMPlayer gives the following message
    MPlayer has finished unexpectedly. Exit code: 1
    and the log shows:
    /usr/bin/mplayer -noquiet -nofs -nomouseinput -sub-fuzziness 1 -identify -slave -vo xv -ao alsa -nokeepaspect -framedrop -nodr -double -input conf=/usr/share/smplayer/input.conf -stop-xscreensaver -wid 65011727 -monitorpixelaspect 1 -ass -embeddedfonts -ass-line-spacing 0 -ass-font-scale 1 -ass-styles /home/benji/.config/smplayer/styles.ass -fontconfig -font Arial -subfont-autoscale 0 -subfont-osd-scale 20 -subfont-text-scale 20 -subcp enca:en:ISO-8859-1 -subpos 100 -volume 40 -cache 2000 -osdlevel 0 -vf-add screenshot -slices -channels 2 -af scaletempo,equalizer=0:0:0:0:0:0:0:0:0:0 -softvol -softvol-max 110 /home/benji/Videos/TV/Prison Break - S04E17.mkv
    MPlayer UNKNOWN-4.4.0 (C) 2000-2009 MPlayer Team
    137 audio & 296 video codecs
    mplayer: could not connect to socket
    mplayer: No such file or directory
    Failed to open LIRC support. You will not be able to use your remote control.
    Terminal type `unknown' is not defined.
    Playing /home/benji/Videos/TV/Prison Break - S04E17.mkv.
    Cache fill: 0.00% (0 bytes)
    ID_VIDEO_ID=0
    [mkv] Track ID 1: video (V_MPEG4/ISO/AVC), -vid 0
    ID_AUDIO_ID=0
    ID_AID_0_LANG=und
    [mkv] Track ID 2: audio (A_AC3), -aid 0, -alang und
    [mkv] Will play video track 1.
    Matroska file format detected.
    VIDEO: [avc1] 1280x720 24bpp 23.976 fps 0.0 kbps ( 0.0 kbyte/s)
    ID_FILENAME=/home/benji/Videos/TV/Prison Break - S04E17.mkv
    ID_DEMUXER=mkv
    ID_VIDEO_FORMAT=avc1
    ID_VIDEO_BITRATE=0
    ID_VIDEO_WIDTH=1280
    ID_VIDEO_HEIGHT=720
    ID_VIDEO_FPS=23.976
    ID_VIDEO_ASPECT=1.7778
    ID_AUDIO_FORMAT=8192
    ID_AUDIO_BITRATE=0
    ID_AUDIO_RATE=48000
    ID_AUDIO_NCH=6
    ID_LENGTH=2590.46
    ID_SEEKABLE=1
    ID_CHAPTERS=0
    [ass] auto-open
    Opening video filter: [screenshot]
    [ass] Init
    [ass] Updating font cache.
    ==========================================================================
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    Selected video codec: [ffh264] vfm: ffmpeg (FFmpeg H.264)
    ==========================================================================
    ID_VIDEO_CODEC=ffh264
    ==========================================================================
    Opening audio decoder: [liba52] AC3 decoding with liba52
    Using SSE optimized IMDCT transform
    MPlayer interrupted by signal 11 in module: init_audio_codec
    ID_SIGNAL=11
    - MPlayer crashed by bad usage of CPU/FPU/RAM.
    Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and
    disassembly. Details in DOCS/HTML/en/bugreports_what.html#bugreports_crash.
    - MPlayer crashed. This shouldn't happen.
    It can be a bug in the MPlayer code _or_ in your drivers _or_ in your
    gcc version. If you think it's MPlayer's fault, please read
    DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and
    won't help unless you provide this information when reporting a possible bug.
    I'm using smplayer 0.6.7-1,  mplayer 29188-2 (from testing)
    Last edited by superrad (2009-05-03 11:17:33)

  • Dreamweaver CS3 error crash on SELECT

    Took me a few hours to figure this out. It was as if only
    certain pages would crash DW when I began to work in them about
    half way down the page, in code view. Opening the file in notepad,
    I deleted line-by-line to find the culprit. Then I ran some test to
    figure out the specific cause, and here is the results:
    This crashes DW:
    <select name="anyname">
    <option
    value="1"><cfoutput>#now()#</cfoutput></option>
    </select>
    And this crashes DW:
    <select>
    <cfset myVar = "One">
    </select>
    This does not crash DW:
    <cfoutput>
    <select name="anyname">
    <option value="1">#now()#</option>
    </select>
    </cfoutput>
    This does not crash DW:
    <select name="anyname">
    <option value="1">One</option>
    </select>
    So, any <cf... code inside a <select> statement will
    crash DW (for me). This is bad when I need to do <cfloop>'s
    over <options>.
    However, this does not crash DW:
    <cfselect name="anyname">
    <option
    value="1"><cfoutput>#now()#</cfoutput></option>
    </cfselect>
    Notice that the above example is like the first example,
    except that I use <cfselect> instead of <select>. That
    is my fix for now because it works with <cfselect>.
    Any ideas whats going on here? How to fix it or anything?
    Dreamweaver CS3 v.9 Build 3481
    Windows XP Pro 2002 SP2

    clint317 wrote:
    > Any ideas whats going on here? How to fix it or
    anything?
    Yes. This technote should sort it:
    http://www.adobe.com/go/kb402776
    The technote refers only to PHP and ASP pages, but the same
    problem
    seems to have affected CF users, too.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Is Spry wdiget causing my Dreamweaver CS3 to crash?

    Recently my dreamweaver cs3 crashed, The last thing I was
    doing on dreamweaver CS3 was using the spry tabs widget.
    When I tried to run Dreamweaver CS3 application, it would
    crash. I then had to reinstall my Dreamweaver following the clean
    cs3 routine.
    Dreamweaver now runs, but when I try and open the html file
    which contained the spry widget it crashes. When I try and open any
    other html file its fine. I even tried to open the spry html page
    using dreamweaver MX2004, and it too crashed.
    However when I view the spry widget page in a web browser, it
    works fine.
    So I guess the srpy widget is causing problems. If so, how do
    I fix it?
    thanks
    Jon

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430http://support.apple.com/kb/ht1430
     Cheers, Tom

  • OSX - DREAMWEAVER CS3 SLOW

    Hi Forum,
    Dreamweaver Cs3 have very slow performance on my new mac.
    somebody know some
    solution?
    Thanks,
    COMAC

    I have the entire cs3 suite running on intel mac towers,
    powerpc mac towers, iMacs, and mac laptops... all work perfect and
    are very fast. If you are waiting 30 seconds to type something,
    there is something wrong with your individual setup.
    I would recommend disabling all of the dreamweaver extensions
    to determine if a poorly written extension is causing an issue. And
    yes, even one bad extension can cause dreamweaver to run like a dog
    on mac or pc.
    Second, I would make sure you are not using a remote server
    location as a testing server, or using a remote location to work on
    files, which will cause dreamweaver to communicate with the server
    every time you attempt to do something and drastically slow
    performance... on mac or pc.
    No resolution.... remove the entire suite / qpplication from
    your computer using the adobe installer software, restart computer.
    Using disk utility, do a drive check to ensure you have no
    catalogue issue, then repair permissions as well. Reinstall
    software. once complete, run disk utility again. Then check for
    updates. If you install any updates, run disk utility again. This
    is way overboard, but you are ensuring you have no potential issues
    for the next update.
    no resolution.... then you need to run a hardware test to
    ensure you don't have faulty RAM or other hardware. When restarting
    your computer, hold down the D key on the keyboard. This should
    launch the apple hardware check. You may also want to physically
    remove and re seat your RAM to make sure everything is working
    correctly.
    Bottomline, dreamweaver runs very well on OSX. If you're not
    experiencing that, then you need to determine what is wrong on your
    computer, your settings, your installation.

  • Dreamweaver CS3 Blank Page After Putting File To Server

    After putting a shtml file to the server it is blank on the server side. I've tested it from another PC with Dreamweaver same version & setup and it works fine so I assume it's not the server. The file is correct on the local site side but server side is blank yet file size is the same. If I did a sync and had it do the dependant files it seemed to work once then wouldn't work again. If I FTP to the server and drop the file all is fine. I deleted the local user profile and created it and it worked once. I uninstalled Dreamweaver and re-installed it and get the same problem. I exported the site then imported it to a different computer and all is fine on that computer. Not sure what to do

    <<
    Sounds like a strange problem, but take it a step at a time to sort it out. -- Thanks!
    First, SSIs only work when the file is viewed with the browser. In the process of getting the file for the user, the server (if it is set up to handle SSIs) will then insert the contents of the included file before it ships the whole thing off to the user's browser. -- Not sure why you're mentioning SSI's
    Viewing files on the remote - I assume with FTP and a text editor? - proves nothing. -- I think you're wrong, Viewing a file after the transfer and comparing the local version and the server version does prove there is an issue if they are not exactly the same since they should be
    What browser/version are you using? Have you tried other browsers? -- Browser/version is irrelivant since the file on the server side is truely BLANK after you click PUT in dreamweaver and it suposidly "sends" the file
    >>
    Sorry if I'm not explaining it well.. Let me try again..
    Websites all setup and working. index.shtml happens to be setup as the main index file and was working perfectly (had been for a few years)
    After a computer was imaged over the summer with a default image, CS3 was installed again. The Site was setup and the user connected to the site, then modified the index.shtml file. After saving the file they clicked PUT and sent it to the server. It seemed to flash quick and not truely send it like it use to. Use to take a second or two not a close to instant flash. After this happens the page is blank. Here's what I did to dig into and see what I could find.
    Exported the Site , Imported to another computer that had the same image and had CS3 installed (same as the one having a problem)
    Modified the index file and saved then put it. Worked no problems. Ran that test a few times. No problem.
    Back to the problem computer. Made a change saved/put the file , blank again. Used Filezilla. Downloaded the recently put file to my desktop and opened it. Completely Blank. (I opened with a txt view and even opened with Dreamweaver) I checked the index file on the problem computer in the local folder it is in. Everything is there and perfect.

  • Dreamweaver CS3 Stalling when opening html files

    Hello,
    I have Dreamweaver CS3 running Mac OS X 10.5.2 on a new Mac
    Pro, and have had no problems until now. All of a sudden,
    Dreamweaver hangs for between 5 and 10 minutes when opening various
    HTML files. Once the files are open, generally it's fine, without
    any delays or other problems.
    The files are email newsletters, with some of the images
    hosted on a remote server, and some hosted locally on my computer.
    The only difference I can think of is that I installed Fireworks
    and Contribute yesterday, but I don't know if this is related.
    Does anyone have any ideas what the problem could be, or if
    there is anything I can do to solve it?
    Many thanks in advance, D.

    I also work with Dreamweaver CS3 running Mac OS X 10.5.2 on a
    new Mac Pro
    and have had no end of grief... just need to glance at it and
    it will hang...
    Now I have read the following:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401608&sliceId=1
    with a last updated of 06-18-2007 (boy people work fast
    around here)
    Have tried all the suggestions listed there... and some
    more... even reinstalled Dreamweaver... removed all extensions...
    even shifted some of our files from the server to the local
    machine... still hangs... used IP nos in FTP addresses, Rosetta
    mode (that is ugly), removed splash screen, stopped images being
    viewed from Internet, reset config files etc etc
    I'm not really bleating at Adobe, as CS3 was out long before
    Leopard... or is it the Intel based Mac Pro? ...I really don't
    care... I just want a service pack from someone that will fix this
    nonsense. I have seen many forum threads from all over with people
    complaining about this issue.
    We also had a you-beaut Mac server installed for our local
    files (also running Leopard) and our PCs could not lock/unlock
    files (again people pleading for fixes from all around the world).
    Now this was a real pain when working in a team environment with
    Dreamweaver. Answer to this... install Tiger on the server and all
    came good again.
    The mess we have had with Leopard and Dreamweaver far
    outstrips Vista issues on PCs... on that note... also we run a new
    HP PC... CS3 products are running like a dream on that machine.
    Even an old PC P4 266 we have chugs (OK slowly) with all CS3 Design
    Premium.
    So back in 06-18-2007 Adobe admits there is a problem with
    the new Macs running Leopard and Dreamweaver... we even had our
    local Mac folk admit there are problems (that was like getting
    blood out of stone for that admittance)
    We have lost a tremendous amount of productive hours over
    these issues... can someone from Adobe please communicate with
    Mac/Apple over these issues... or is it a case of "it is not our
    problem, they need to come up with a solution..."

  • Dreamweaver CS3 slow performance issue confusions & work arounds

    Never mind...I found it.
    Of course I have all the firewall, worm, scanning, phishing
    filtering, full time protect, and everything else turned off when I
    am working on a remote/testing site however I found the Symantec
    antivirus email scan being enabled (doesn't it just interact with
    my email program?) was getting in the way of DW9 ftp operations,
    causing some lagging that was putting DW9 into an unstable mode
    during and immediately after (10 seconds) ftp operations.
    The CPU still spikes to 99% during ftp functions but DW9
    works even though it's likely taxed to the max but when I turn off
    email scan DW9 returned to a functioning state during ftp and
    remote file view. Whatever it takes huh?
    PS: email scanning only never effected DW8.02
    My System Info: properly configured (as in: everything works
    or I fix it) Toshiba - XP pro SP2 – Pentium 4 - 2.3GHz
    – 1.5 GB ram – Intel extreme graphics card 64 MB ram
    – Apache 2.2 server – PHP 5 – MySQL 5 -
    phpMyAdmin – Dreamweaver 8.02 – Interakt Kollection
    3.7.1 – Dreamwweaver 9 - DeVtoolbox – Flash –
    GoLive - Photoshop - ImageReady – Illustrator – Acrobat
    – CuteFTP – Putty SSH - blabla...)

    sundap wrote:
    > Hey , i am pretty new to PHP and MYSQL. I have a login
    page that uses
    > Dreamweaver CS3's Log In User built in function.
    However, when succesfully
    > logged in, I want to create a page that says Hello John,
    or Welcome Bob
    > according to the user that logs in and have been
    unsuccessful so far. I go to
    > the correct page but it says Welcome ( Blank Space)
    >
    > any thoughts? i tried this
    >
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15398&sliceId=2
    >
    > and that doesnt work for me either.....
    What does doesn't work mean?
    Once the user has logged in, can you output the MM_Username
    session variable to the page (in particular the page that the log
    in user behavior has set for a successful log in)? You can do that
    by simply selecting it in the Bindings panel and dragging into the
    design view then previewing the page (after you've logged in of
    course).
    Also to get better responses (and more folks looking at it),
    you should probably post this in the Dreamweaver Application dev
    group:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=263&entercat= y
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | Adobe Community Expert

  • Dreamweaver CS3 slow running one possible fix

    Hi Guys
    I have seen several threads relating to Dreamweaver CS3
    running slow - some about Managing Sites. I was having the same
    trouble and when clicking on a site it took over 30 seconds to
    bring the Edit Box up.
    I have been running Windows Defender and there is no settings
    adjustment in that at all. So I decided to take it off - et voila!
    Sites take exactly 1 second to appear, and MY problem at
    least appears to be fixed. I just thout I would pass this on in
    case anyone else is having the same problem. If you are, disable
    your firewall and test DW without it.
    It is so easy to blame Adobe when other programs are causing
    the problems.
    Hope this helps others.
    David Roberts

    Are you running a local firewall? Have you tried connecting
    with this
    turned off?
    Also, please tell us how you have configured your remote site
    definition.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "CartoonHead" <[email protected]> wrote in
    message
    news:fasak3$bfv$[email protected]..
    > "Derob99" <[email protected]> wrote in
    message
    > news:fap71p$s6a$[email protected]..
    >> Unfortunately, Murray, Live One Care has virutally
    no user settings at
    >> all. It is pretty much install and go with what they
    give you.
    >>
    >> Anyway, hopefully this will help others in the same
    boat.
    >
    >
    > I should have read the full post before taking of
    Defender. Anyhooo I am
    > not running "Live one Care" and I still have the same
    problem. I also
    > cannot upload anything to my site using site manager. A
    pop up says login
    > or password error. I have checked and rechecked and it
    will not connect. I
    > can however log in to my server directly, but I don't
    wish to do it this
    > way. Any help would be gratefully appreciated .
    >
    >
    > CH
    >

  • Fix found: Illustrator CS3 (PC) crashes when opening file or starting new file

    Issue:
    -Running Windows XP, tried installing CS3 Web premium on a new machine.
    -All programs worked well except Illustrator; when opening a file or creating a new one, illustrator would crash and give a message of "Microsoft has experienced an error" blah blah "Send error report?"
    -when trying to "open with.." by right clicking on a file, it would crash as well but give the message "The file xxxxxx.pdf is not a valid Win 32 application." Blah blah. Same thing with .ai files, etc.
    Attempts to fix:
    -re-installed CS3
    -updated Illustrator to 13.0.1
    -switched users
    -cleaned up fonts
    Fix that worked:
    -uninstalled pre-loaded version of Acrobat that came with PC.  I had a suspicion that the newer version of Acrobat on the new PC (9.5 or similar) might conflict with Illustrator, as the version of Acrobat to come with CS3 was 8 (I believe). This seemed to fix the problem.
    Cheers,
    Mike

    lol issue still remains... if an admin sees this please remove entire post
    Thanks

  • Dreamweaver CS3 jQuery crash

    Hi
    Once again, DW is doing its sudden crash act on an innocuous document when carrying out an innocuous select action. Please see the test document at http://www.nottingham.ac.uk/~ntzrlo/rlos/database/test/edit_rlo_tabs.php and hit 'Edit Record'. The resulting form uses jQuery UI extensively, and gets data from a mySQL database. I have created this in DW, as well as other editors, but now when I open the file and try to do almost anything with it DW immediately crashes and I get the 'send error to Microsoft' message. This happens if I simply try to select a table cell, or go into the code and try to select text - bang, down it goes. I can do minor text edits in either view, but any attempt to select crashes.
    This problem rings a slight bell with me but a search on these fora didn't come up with anything. Can anyone suggest why DW should crash this way? It smells of a memory overflow caused by DW trying to render the page, though that wouldn't explain why it crashes in Code View also. I'm using DW CS3 v9.0 Build 3481 under Windows XP. There are no further updates to this version that I'm aware of. I've not restarted Windows yet as it's a pain to do so with other things on the go and this problem has already cost me an hour, but I'll do so shortly. If there's no clear reason why this is happening then no big, I'd rather use a proper HTML editor like Notepad++ than fight with DW again over just one doc.
    Cheers
    Fred

    I thought this rung a bell - as soon as I posted my query I remembered the weird daylight saving time bug, so I hunted down the technote and carried out the instructions (deleting a corrupted cache file) and now happiness and contentment has returned. Perhaps what I ought to do is put a note in my diary every year for when the clocks go back at the end of October.
    So, as I've answered my own query fully, do I get loads of points?
    Fred

  • Dreamweaver CS5.5 Crashes Opening 1 File

    I'm having problems with Dreamweaver CS5.5 (v 11.5.1.5344) crashing when opening 1 .php file in a site. Other php files in the same site open fine, but when I open this one particular file Dreamweaver CS5.5 stops responding and I have to force quit. I'm running Mac OS X 10.6.8 and have trashed the Preferences completely.
    Other sites work as expected and I can open the problematic file in a text editor and make changes successfully.Any tips for what to do next as this is getting really frustrating.
    I have lots of crash logs but tried to submit one to Adobe but it was too large to submit.
    Thanks

    Here's the crashlog if that helps as well:
    Date/Time:       2012-05-23 15:11:13 +1000
    OS Version:      10.6.8 (Build 10K549)
    Architecture:    x86_64
    Report Version:  7
    Command:         Dreamweaver
    Path:            /Applications/Adobe Dreamweaver CS5.5/Adobe Dreamweaver CS5.5.app/Contents/MacOS/Dreamweaver
    Version:         11.5.1.5344 (11.5.1)
    Parent:          launchd [140]
    PID:             393
    Event:           hang
    Duration:        6.54s (sampling started after 2 seconds)
    Steps:           26 (100ms sampling interval)
    Pageins:         25
    Pageouts:        0
    Process:         Dreamweaver [393]
    Path:            /Applications/Adobe Dreamweaver CS5.5/Adobe Dreamweaver CS5.5.app/Contents/MacOS/Dreamweaver
    UID:             501
      Thread be4        DispatchQueue 100
      User stack:
        26 start + 54 (in Dreamweaver) [0x3026]
          26 main + 339 (in Dreamweaver) [0xdb75a3]
            26 CRealApp::Run() + 405 (in Dreamweaver) [0xde74a5]
              26 RunApplicationEventLoop + 243 (in HIToolbox) [0x9069ad4f]
                26 ToolboxEventDispatcher + 86 (in HIToolbox) [0x9069ac17]
                  26 SendEventToEventTarget + 52 (in HIToolbox) [0x90511773]
                    26 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411 (in HIToolbox) [0x904eeed6]
                      26 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672 (in HIToolbox) [0x904f0060]
                        26 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3006 (in HIToolbox) [0x90523984]
                          26 SendEventToEventTargetWithOptions + 58 (in HIToolbox) [0x904eed35]
                            26 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411 (in HIToolbox) [0x904eeed6]
                              26 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567 (in HIToolbox) [0x904efc0f]
                                26 CPostedMessage::PostedMessageHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 225 (in Dreamweaver) [0xdf5c51]
                                  26 CPostedMessage::SpendTime(EventRecord const&) + 186 (in Dreamweaver) [0xdf412a]
                                    26 CWnd::WinSendMessage(unsigned int, unsigned int, long) + 56 (in Dreamweaver) [0xdf3338]
                                      26 CWnd::WindowProc(unsigned int, unsigned int, long) + 57 (in Dreamweaver) [0xdf3439]
                                        26 TitanView::OnWndMsg(unsigned int, unsigned int, long, long*) + 182 (in Dreamweaver) [0xe3d04]
                                          26 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 285 (in Dreamweaver) [0xdf80cd]
                                            26 TitanView::DoDeferredUpdates() + 187 (in Dreamweaver) [0xecd8b]
                                              26 TitanView::OnInitialUpdate(int) + 1651 (in Dreamweaver) [0xec64b]
                                                26 CView::OnInitialUpdate() + 44 (in Dreamweaver) [0xddcd0c]
                                                  26 TitanView::OnUpdate(CView*, long, CObject*) + 61 (in Dreamweaver) [0xf6ef9]
                                                    26 TitanView::DoUpdatePagination() + 423 (in Dreamweaver) [0xf6799]
                                                      26 TitanView::DoTheNextBlock(int, CDC32*) + 133 (in Dreamweaver) [0xe675d]
                                                        26 ViewBlockList::DoTheNextBlock(CDC32*, ViewBlockList::PaginationMode, CRect const*, int) + 206 (in Dreamweaver) [0x59db74]
                                                          26 ViewBlock::PaginateBlock(BlockState&) + 827 (in Dreamweaver) [0x599f63]
                                                            26 ViewBlock::PaginateBlockInternal(BlockState&, TitanViewLayerManager*) + 126 (in Dreamweaver) [0x599c10]
                                                              26 ViewBlock::AddAnotherLine(BlockState&, TitanViewLayerManager*) + 1241 (in Dreamweaver) [0x599799]
                                                                26 ViewBlock::AddAnotherItem(BlockState&, CreatorData&, TitanViewLayerManager*) + 10686 (in Dreamweaver) [0x598786]
                                                                  26 Obstruction::ActivateObstructions(BlockState&, Run*) + 394 (in Dreamweaver) [0x593548]
                                                                    26 ViewItemFloatBox::PaginateFloatForActivation(BlockState&) + 467 (in Dreamweaver) [0x5d460b]
                                                                      26 ViewItemFloatBox::PaginateForActualWidth(BlockState&, int) + 383 (in Dreamweaver) [0x5d4217]
                                                                        26 ViewBlockList::FullForegroundPaginate(CDC32*) + 66 (in Dreamweaver) [0x59e1ec]
                                                                          26 ViewBlockList::DoTheNextBlock(CDC32*, ViewBlockList::PaginationMode, CRect const*, int) + 206 (in Dreamweaver) [0x59db74]
                                                                            26 ViewBlock::PaginateBlock(BlockState&) + 788 (in Dreamweaver) [0x599f3c]
                                                                              10 ViewBlock::GetObstructionsForBlock(ViewBlockList*, int, Obstruction**, CRect*) + 160 (in Dreamweaver) [0x590f3a]
                                                                              9 ViewBlock::GetObstructionsForBlock(ViewBlockList*, int, Obstruction**, CRect*) + 123 (in Dreamweaver) [0x590f15]
                                                                                4 TitanLayerPos::GetAbsoluteLayerPos() const + 53 (in Dreamweaver) [0xfbdc9]
                                                                                  2 CPoint::operator+=(tagPOINT) + 15 (in Dreamweaver) [0xd7428f]
                                                                                  1 CPoint::operator+=(tagPOINT) + 6 (in Dreamweaver) [0xd74286]
                                                                                2 TitanLayerPos::GetAbsoluteLayerPos() const + 40 (in Dreamweaver) [0xfbdbc]
                                                                                1 TitanLayerPos::GetAbsoluteLayerPos() const + 48 (in Dreamweaver) [0xfbdc4]
                                                                                1 CPoint::operator+=(tagPOINT) + 0 (in Dreamweaver) [0xd74280]
                                                                                1 TitanLayerPos::GetAbsoluteLayerPos() const + 44 (in Dreamweaver) [0xfbdc0]
                                                                              2 ViewBlock::GetObstructionsForBlock(ViewBlockList*, int, Obstruction**, CRect*) + 129 (in Dreamweaver) [0x590f1b]
                                                                              2 ViewBlock::GetObstructionsForBlock(ViewBlockList*, int, Obstruction**, CRect*) + 161 (in Dreamweaver) [0x590f3b]
                                                                              2 ViewBlock::GetObstructionsForBlock(ViewBlockList*, int, Obstruction**, CRect*) + 154 (in Dreamweaver) [0x590f34]
                                                                                1 CRect::WinOffsetRect(tagPOINT) + 20 (in Dreamweaver) [0xd746e4]
                                                                                1 CRect::WinOffsetRect(tagPOINT) + 14 (in Dreamweaver) [0xd746de]
                                                                              1 CRect::WinOffsetRect(tagPOINT) + 0 (in Dreamweaver) [0xd746d0]
      Kernel stack:
        26 hndl_allintrs + 242 [0xffffff80002e40d2]
          26 interrupt + 169 [0xffffff80002d0322]
            26 lapic_interrupt + 161 [0xffffff80002d775c]
              26 mp_kdp_exit + 921 [0xffffff80002d844d]
                26 sync_iss_to_iks + 192 [0xffffff80002d0079]
      Thread bf2        DispatchQueue 1634545000
      User stack:
        26 start_wqthread + 30 (in libSystem.B.dylib) [0x909505c6]
          26 _pthread_wqthread + 390 (in libSystem.B.dylib) [0x90950781]
            26 _dispatch_worker_thread2 + 240 (in libSystem.B.dylib) [0x90950cfe]
              26 _dispatch_queue_invoke + 163 (in libSystem.B.dylib) [0x90950f59]
                26 kevent + 10 (in libSystem.B.dylib) [0x90951382]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Thread bff      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 C_AMTUISwitchSuppressUpdates + 16966 (in amtservices) [0x1f3252da]
              26 C_EULA_SetState + 2166 (in amtservices) [0x1f31e074]
                26 C_AMTUISwitchSuppressUpdates + 16864 (in amtservices) [0x1f325274]
                  26 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x909a105f]
                    26 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x9092ab42]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Thread c23      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 ScObjects::Thread::go(void*) + 168 (in JSBridge) [0x248a8e88]
              26 ScObjects::BridgeTalkThread::run() + 163 (in JSBridge) [0x248a3303]
                26 ScObjects::Thread::sleep(unsigned int) + 59 (in JSBridge) [0x248a8d7b]
                  26 __semwait_signal + 10 (in libSystem.B.dylib) [0x90958aa2]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Thread c27      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 Invoke + 53977 (in ServiceManager-Launcher.dylib) [0x24a60f49]
              26 Invoke + 44427 (in ServiceManager-Launcher.dylib) [0x24a5e9fb]
                26 Login + 7251 (in ServiceManager-Launcher.dylib) [0x24a516f7]
                  26 Login + 1654 (in ServiceManager-Launcher.dylib) [0x24a5011a]
                    26 Invoke + 43036 (in ServiceManager-Launcher.dylib) [0x24a5e48c]
                      26 Invoke + 42527 (in ServiceManager-Launcher.dylib) [0x24a5e28f]
                        26 Invoke + 40945 (in ServiceManager-Launcher.dylib) [0x24a5dc61]
                          26 Invoke + 40264 (in ServiceManager-Launcher.dylib) [0x24a5d9b8]
                            26 Invoke + 26973 (in ServiceManager-Launcher.dylib) [0x24a5a5cd]
                              26 Invoke + 26719 (in ServiceManager-Launcher.dylib) [0x24a5a4cf]
                                26 Invoke + 23679 (in ServiceManager-Launcher.dylib) [0x24a598ef]
                                  26 Invoke + 23190 (in ServiceManager-Launcher.dylib) [0x24a59706]
                                    26 Invoke + 46739 (in ServiceManager-Launcher.dylib) [0x24a5f303]
                                      26 Invoke + 46601 (in ServiceManager-Launcher.dylib) [0x24a5f279]
                                        26 Invoke + 46519 (in ServiceManager-Launcher.dylib) [0x24a5f227]
                                          26 Invoke + 50950 (in ServiceManager-Launcher.dylib) [0x24a60376]
                                            26 Invoke + 54887 (in ServiceManager-Launcher.dylib) [0x24a612d7]
                                              26 recvfrom$UNIX2003 + 10 (in libSystem.B.dylib) [0x909680d6]
      Kernel stack:
        26 hndl_unix_scall + 289 [0xffffff80002e4441]
          26 unix_syscall + 557 [0xffffff80004e7e63]
            26 recvfrom_nocancel + 287 [0xffffff80004b3026]
              26 shutdown + 499 [0xffffff80004b28a0]
                26 soreceive + 1230 [0xffffff80004ae1a5]
                  26 sbwait + 152 [0xffffff80004afe5e]
                    26 msleep + 130 [0xffffff800024e865]
                      26 wakeup + 283 [0xffffff800024e416]
                        26 lck_mtx_sleep + 92 [0xffffff8000206270]
                          26 thread_block_reason + 289 [0xffffff8000209acb]
                            26 thread_dispatch + 1894 [0xffffff800020990e]
                              26 machine_switch_context + 383 [0xffffff800022c888]
      Thread c32      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 APXGetHostAPI + 2600534 (in AdobeSWFL) [0x24fab6a6]
              26 APXGetHostAPI + 2600247 (in AdobeSWFL) [0x24fab587]
                26 APXGetHostAPI + 2600140 (in AdobeSWFL) [0x24fab51c]
                  26 APXGetHostAPI + 81135 (in AdobeSWFL) [0x24d4453f]
                    26 APXGetHostAPI + 2599903 (in AdobeSWFL) [0x24fab42f]
                      26 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x909a105f]
                        26 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x9092ab42]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Thread c33      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 APXGetHostAPI + 2600534 (in AdobeSWFL) [0x24fab6a6]
              26 APXGetHostAPI + 2600247 (in AdobeSWFL) [0x24fab587]
                26 APXGetHostAPI + 2600140 (in AdobeSWFL) [0x24fab51c]
                  26 APXGetHostAPI + 81135 (in AdobeSWFL) [0x24d4453f]
                    26 APXGetHostAPI + 2599903 (in AdobeSWFL) [0x24fab42f]
                      26 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x909a105f]
                        26 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x9092ab42]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Thread c34      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 APXGetHostAPI + 2600534 (in AdobeSWFL) [0x24fab6a6]
              26 APXGetHostAPI + 2600247 (in AdobeSWFL) [0x24fab587]
                26 APXGetHostAPI + 2600140 (in AdobeSWFL) [0x24fab51c]
                  26 APXGetHostAPI + 81135 (in AdobeSWFL) [0x24d4453f]
                    26 APXGetHostAPI + 2599903 (in AdobeSWFL) [0x24fab42f]
                      26 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x909a105f]
                        26 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x9092ab42]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Thread c35      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 APXGetHostAPI + 2600534 (in AdobeSWFL) [0x24fab6a6]
              26 APXGetHostAPI + 2600247 (in AdobeSWFL) [0x24fab587]
                26 APXGetHostAPI + 2600140 (in AdobeSWFL) [0x24fab51c]
                  26 APXGetHostAPI + 81135 (in AdobeSWFL) [0x24d4453f]
                    26 APXGetHostAPI + 2599903 (in AdobeSWFL) [0x24fab42f]
                      26 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x909a105f]
                        26 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x9092ab42]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Thread c37      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 APXGetHostAPI + 2600534 (in AdobeSWFL) [0x24fab6a6]
              26 APXGetHostAPI + 2600247 (in AdobeSWFL) [0x24fab587]
                26 APXGetHostAPI + 2600140 (in AdobeSWFL) [0x24fab51c]
                  26 APXGetHostAPI + 2708990 (in AdobeSWFL) [0x24fc5e4e]
                    26 APXGetHostAPI + 2599847 (in AdobeSWFL) [0x24fab3f7]
                      26 pthread_cond_timedwait_relative_np + 47 (in libSystem.B.dylib) [0x909875a8]
                        26 semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x9092ab5a]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Thread c38      
      User stack:
        26 thread_start + 34 (in libSystem.B.dylib) [0x909580de]
          26 _pthread_start + 345 (in libSystem.B.dylib) [0x90958259]
            26 APXGetHostAPI + 2600534 (in AdobeSWFL) [0x24fab6a6]
              26 APXGetHostAPI + 2600247 (in AdobeSWFL) [0x24fab587]
                26 APXGetHostAPI + 2600140 (in AdobeSWFL) [0x24fab51c]
                  26 APXGetHostAPI + 4135672 (in AdobeSWFL) [0x25122348]
                    26 APXGetHostAPI + 2599847 (in AdobeSWFL) [0x24fab3f7]
                      26 pthread_cond_timedwait_relative_np + 47 (in libSystem.B.dylib) [0x909875a8]
                        26 semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x9092ab5a]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Binary Images:
          0x1000 -  0x12f6fe7  com.adobe.dreamweaver-11.5 11.5.1.5344 (11.5.1) <211C58E0-ACA3-5509-74DF-F4825D12EC1E> /Applications/Adobe Dreamweaver CS5.5/Adobe Dreamweaver CS5.5.app/Contents/MacOS/Dreamweaver
      0x1f300000 - 0x1f36bfe7  com.adobe.amt.services AMTServices 4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00) (4.0.0.21) <018F21DE-7E2E-C850-4C32-D4A2131ABF74> /Applications/Adobe Dreamweaver CS5.5/Adobe Dreamweaver CS5.5.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
      0x2488a000 - 0x248c5ff3  com.apple.carbonbundletemplate 1.0.0,5344 (1.0.0) <993C605D-8AA6-04E5-E58B-CC89F454E6C4> /Applications/Adobe Dreamweaver CS5.5/Configuration/JSExtensions/classes/JSBridge.bundle/Contents/MacOS/JSBridge
      0x24a4e000 - 0x24a71fe7  ServiceManager-Launcher.dylib ??? (???) <F2933B29-0CC1-00B4-1778-BF44110851F8> /Library/Application Support/Adobe/CS5.5ServiceManager/lib/ServiceManager-Launcher.dylib
      0x24d00000 - 0x25b5dfeb  com.adobe.adobeswfl ??? (2.0.0.11360) <3E243C12-18DB-469A-DFA9-B0AE4A1C620F> /Library/Application Support/Adobe/APE/3.101/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/A dobeSWFL
      0x904e8000 - 0x9080cfef  com.apple.HIToolbox 1.6.5 (???) <F21289A3-A00E-0BC3-66F1-7557862CE7EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
      0x9092a000 - 0x90ad1ff7  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Process:         AdobeCrashDaemon [395]
    Path:            /Applications/Adobe Dreamweaver CS5.5/Adobe Dreamweaver CS5.5.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaemon.app/ Contents/MacOS/AdobeCrashDaemon
    UID:             501
    Process:         AirPort Base Station Agent [164]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    UID:             501
      Thread 3e2        DispatchQueue 1
      User stack:
        26 ??? (in AirPort Base Station Agent + 5692) [0x10000163c]
          26 NSApplicationMain + 364 (in AppKit) [0x7fff84a6a3b0]
            26 -[NSApplication run] + 395 (in AppKit) [0x7fff84a7168f]
              26 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 (in AppKit) [0x7fff84aab801]
                26 _DPSNextEvent + 708 (in AppKit) [0x7fff84aabeb2]
                  26 BlockUntilNextEventMatchingListInMode + 59 (in HIToolbox) [0x7fff81a5640c]
                    26 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff81a56553]
                      26 RunCurrentEventLoopInMode + 333 (in HIToolbox) [0x7fff81a5674e]
                        26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                          26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                            26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 3f5        DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Thread 424      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff81d6b932]
      Kernel stack:
        26 sleep + 20 [0xffffff8000488cfa]
      Thread 425      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 ??? (in AirPort Base Station Agent + 117988) [0x10001cce4]
              26 ??? (in AirPort Base Station Agent + 106856) [0x10001a168]
                26 ??? (in AirPort Base Station Agent + 118817) [0x10001d021]
                  26 __semwait_signal + 10 (in libSystem.B.dylib) [0x7fff81d62a6a]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Binary Images:
             0x100000000 -        0x100027fff  com.apple.AirPortBaseStationAgent 1.5.5 (155.2) <00010203-0405-0607-0809-0A0B0C0D0E0F> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff81a28000 -     0x7fff81d26fff  com.apple.HIToolbox 1.6.5 (???) <98FCEA0D-FA33-E859-B39C-2C1F59F9E22D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff84a68000 -     0x7fff85462ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         Apple80211Agent [178]
    Path:            /System/Library/CoreServices/Apple80211Agent.app/Contents/MacOS/Apple80211Agent
    UID:             501
      Thread 41f        DispatchQueue 1
      User stack:
        26 ??? (in Apple80211Agent + 5604) [0x1000015e4]
          26 ??? (in Apple80211Agent + 5728) [0x100001660]
            26 -[NSApplication run] + 395 (in AppKit) [0x7fff84a7168f]
              26 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 (in AppKit) [0x7fff84aab801]
                26 _DPSNextEvent + 708 (in AppKit) [0x7fff84aabeb2]
                  26 BlockUntilNextEventMatchingListInMode + 59 (in HIToolbox) [0x7fff81a5640c]
                    26 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff81a56553]
                      26 RunCurrentEventLoopInMode + 333 (in HIToolbox) [0x7fff81a5674e]
                        26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                          26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                            26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 427        DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Thread 42d      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff81d6b932]
      Kernel stack:
        26 sleep + 20 [0xffffff8000488cfa]
      Binary Images:
             0x100000000 -        0x100015ff7  com.apple.airport.helper 6.2.2 (622.2) <867BC042-0A31-753D-E5B7-B73C0DC04C08> /System/Library/CoreServices/Apple80211Agent.app/Contents/MacOS/Apple80211Agent
          0x7fff81a28000 -     0x7fff81d26fff  com.apple.HIToolbox 1.6.5 (???) <98FCEA0D-FA33-E859-B39C-2C1F59F9E22D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff84a68000 -     0x7fff85462ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         applepushserviced [179]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
    UID:             0
      Thread 432        DispatchQueue 1
      User stack:
        26 ??? (in applepushserviced + 4164) [0x100001044]
          26 ??? (in applepushserviced + 4319) [0x1000010df]
            26 -[NSRunLoop(NSRunLoop) run] + 77 (in Foundation) [0x7fff8a304a53]
              26 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270 (in Foundation) [0x7fff8a304b74]
                26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                  26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                    26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 436        DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Thread 446c     
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff81d6b932]
      Kernel stack:
        26 sleep + 20 [0xffffff8000488cfa]
      Binary Images:
             0x100000000 -        0x100066fef  applepushserviced ??? (???) <574F96F1-1FA9-9281-C78F-933EE0DA5E53> /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a2b9000 -     0x7fff8a53bfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         AppleSpell [2105]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    UID:             501
      Thread 486c       DispatchQueue 1
      User stack:
        26 ??? (in AppleSpell + 4816) [0x1000012d0]
          26 ??? (in AppleSpell + 5472) [0x100001560]
            26 -[NSSpellServer run] + 72 (in Foundation) [0x7fff8a3380de]
              26 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff84061b16]
                26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                  26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                    26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 4870       DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Binary Images:
             0x100000000 -        0x1000a9fe7  com.apple.AppleSpell 1.6.2 (62.2) <ABE96C74-4082-9AC8-134F-D73E69B9EACD> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a2b9000 -     0x7fff8a53bfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         autofsd [51]
    Path:            /usr/libexec/autofsd
    UID:             0
      Thread 1ba        DispatchQueue 1
      User stack:
        26 ??? (in autofsd + 5340) [0x1000014dc]
          26 ??? (in autofsd + 6461) [0x10000193d]
            26 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff84061b16]
              26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                  26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 1c6        DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Binary Images:
             0x100000000 -        0x100001ff7  autofsd ??? (???) <9528F5B4-E29F-EA52-6A00-F5583D8EAB40> /usr/libexec/autofsd
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         blued [17]
    Path:            /usr/sbin/blued
    UID:             0
      Thread 127        DispatchQueue 1
      User stack:
        26 ??? (in blued + 8264) [0x100002048]
          26 ??? (in blued + 154586) [0x100025bda]
            26 -[NSRunLoop(NSRunLoop) run] + 77 (in Foundation) [0x7fff8a304a53]
              26 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270 (in Foundation) [0x7fff8a304b74]
                26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                  26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                    26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 16c        DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Thread 199      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff81d6b932]
      Kernel stack:
        26 sleep + 20 [0xffffff8000488cfa]
      Binary Images:
             0x100000000 -        0x100048fff  blued ??? (???) <AF7DA385-DB49-5034-7277-16E1CE3C45D6> /usr/sbin/blued
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a2b9000 -     0x7fff8a53bfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         configd [15]
    Path:            /usr/libexec/configd
    UID:             0
      Thread 109        DispatchQueue 1
      User stack:
        26 start + 52 (in configd) [0x100000d04]
          26 main + 2051 (in configd) [0x10000151a]
            26 server_loop + 72 (in configd) [0x100001d70]
              26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                  26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 10a        DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Thread 10c      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 plugin_exec + 1440 (in configd) [0x1000034d7]
              26 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff84061b16]
                26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                  26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                    26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 11f      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 _io_pm_force_active_settings + 2271 (in PowerManagement) [0x1000ac3a1]
              26 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff84061b16]
                26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                  26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                    26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 15a      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff81d6b932]
      Kernel stack:
        26 sleep + 20 [0xffffff8000488cfa]
      Thread 15c      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 pppcntl_run_thread + 1595 (in PPPController) [0x1007958f5]
              26 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff84061b16]
                26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                  26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                    26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread cedd     
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 __workq_kernreturn + 10 (in libSystem.B.dylib) [0x7fff81d41a2a]
      Kernel stack:
        26 fill_procworkqueue + 154 [0xffffff80004c6ffd]
      Binary Images:
             0x100000000 -        0x100026ff7  configd ??? (???) <754E7289-CEF0-F696-2A99-8F66310FF370> /usr/libexec/configd
             0x1000a9000 -        0x1000baff7  com.apple.SystemConfiguration.PowerManagement 160.0.0 (160.0.0) <20F4D79D-1834-14C9-650C-C4B588B9E1B9> /System/Library/SystemConfiguration/PowerManagement.bundle/Contents/MacOS/PowerManagement
             0x100783000 -        0x1007acfff  com.apple.SystemConfiguration.PPPController 1.5 (1.5) <7A34D8E1-6EE2-AFBE-CC7A-4D91276AF7EA> /System/Library/SystemConfiguration/PPPController.bundle/Contents/MacOS/PPPController
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         coreaudiod [124]
    Path:            /usr/sbin/coreaudiod
    UID:             202
      Thread 2f7        DispatchQueue 1
      User stack:
        26 ??? (in coreaudiod + 5796) [0x1000016a4]
          26 ??? (in coreaudiod + 29152) [0x1000071e0]
            26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
              26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread 2fc        DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Thread 300      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 CAPThread::Entry(CAPThread*) + 125 (in CoreAudio) [0x7fff8159b755]
              26 HALRunLoop::OwnThread(void*) + 152 (in CoreAudio) [0x7fff815ae786]
                26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                  26 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                    26 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
      Kernel stack:
        26 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
      Thread ceec     
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 __workq_kernreturn + 10 (in libSystem.B.dylib) [0x7fff81d41a2a]
      Kernel stack:
        26 fill_procworkqueue + 154 [0xffffff80004c6ffd]
      Binary Images:
             0x100000000 -        0x100020ff7  coreaudiod ??? (???) <4EB80719-479B-D842-286B-8EE9B9762353> /usr/sbin/coreaudiod
          0x7fff8157d000 -     0x7fff815fcfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         coreservicesd [77]
    Path:            /System/Library/CoreServices/coreservicesd
    UID:             0
      Thread 230        DispatchQueue 1
      User stack:
        26 ??? (in coreservicesd + 3756) [0x100000eac]
          26 _CoreServicesServerMain + 522 (in CarbonCore) [0x7fff8230aa56]
            26 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff84061b16]
              26 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff84061d8f]
                25 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff84062902]
                  25 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff81d27d7a]
                1 __CFRunLoopRun + 5201 (in CoreFoundation) [0x7fff840636b1]
                  1 __CFMachPortPerform + 366 (in CoreFoundation) [0x7fff8408b65e]
                    1 _serverCallback(__CFMachPort*, void*, long, void*) + 342 (in CarbonCore) [0x7fff8230ace0]
                      1 SCServerSession::handleMessage(mach_msg_header_t*) + 370 (in CarbonCore) [0x7fff8230babc]
                        1 scHandleMessage(mach_msg_header_t*, unsigned int (*)(mach_msg_header_t*, mach_msg_header_t*), unsigned int*, unsigned char*) + 119 (in CarbonCore) [0x7fff8230e215]
                          1 LSAPlugin_server + 106 (in LaunchServices) [0x7fff85b3b178]
                            1 _XGetApplicationInformation + 211 (in LaunchServices) [0x7fff85b3c50a]
                              1 _LSServerGetApplicationInformation + 218 (in LaunchServices) [0x7fff85b45016]
                                1 FlattenedCFItem::FlattenItem(void const*, void const**, unsigned int*) + 101 (in LaunchServices) [0x7fff85b503d1]
                                  1 FlattenedCFItem::Encode(void const*) + 689 (in LaunchServices) [0x7fff85b0c8ff]
                                    1 FlattenedCFItem::Encode(void const*) + 494 (in LaunchServices) [0x7fff85b0c83c]
                                      1 FlattenedCFItem::Encode(void const*) + 654 (in LaunchServices) [0x7fff85b0c8dc]
                                        1 CFDictionaryGetKeysAndValues + 166 (in CoreFoundation) [0x7fff84043506]
                                          1 CFBasicHashGetElements + 6 (in CoreFoundation) [0x7fff84043616]
      Kernel stack:
        25 ipc_mqueue_receive_continue + 0 [0xffffff800026f302]
        1 hndl_allintrs + 242 [0xffffff80002e40d2]
          1 interrupt + 169 [0xffffff80002d0322]
            1 lapic_interrupt + 161 [0xffffff80002d775c]
              1 mp_kdp_exit + 921 [0xffffff80002d844d]
                1 sync_iss_to_iks + 192 [0xffffff80002d0079]
      Thread 233        DispatchQueue 2
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 _pthread_wqthread + 353 (in libSystem.B.dylib) [0x7fff81d41c08]
            26 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib) [0x7fff81d422de]
              26 _dispatch_queue_invoke + 185 (in libSystem.B.dylib) [0x7fff81d427b4]
                26 kevent + 10 (in libSystem.B.dylib) [0x7fff81d40c0a]
      Kernel stack:
        26 kevent + 62 [0xffffff80004786e4]
      Thread 236      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 fmodWatchConsumer + 347 (in CarbonCore) [0x7fff822be5e8]
              26 __semwait_signal + 10 (in libSystem.B.dylib) [0x7fff81d62a6a]
      Kernel stack:
        26 semaphore_wait_continue + 0 [0xffffff80002815d9]
      Thread 237      
      User stack:
        26 thread_start + 13 (in libSystem.B.dylib) [0x7fff81d60e89]
          26 _pthread_start + 331 (in libSystem.B.dylib) [0x7fff81d60fd6]
            26 read + 10 (in libSystem.B.dylib) [0x7fff81d32466]
      Kernel stack:
        26 hndl_unix_scall64 + 20 [0xffffff80002e4874]
          26 unix_syscall64 + 544 [0xffffff80004e8168]
            26 read_nocancel + 129 [0xffffff8000496054]
              26 write + 248 [0xffffff800049593c]
                26 get_fse_info + 2328 [0xffffff800031536f]
                  26 tsleep + 100 [0xffffff800024e74b]
                    26 wakeup + 691 [0xffffff800024e5ae]
                      26 thread_block_reason + 289 [0xffffff8000209acb]
                        26 thread_dispatch + 1894 [0xffffff800020990e]
                          26 machine_switch_context + 383 [0xffffff800022c888]
      Thread cece     
      User stack:
        26 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff81d41aa5]
          26 __workq_kernreturn + 10 (in libSystem.B.dylib) [0x7fff81d41a2a]
      Kernel stack:
        26 fill_procworkqueue + 154 [0xffffff80004c6ffd]
      Binary Images:
             0x100000000 -        0x100000fff  coreservicesd ??? (???) <E40783E4-D286-FA29-1F8A-F7B9DA145C46> /System/Library/CoreServices/coreservicesd
          0x7fff81d27000 -     0x7fff81ee8fef  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
          0x7fff8225a000 -     0x7fff8258efef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
          0x7fff84016000 -     0x7fff8418dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff85aff000 -     0x7fff85b9ffff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    Process:         CS5.5ServiceManager [403]
    Path:            /Library/Application Support/Adobe/CS5.5ServiceManager/CS5.5ServiceManager.app/Contents/MacOS/CS5.5ServiceMana ger
    UID:             501
    Process:         cvmsServ [105]
    Path:            /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/cvmsServ
    UID:             0

  • Dreamweaver CS3 Keeps Crashing in XP

    I attached two error messages - my CS3 Dreamweaver keeps
    dieing in XP. This is something brand new - it was working fine.
    When it happens:
    When I have multiple files open and I search through all
    files.
    Large files (they won't even open, though I can copy and
    paste the 60K lines into DW directly).
    Highlighting multiple lines - holding down shift and hitting
    the down key (works OK with mouse).
    Any ideas?
    Some stuff from the error messages:
    error 1
    <EXE NAME="kernel32.dll"
    FILTER="GRABMI_FILTER_THISFILEONLY">
    <MATCHING_FILE NAME="kernel32.dll" SIZE="984576"
    CHECKSUM="0xF0B331F6" BIN_FILE_VERSION="5.1.2600.3119"
    BIN_PRODUCT_VERSION="5.1.2600.3119" PRODUCT_VERSION="5.1.2600.3119"
    FILE_DESCRIPTION="Windows NT BASE API Client DLL"
    COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft®
    Windows® Operating System" FILE_VERSION="5.1.2600.3119
    (xpsp_sp2_gdr.070416-1301)" ORIGINAL_FILENAME="kernel32"
    INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Microsoft
    Corporation. All rights reserved." VERFILEDATEHI="0x0"
    VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2"
    MODULE_TYPE="WIN32" PE_CHECKSUM="0xF9293" LINKER_VERSION="0x50001"
    UPTO_BIN_FILE_VERSION="5.1.2600.3119"
    UPTO_BIN_PRODUCT_VERSION="5.1.2600.3119" LINK_DATE="04/16/2007
    15:52:53" UPTO_LINK_DATE="04/16/2007 15:52:53"
    VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    error 2
    <EXE NAME="ntdll.dll"
    FILTER="GRABMI_FILTER_THISFILEONLY">
    <MATCHING_FILE NAME="ntdll.dll" SIZE="708096"
    CHECKSUM="0x9D20568" BIN_FILE_VERSION="5.1.2600.2180"
    BIN_PRODUCT_VERSION="5.1.2600.2180" PRODUCT_VERSION="5.1.2600.2180"
    FILE_DESCRIPTION="NT Layer DLL" COMPANY_NAME="Microsoft
    Corporation" PRODUCT_NAME="Microsoft® Windows® Operating
    System" FILE_VERSION="5.1.2600.2180 (xpsp_sp2_rtm.040803-2158)"
    ORIGINAL_FILENAME="ntdll.dll" INTERNAL_NAME="ntdll.dll"
    LEGAL_COPYRIGHT="© Microsoft Corporation. All rights
    reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0"
    VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32"
    PE_CHECKSUM="0xAF2F7" LINKER_VERSION="0x50001"
    UPTO_BIN_FILE_VERSION="5.1.2600.2180"
    UPTO_BIN_PRODUCT_VERSION="5.1.2600.2180" LINK_DATE="08/04/2004
    07:56:36" UPTO_LINK_DATE="08/04/2004 07:56:36"
    VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    <EXE NAME="kernel32.dll"
    FILTER="GRABMI_FILTER_THISFILEONLY">
    <MATCHING_FILE NAME="kernel32.dll" SIZE="984576"
    CHECKSUM="0xF0B331F6" BIN_FILE_VERSION="5.1.2600.3119"
    BIN_PRODUCT_VERSION="5.1.2600.3119" PRODUCT_VERSION="5.1.2600.3119"
    FILE_DESCRIPTION="Windows NT BASE API Client DLL"
    COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft®
    Windows® Operating System" FILE_VERSION="5.1.2600.3119
    (xpsp_sp2_gdr.070416-1301)" ORIGINAL_FILENAME="kernel32"
    INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Microsoft
    Corporation. All rights reserved." VERFILEDATEHI="0x0"
    VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2"
    MODULE_TYPE="WIN32" PE_CHECKSUM="0xF9293" LINKER_VERSION="0x50001"
    UPTO_BIN_FILE_VERSION="5.1.2600.3119"
    UPTO_BIN_PRODUCT_VERSION="5.1.2600.3119" LINK_DATE="04/16/2007
    15:52:53" UPTO_LINK_DATE="04/16/2007 15:52:53"
    VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    </DATABASE>

    I found that DW CS3 ran very poorly with just 1 GB of RAM,
    while this may
    not be your problem, it may be contributing to the error. I
    had been running
    with 2 GB of RAM with good results, but when I upgraded to 3
    GB's I saw a
    marked improvement in stability.
    Jeff
    "BMalek" <[email protected]> wrote in
    message
    news:[email protected]...
    >I attached two error messages - my CS3 Dreamweaver keeps
    dieing in XP.
    >This is
    > something brand new - it was working fine.
    >
    > When it happens:
    > When I have multiple files open and I search through all
    files.
    > Large files (they won't even open, though I can copy and
    paste the 60K
    > lines
    > into DW directly).
    > Highlighting multiple lines - holding down shift and
    hitting the down key
    > (works OK with mouse).
    >
    > Any ideas?
    >
    > Some stuff from the error messages:
    > error 1
    > <EXE NAME="kernel32.dll"
    FILTER="GRABMI_FILTER_THISFILEONLY">
    > <MATCHING_FILE NAME="kernel32.dll" SIZE="984576"
    CHECKSUM="0xF0B331F6"
    > BIN_FILE_VERSION="5.1.2600.3119"
    BIN_PRODUCT_VERSION="5.1.2600.3119"
    > PRODUCT_VERSION="5.1.2600.3119"
    FILE_DESCRIPTION="Windows NT BASE API
    > Client
    > DLL" COMPANY_NAME="Microsoft Corporation"
    PRODUCT_NAME="Microsoft?
    > Windows?
    > Operating System" FILE_VERSION="5.1.2600.3119
    (xpsp_sp2_gdr.070416-1301)"
    > ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32"
    LEGAL_COPYRIGHT="?
    > Microsoft Corporation. All rights reserved."
    VERFILEDATEHI="0x0"
    > VERFILEDATELO="0x0" VERFILEOS="0x40004"
    VERFILETYPE="0x2"
    > MODULE_TYPE="WIN32"
    > PE_CHECKSUM="0xF9293" LINKER_VERSION="0x50001"
    > UPTO_BIN_FILE_VERSION="5.1.2600.3119"
    > UPTO_BIN_PRODUCT_VERSION="5.1.2600.3119"
    > LINK_DATE="04/16/2007 15:52:53"
    UPTO_LINK_DATE="04/16/2007 15:52:53"
    > VER_LANGUAGE="English (United States) [0x409]" />
    > </EXE>
    > error 2
    > <EXE NAME="ntdll.dll"
    FILTER="GRABMI_FILTER_THISFILEONLY">
    > <MATCHING_FILE NAME="ntdll.dll" SIZE="708096"
    CHECKSUM="0x9D20568"
    > BIN_FILE_VERSION="5.1.2600.2180"
    BIN_PRODUCT_VERSION="5.1.2600.2180"
    > PRODUCT_VERSION="5.1.2600.2180" FILE_DESCRIPTION="NT
    Layer DLL"
    > COMPANY_NAME="Microsoft Corporation"
    PRODUCT_NAME="Microsoft? Windows?
    > Operating System" FILE_VERSION="5.1.2600.2180
    (xpsp_sp2_rtm.040803-2158)"
    > ORIGINAL_FILENAME="ntdll.dll" INTERNAL_NAME="ntdll.dll"
    LEGAL_COPYRIGHT="?
    > Microsoft Corporation. All rights reserved."
    VERFILEDATEHI="0x0"
    > VERFILEDATELO="0x0" VERFILEOS="0x40004"
    VERFILETYPE="0x2"
    > MODULE_TYPE="WIN32"
    > PE_CHECKSUM="0xAF2F7" LINKER_VERSION="0x50001"
    > UPTO_BIN_FILE_VERSION="5.1.2600.2180"
    > UPTO_BIN_PRODUCT_VERSION="5.1.2600.2180"
    > LINK_DATE="08/04/2004 07:56:36"
    UPTO_LINK_DATE="08/04/2004 07:56:36"
    > VER_LANGUAGE="English (United States) [0x409]" />
    > </EXE>
    > <EXE NAME="kernel32.dll"
    FILTER="GRABMI_FILTER_THISFILEONLY">
    > <MATCHING_FILE NAME="kernel32.dll" SIZE="984576"
    CHECKSUM="0xF0B331F6"
    > BIN_FILE_VERSION="5.1.2600.3119"
    BIN_PRODUCT_VERSION="5.1.2600.3119"
    > PRODUCT_VERSION="5.1.2600.3119"
    FILE_DESCRIPTION="Windows NT BASE API
    > Client
    > DLL" COMPANY_NAME="Microsoft Corporation"
    PRODUCT_NAME="Microsoft?
    > Windows?
    > Operating System" FILE_VERSION="5.1.2600.3119
    (xpsp_sp2_gdr.070416-1301)"
    > ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32"
    LEGAL_COPYRIGHT="?
    > Microsoft Corporation. All rights reserved."
    VERFILEDATEHI="0x0"
    > VERFILEDATELO="0x0" VERFILEOS="0x40004"
    VERFILETYPE="0x2"
    > MODULE_TYPE="WIN32"
    > PE_CHECKSUM="0xF9293" LINKER_VERSION="0x50001"
    > UPTO_BIN_FILE_VERSION="5.1.2600.3119"
    > UPTO_BIN_PRODUCT_VERSION="5.1.2600.3119"
    > LINK_DATE="04/16/2007 15:52:53"
    UPTO_LINK_DATE="04/16/2007 15:52:53"
    > VER_LANGUAGE="English (United States) [0x409]" />
    > </EXE>
    > </DATABASE>
    >

  • Dreamweaver CS5 slow to open CFM files

    Carey, All,
    Our whole team has problems when opening our (.cfm) files. Like the original poster (peterallcdn) we think it's because of related files...? In our case, we think it's our includes (fyi - we're using ColdFusion). When we remove all the includes the page opens quickly but with the includes the page takes over 30 seconds. We're working with only local files over a network as compared to peterallcdn who was using remote files.
    Our includes have various elements in them including sql queries, javascript, other includes etc.
    We've tried the Preferences tweaks and the registry edits listed in th is thread but our problem persists.
    Again these same files, when opened up in Notepad, open instantly.
    Any help would be greatly appreciated.
    Thanks,
    Jake

    Hello, Jake. Welcome to the Adobe user-to-user forums!
    30 seconds is definitely too long for opening files. Since the files are local, it is not likely the same issue discussed in the original thread, so I have split off your message into a new thread.
    We are investigating internally to see if we can determine a cause.
    To help get this sorted, would you be willing to share one or more of your files, and perhaps some Dreamweaver/server configuration details?

  • CS3 photoshop crash when opening file

    Photoshop crashes when opening a file.
    This is the message I get.
    Help!!

    It would mke it easier to guess if you told us a bit more, like:
    Operating System/version
    Processor
    Photoshop version number
    Amount of RAM installed
    Hard drive(s) capacity
    Video card make and model
    And read this:http://forums.adobe.com/thread/375816?tstart=0

Maybe you are looking for

  • Missing Mouse Up Bug

    I have Labview 6.02. Sometimes when my VI is running, Labview misses 'mouse Button Up' events. So if I try to scroll, I can't let go of the bar. Or a button will get stuck down. It usually catches the 'mouse Button up' about 5-10 seconds later. This

  • No cursor at wakeup

    After my iMac G5 has been asleep for several hours or overnight, I do not get a cursor when I touch a key or click the mouse. In order to use my computer again, I have to turn it off with the power button and then turn it on again.

  • Is it possible to set webapp item releaseDate when submitting via ajax?

    I've been trying to set the releaseDate of a webapp item when entering the item via ajax.  So far I have been unable to do so....is it possible? For the field name and date format I referenced the API docs. I've tried both releaseDate and ReleaseDate

  • Plenty messages in log: SEC_LOGIN-4-LOGIN_FAILED

    Hi I use 2901 router  as console server  (ver 15.0(1r)M15) It has serial module installed with many connected devices (cisco routers, switches, juniper routers etc) I recently noticed a large number of messages such as: 072176: Apr 23 17:08:22.349 VL

  • Front panel doesn't print

    I am trying to print my VI. I can see the front panel in Print Preview. When it prints the front panel page is blank. Anybody else run into this problem and how did you fix it. Thanks Chris Gallo