Unable to use ProcessBuilder on Vista, Works on Linux, XP, etc

Hello, I support an application on many different platforms, and I am running into a problem with Vista. The code works on every combination I have tested (Mac, Linux, various flavors of Windows) except MS Vista and IE7. It even works on both WinXP and IE7 and MS VIsta and Firefox. Unfortunately this is old code and I didn't write it so I'm not sure what to do. It was using RunTime.exec() and I updated it to ProcessBuilder.start() but it has the same symptoms. The symptoms are that instead of the input and output being redirected, a console window is launched and used instead.
String command = slaunch + " " + appName + " " + app + " " + _debug;
Process p = new ProcessBuilder(command.split(" ")).start();
BufferedInputStream stdout = new BufferedInputStream(p.getInputStream());
BufferedInputStream stderr = new BufferedInputStream(p.getErrorStream());
boolean keeprunning = true;
String out = "";
String err = "";
int exitvalue = 0;
while(keeprunning) {
try {
exitvalue = p.exitValue();
keeprunning = false;
Thread.sleep(300);
} catch(IllegalThreadStateException itse) {}
try { Thread.sleep(100); } catch(Exception e) {}
int available = stdout.available();
if(available > 0) {
byte[] buf = new byte[available];
stdout.read(buf);
out = out + new String(buf);
Any help would be greatly appreciated. I am very tempted to tell my Vista users to just use Firefox, but that would go over like a lead balloon.
James

Also, your current code is weird. See below.
public class Bear{
  public void method(){
    String command = slaunch + " " + _appName + " " + _app + " " + _debug;
    Process p = new ProcessBuilder(command.split(" ")).start();
    BufferedInputStream stdout = new BufferedInputStream(p.getInputStream());
    BufferedInputStream stderr = new BufferedInputStream(p.getErrorStream());
    boolean keeprunning = true;
    String out = "";
    String err = "";
    int exitvalue = 0;
    while (keeprunning) { // ????? what's the sense of it?
      try {
        exitvalue = p.exitValue(); // use waitFor() instead
        keeprunning = false; // ?????
        Thread.sleep(300); // ?????
      catch (IllegalThreadStateException itse) {
      try {
        Thread.sleep(100); // ?????
      catch(Exception e) {
      int available = stdout.available(); // never use available()
      if(available > 0) { // ????? no use
        byte[] buf = new byte[available];
        stdout.read(buf);
        out = out + new String(buf);
//--- a standard code ----
      String line;
      try {
        BufferedReader br
         = new BufferedReader(new InputStreamReader(p.getInputStream()));
        exitvalue = p.waitFor();
        while ((line = br.readLine()) != null){
          out += line;
      catch(Exception e) {
        e.printStackTrace();
//-------------------------

Similar Messages

  • I am unable to use different sites which worked perfectly until now.

    # Question
    I have had no problems with Firefox until yesterday when I first went into hotmail and although the page opened, I cannot do anything ie: open an email, delete etc. I then went into Superbru where I had the same problem so finally I tried Facebook and it was the same. I can access all these sites through explorer but would prefer that my Firefox can be repaired. I have done a restore, checked the security settings etc. What more can be done? edit

    Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    * Go to your concerned website
    * Right-click empty space within the page and click '''View Page Info'''
    * In the '''Page Info''' window, select the '''Permissions''' panel
    * Under '''Set Cookies''', place Checkmark on '''Use Default''' and Change the setting to '''Allow'''
    * Under '''Load Images''' and '''Open Pop-up windows''', change the setting to '''Allow'''
    * Close the Page Info window
    Check and tell if its working.

  • Unable to use the keyboard in XP keys work OK when boot into dos

    Unable to use the keyboard in XP. It was working for over a year OK  with XP running
    keys work OK when I install win98 or use a dos boot disk.
    If I try to reinstall XP I can not use any of keys to input anything.
    Return
    Esc
    CapsLock
    ctrl-alt-del.
    NO KEYS WORK AT ALL OTHER THAN 
    ë à
    I did an upgrade from win98 but that did not work.
    Any ideas

    billwyatt, welcome to the forum,
    I think you forgot to mention which ThinkPad you have. It would be even better if you could post the Type and Model Number as this will help members to hopefully help you. If it ends in CTO please provide some details about the ThinkPad. Please do NOT post your s/n.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Unable to use or the back arrow & has stop working

    unable to use the back arrow , will not work on any site, just stop working
    thanks

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/

  • Unable to use all the feature of my email service (Juno on the web) like; font size/color, bolding, italics, highlighting etc why? Those features work through Internet Explorer but not Firefox.

    When I go to my Juno on the web through Firefox, I am unable to use the tool features such as:
    Font size / Color
    Bolding
    Italics
    Bullets
    Highlighting
    just to name a few. Yet when I bring it up through Internet Explorer these features work, plus the way Firefox reads my Juno the tabs are distorted (the page is not formatted correctly, I contacted Juno they said I should contact my modem company AT& T they said no so you are my last resort.. Please help resolve my issue, THANK YOU in advance for assisting with this matter.

    It is up to Juno to enable Midas, the Rich Text Editor which is built into Firefox, with one little line of code on every web page that has RTE for IE. There's nothing that you can do to turn that feature on your self, it has to be coded on each web page that has Rich Text Editing.
    http://www.mozilla.org/editor/midas-spec.html <br />
    http://kb.mozillazine.org/Midas
    Their ignorance probably lies with their staff programmers only knowing how to do it for IE ''(their training and certificates are probably from the Microsoft cabal)'', and not realizing that Gecko and WebKit apps each have their own Rich Text Editor's, which require their own small line of code to enable those Editor's.

  • I am unable to get Lightroom Mobile to work on my home network. The Ipad says "There are no collections to sync, enable lightroom mobile on your computer", but it is enabled.  I got it to work one time on another network but not at home where I use Lightr

    I am unable to get Lightroom Mobile to work on my home network. The Ipad says "There are no collections to sync, enable lightroom mobile on your computer", but it is enabled.  I got it to work one time on another network but not at home where I use Lightroom.

    Hi,
    could you please give us some info on what kind of network you have?
    Can other application communicate with the web?
    Thanks,
    Ignacio

  • Purchased elements 12 in November 2013.  Worked for a little while but since January have been unable to use it.  Comes up with "Photoshop Elements 12 Editor has stopped working"

    purchased photoshop elements 12 online in November 2013.  worked for a little while but since January have been unable to use it. Comes up with "Photoshop Elements 12 Editor has stopped working"

    Hi there CrossbowsandWings,
    You may find the troubleshooting steps in the article below helpful.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    -Griff W. 

  • I have a trial version of Photoshop CC. I am unable to use CTRL J, is there a setting I need to do to get it to work.

    I have a trial version of Photoshop CC. I am unable to use CTRL J, is there a setting I need to do to get it to work.

    Should work
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.
    Photoshop menu Help>System Info ... help identify you system hardware and software

  • I inadvertently installed the mountain Lion Safari over my existing copy not realising that it would not work with OS 10.7.5 and now I am unable to use it .

    I inadvertently installed the Mountain Lion Safari over my existing copy not realising that it would not work with OS 10.7.5 and now I am unable to use it .
    Can someone suggest a solution please.

    It should work, but it's an unmitigated mess. Simplest is to boot into recovery mode and reinstall the OS.

  • Since a recent update to osx I have been unable to use Safari, when I open it a message comes saying that it has unexpectingly shut down. fire fox is working fine. I have tried in guest user and the same thing happens. Any ideas?

    Since a recent update to OSX (I have mountain Lion) I have been unable to use Safari. When trying to open it comes up with a message of unexpectidly shut down. Firefox is working ok. I have tried in guest user and the same message comes up, any ideas? Cheers

    Process:    
    Safari [1476]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    6.1 (8537.71)
    Build Info: 
    WebBrowser-7537071000000000~2
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [132]
    User ID:    
    501
    Date/Time:  
    2013-11-19 20:31:17.465 +0000
    OS Version: 
    Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:     
    12626 sec
    Crashes Since Last Report:      
    12
    Per-App Interval Since Last Report:  27 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                 
    1ECF4F21-7BDC-978F-5F71-A3FAC532B17E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    Process Model:
    Single Web Process
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore 
    0x000000010f2e22d3 JSC::Stringifier::Holder::appendNextProperty(JSC::Stringifier&, ***::StringBuilder&) + 2483
    1   com.apple.WebCore        
    0x000000010fd30764 WebCore::FontTranscoder::FontTranscoder() + 68
    2   com.apple.WebCore        
    0x000000010fd306fd WebCore::fontTranscoder() + 45
    3   com.apple.WebCore        
    0x000000010fd2ccf6 WebCore::Font::Font(WebCore::FontPlatformData const&, bool, WebCore::FontSmoothingMode) + 278
    4   com.apple.WebKit         
    0x000000010f65f585 -[NSString(WebKitExtras) _web_widthWithFont:] + 517
    5   com.apple.Safari.framework
    0x000000010ead8935 -[UnifiedField _securityPillSize] + 116
    6   com.apple.Safari.framework
    0x000000010eadd259 -[UnifiedField(Internal) _finishInitialization] + 2428
    7   com.apple.Safari.framework
    0x000000010ead6df9 -[UnifiedField initWithCoder:] + 64
    8   com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    9   com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    10  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    11  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    12  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    13  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    14  com.apple.Safari.framework
    0x000000010e90cc64 -[OneStepBookmarkingButton initWithCoder:] + 42
    15  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    16  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    17  com.apple.Foundation     
    0x00007fff8ad9f756 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1189
    18  com.apple.Foundation     
    0x00007fff8ad9fcc8 -[NSArray(NSArray) initWithCoder:] + 538
    19  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    20  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    21  com.apple.AppKit         
    0x00007fff8b39b601 -[NSView initWithCoder:] + 976
    22  com.apple.AppKit         
    0x00007fff8b3aaac6 -[NSCustomView initWithCoder:] + 601
    23  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    24  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    25  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    26  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    27  com.apple.AppKit         
    0x00007fff8b5ded30 -[NSSegmentedControl initWithCoder:] + 48
    28  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    29  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    30  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    31  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    32  com.apple.AppKit         
    0x00007fff8b5ded30 -[NSSegmentedControl initWithCoder:] + 48
    33  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    34  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    35  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    36  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    37  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    38  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    39  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    40  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    41  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    42  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    43  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    44  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    45  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    46  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    47  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    48  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    49  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    50  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    51  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    52  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    53  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    54  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    55  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    56  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    57  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    58  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    59  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    60  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    61  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    62  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    63  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    64  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    65  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    66  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    67  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    68  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    69  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    70  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    71  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    72  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    73  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    74  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    75  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    76  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    77  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    78  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    79  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    80  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    81  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    82  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    83  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    84  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    85  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    86  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    87  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    88  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    89  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    90  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    91  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    92  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    93  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    94  com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    95  com.apple.AppKit         
    0x00007fff8b39b680 -[NSView initWithCoder:] + 1103
    96  com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    97  com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    98  com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    99  com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    100 com.apple.Foundation     
    0x00007fff8ad9f756 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1189
    101 com.apple.Foundation     
    0x00007fff8ad9fcc8 -[NSArray(NSArray) initWithCoder:] + 538
    102 com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    103 com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    104 com.apple.AppKit         
    0x00007fff8b39b601 -[NSView initWithCoder:] + 976
    105 com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    106 com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    107 com.apple.AppKit         
    0x00007fff8b39cb35 -[NSResponder initWithCoder:] + 99
    108 com.apple.AppKit         
    0x00007fff8b39b294 -[NSView initWithCoder:] + 99
    109 com.apple.AppKit         
    0x00007fff8b39cecd -[NSControl initWithCoder:] + 50
    110 com.apple.AppKit         
    0x00007fff8b39cd73 -[NSButton initWithCoder:] + 42
    111 com.apple.AppKit         
    0x00007fff8b516b1c -[NSClassSwapper initWithCoder:] + 546
    112 com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    113 com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    114 com.apple.AppKit         
    0x00007fff8b392914 -[NSNibConnector initWithCoder:] + 401
    115 com.apple.AppKit         
    0x00007fff8b392778 -[NSNibOutletConnector initWithCoder:] + 344
    116 com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    117 com.apple.Foundation     
    0x00007fff8ad9f756 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1189
    118 com.apple.Foundation     
    0x00007fff8ad9fcc8 -[NSArray(NSArray) initWithCoder:] + 538
    119 com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    120 com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    121 com.apple.AppKit         
    0x00007fff8b3919ea -[NSIBObjectData initWithCoder:] + 2025
    122 com.apple.Foundation     
    0x00007fff8ad9e979 _decodeObjectBinary + 2741
    123 com.apple.Foundation     
    0x00007fff8ad9dd24 _decodeObject + 226
    124 com.apple.AppKit         
    0x00007fff8b3910c3 loadNib + 227
    125 com.apple.AppKit         
    0x00007fff8b390649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    126 com.apple.AppKit         
    0x00007fff8b39047e -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 200
    127 com.apple.AppKit         
    0x00007fff8b39025e +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 360
    128 com.apple.Safari.framework
    0x000000010eaa8b8b -[ToolbarController initWithBrowserWindowController:] + 107
    129 com.apple.Safari.framework
    0x000000010e8e198a -[BrowserWindowControllerMac windowDidLoad] + 739
    130 com.apple.AppKit         
    0x00007fff8b544f82 -[NSWindowController _windowDidLoad] + 448
    131 com.apple.Safari.framework
    0x000000010eb089ff -[WindowController _windowDidLoad] + 43
    132 com.apple.AppKit         
    0x00007fff8b5162da -[NSWindowController window] + 114
    133 com.apple.Safari.framework
    0x000000010e8e20b8 -[BrowserWindowControllerMac showWindow:] + 50
    134 com.apple.AppKit         
    0x00007fff8b2a11b6 -[NSDocument showWindows] + 103
    135 com.apple.Safari.framework
    0x000000010e8b0989 -[BrowserDocument showWindows] + 39
    136 com.apple.AppKit         
    0x00007fff8b29f36f -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 461
    137 com.apple.AppKit         
    0x00007fff8b29f15e -[NSDocumentController newDocument:] + 39
    138 com.apple.Safari.framework
    0x000000010e826fca -[AppController applicationOpenUntitledFile:] + 22
    139 com.apple.AppKit         
    0x00007fff8b3f7c34 -[NSApplication _doOpenUntitled] + 482
    140 com.apple.AppKit         
    0x00007fff8b3f76cf __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke_0 + 233
    141 com.apple.AppKit         
    0x00007fff8b7396c1 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_01437 + 143
    142 com.apple.AppKit         
    0x00007fff8b3f717b -[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:] + 760
    143 com.apple.AppKit         
    0x00007fff8b3f566e -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 298
    144 com.apple.AppKit         
    0x00007fff8b3f5445 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 553
    145 com.apple.AppKit         
    0x00007fff8b3f504c -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 351
    146 com.apple.Foundation     
    0x00007fff8adb207b -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 308
    147 com.apple.Foundation     
    0x00007fff8adb1edd _NSAppleEventManagerGenericHandler + 106
    148 com.apple.AE             
    0x00007fff83212078 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    149 com.apple.AE             
    0x00007fff83211ed9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    150 com.apple.AE             
    0x00007fff83211d99 aeProcessAppleEvent + 318
    151 com.apple.HIToolbox      
    0x00007fff8ccef709 AEProcessAppleEvent + 100
    152 com.apple.AppKit         
    0x00007fff8b3f1836 _DPSNextEvent + 1456
    153 com.apple.AppKit         
    0x00007fff8b3f0df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    154 com.apple.Safari.framework
    0x000000010e8794cf -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    155 com.apple.AppKit         
    0x00007fff8b3e81a3 -[NSApplication run] + 517
    156 com.apple.AppKit         
    0x00007fff8b38cbd6 NSApplicationMain + 869
    157 com.apple.Safari.framework
    0x000000010ea3c4fc SafariMain + 266
    158 libdyld.dylib            
    0x00007fff8925c7e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff83a466d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff897f9f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff897f9ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff897e4191 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff83a46d16 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8398ddea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib        
    0x00007fff8398d9ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff83a466d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff897f9f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff897f9ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff897e4191 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff83a466d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff897f9f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff897f9ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff897e4191 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff83a466d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff897f9f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff897f9ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff897e4191 start_wqthread + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff83a44686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff83a43c42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff8b0df233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff8b0e4916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff8b0e40e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation     
    0x00007fff8ad87546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation     
    0x00007fff8ade5562 __NSThread__main__ + 1345
    7   libsystem_c.dylib        
    0x00007fff897f7772 _pthread_start + 327
    8   libsystem_c.dylib        
    0x00007fff897e41a1 thread_start + 13
    Thread 7:: WebCore: IconDatabase
    0   libsystem_kernel.dylib   
    0x00007fff83a460fa __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff897fbfb9 _pthread_cond_wait + 869
    2   com.apple.WebCore        
    0x000000010fd267ab WebCore::IconDatabase::syncThreadMainLoop() + 491
    3   com.apple.WebCore        
    0x000000010fd233bf WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore 
    0x000000010f1caa6f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib        
    0x00007fff897f7772 _pthread_start + 327
    6   libsystem_c.dylib        
    0x00007fff897e41a1 thread_start + 13
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib   
    0x00007fff83a44686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff83a43c42 mach_msg + 70
    2   com.apple.QuartzCore     
    0x00007fff88e7f17b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore     
    0x00007fff88f03dc6 thread_fun + 25
    4   libsystem_c.dylib        
    0x00007fff897f7772 _pthread_start + 327
    5   libsystem_c.dylib        
    0x00007fff897e41a1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x657571696e750000  rbx: 0x00000001119f86c8  rcx: 0x00007fff513dd110  rdx: 0x00007fff513dd110
      rdi: 0x00007fff513dd118  rsi: 0x00000001119fa2d0  rbp: 0x00007fff513dd150  rsp: 0x00007fff513dd108
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x000000010f5ac190  r11: 0x000000010f1cc680
      r12: 0x00007fff513dd400  r13: 0x0000000111a15dc0  r14: 0x00007fff513dd338  r15: 0x00000001119f70f8
      rip: 0x000000010f2e22d3  rfl: 0x0000000000010206  cr2: 0x000000010f2e2000
    Logical CPU: 1
    Binary Images:
    0x10e818000 -   
    0x10e818fff  com.apple.Safari (6.1 - 8537.71) <27A984C2-C6A5-3AA0-9989-C8E49C563F3D> /Applications/Safari.app/Contents/MacOS/Safari
    0x10e81d000 -   
    0x10edf2ff7  com.apple.Safari.framework (8537 - 8537.71) <A71311C1-2C05-317C-805A-C711818E4775> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    0x10f1c1000 -   
    0x10f566fff  com.apple.JavaScriptCore (8537 - 8537.65) <76BB1553-D36C-32FB-94AB-F42C537D3F41> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
    0x10f65a000 -   
    0x10f7c3ff7  com.apple.WebKit (8537 - 8537.71) <CE89457F-C2CE-31A6-B0B7-EDFEB1EA2601> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x10f8bc000 -   
    0x10fb33ff7  com.apple.WebKit2 (8537 - 8537.71) <24D7718C-3DC5-332C-8994-3EB980DE3B6A> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
    0x10fd1e000 -   
    0x110de3ff7  com.apple.WebCore (8537 - 8537.70) <7837A428-2455-32CC-9639-5CFCD84DD9E1> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
    0x7fff6e418000 -
    0x7fff6e44c93f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
    0x7fff82a53000 -
    0x7fff82b5efff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff82b5f000 -
    0x7fff82c7ffff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff82edf000 -
    0x7fff8307afef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8307b000 -
    0x7fff83201fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff83209000 -
    0x7fff83268fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff83269000 -
    0x7fff83276ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff832dc000 -
    0x7fff8342efff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff83433000 -
    0x7fff83435fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff83448000 -
    0x7fff834b0ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
    0x7fff835cc000 -
    0x7fff837ccfff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
    0x7fff83803000 -
    0x7fff838a1ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff838a2000 -
    0x7fff838c4ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff838c5000 -
    0x7fff838c5fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff838c6000 -
    0x7fff838d5ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
    0x7fff83909000 -
    0x7fff83977ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff83978000 -
    0x7fff83984fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff83985000 -
    0x7fff83988fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff83989000 -
    0x7fff8399eff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x7fff8399f000 -
    0x7fff839bcff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff839bd000 -
    0x7fff83a13fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff83a14000 -
    0x7fff83a33ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff83a34000 -
    0x7fff83a4fff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    0x7fff83a52000 -
    0x7fff83a52ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff83a9a000 -
    0x7fff83a9cfff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff83b08000 -
    0x7fff83b08fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff83b97000 -
    0x7fff83be6ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff83d85000 -
    0x7fff83d9cfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff83e26000 -
    0x7fff83e80fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff83ec9000 -
    0x7fff83ecefff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x7fff83f0b000 -
    0x7fff83f4eff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff84640000 -
    0x7fff84644fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff84645000 -
    0x7fff846adfff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff84809000 -
    0x7fff84841fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
    0x7fff84c44000 -
    0x7fff84c5afff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff84c5b000 -
    0x7fff84c5dfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff84df8000 -
    0x7fff84e49ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff84e4a000 -
    0x7fff84e58fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff84e59000 -
    0x7fff84e5bff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
    0x7fff84e5c000 -
    0x7fff8512dff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8512e000 -
    0x7fff8516dff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff85173000 -
    0x7fff85181ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
    0x7fff85182000 -
    0x7fff851e5fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff851e6000 -
    0x7fff85206fff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff85207000 -
    0x7fff85208ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff85209000 -
    0x7fff85212ff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff85213000 -
    0x7fff85292ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff85293000 -
    0x7fff852edff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff852ee000 -
    0x7fff852efff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
    0x7fff8544f000 -
    0x7fff8549efff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff85509000 -
    0x7fff8550dfff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8557c000 -
    0x7fff85617fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff85e5f000 -
    0x7fff85e66fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x7fff85eaa000 -
    0x7fff85ef4ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff85ef5000 -
    0x7fff85ef5fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff85ef6000 -
    0x7fff85f01ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff85f2b000 -
    0x7fff85fdcfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff85fdd000 -
    0x7fff85fe3fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x7fff85fe4000 -
    0x7fff85feafff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff85feb000 -
    0x7fff85fecfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff86107000 -
    0x7fff86131ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff86132000 -
    0x7fff8615eff7  libRIP.A.dylib (333.1) <CC2A33EB-409C-3C4D-97D4-41F4A080F874> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8615f000 -
    0x7fff86231ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff86232000 -
    0x7fff86254ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
    0x7fff86255000 -
    0x7fff8628fff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff86290000 -
    0x7fff862b7ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff862b8000 -
    0x7fff862c4fff  libCSync.A.dylib (333.1) <319D3E83-8086-3990-8773-872F2E7C6EB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff8657f000 -
    0x7fff86587fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x7fff86588000 -
    0x7fff86596ff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
    0x7fff86733000 -
    0x7fff868a8ff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff868a9000 -
    0x7fff868a9fff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff87885000 -
    0x7fff8788fff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff87890000 -
    0x7fff879a9fff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff879aa000 -
    0x7fff879abfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x7fff879ac000 -
    0x7fff879adfff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff879ae000 -
    0x7fff87a6bff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff87a6c000 -
    0x7fff87a98fff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff87a99000 -
    0x7fff87ac7ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
    0x7fff87b25000 -
    0x7fff87beaff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff87beb000 -
    0x7fff87c6dff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff88574000 -
    0x7fff8857ffff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x7fff88580000 -
    0x7fff88584fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
    0x7fff88a8d000 -
    0x7fff88a8dfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x7fff88ac9000 -
    0x7fff88ad6fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff88d5d000 -
    0x7fff88db4ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff88dc2000 -
    0x7fff88f70fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff88f71000 -
    0x7fff88f77ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x7fff88f84000 -
    0x7fff88fd3ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x7fff890e6000 -
    0x7fff890f1ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff890f2000 -
    0x7fff890f4fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
    0x7fff890f5000 -
    0x7fff89123fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff89124000 -
    0x7fff89124fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff89125000 -
    0x7fff89159fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8915a000 -
    0x7fff8915efff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8915f000 -
    0x7fff89239fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8923a000 -
    0x7fff89259ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x7fff8925a000 -
    0x7fff8925dff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff897a5000 -
    0x7fff897e2fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff897e3000 -
    0x7fff898afff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
    0x7fff898b0000 -
    0x7fff89b1dfff  com.apple.RawCamera.bundle (4.07 - 697) <1588CEC6-012E-30E5-BF38-5BBDABB2F48F> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff89bb8000 -
    0x7fff89fd5fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff89fd6000 -
    0x7fff89fe1fff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8a150000 -
    0x7fff8a3f4ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8a3f5000 -
    0x7fff8a3f8fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8a3f9000 -
    0x7fff8a4fbfff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8a4fc000 -
    0x7fff8a538fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8a539000 -
    0x7fff8a53aff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
    0x7fff8a53b000 -
    0x7fff8a57ffff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
    0x7fff8a58c000 -
    0x7fff8a591fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirec

  • Sign into iCloud pop-up message on iPad2 won't disappear off screen, have reset password multiple times but it is saying incorrect. Please HELP unable to use iPad as message appears every few seconds, iPad was working fine until now.

    Sign into iCloud pop-up message on iPad2 won't disappear off screen, have reset password multiple times but it is saying incorrect. Please HELP unable to use iPad as message appears every few seconds, iPad was working fine until now.

    After the restore did the phone work properly for a while? Say, a day or so?
    If so it is possible you have an app that doesn't let go of memory properly. I reboot my iPhone ( hold sleep/wake and hole till you see the apple logo) every few days. This resets the memory. The iPhone OS has doesn't seem to mange memory very well yet. So a reboot will help with that. I have had my phone almost slow to a stop before I started rebooting. Always reboot after installing a new app. Also do you close all pages in Safari when you are done? This is a good practice. Safari will run in the background and use processor time and drain your battery quicker. Create a new blank page then close all others when you are done browsing for a while. I have also found that certain web site that have animated images like weather maps will turn the phone into molasses. As soon as i close that page it gets faster.
    If all of the above have no effect then as Tamara said it is time for a trip to the Genius bar.
    Good luck

  • Unable to use One Touch Acces with Win7

    Hi,
    as the title says it, i am unable to use the  modem of my N95 8go with windows7
    i tried with the cable and Bluetooth but i can't make it working
    All the rest is working (synch and transfer) but on windows 7 it doesn't work !!
    i tried on 2 PC .....
    I have tried on Vista and XP and it is working witout problems.
    So i really know how to make it working on a PC but not on windows7
    As i clic on connect .... it turn on trying to join my phone but it seems that there is no modem.....
    very strange.
    i tried with OVI suite but it is the same !!!
    HELP it is runnig me crazy !!!

    same happends to me, i thoght it was a problem with the ovi version...have you found a solution?

  • InDesign Problem Using Panels in Vista

    I have InDesign installed on two computers. The one with Windows XP runs InDesign just fine, no problems, but the one running Vista I am unable to use the selection tool without using the keyboard command and I am unable to use or select anything on any of the panels. The drop down menus are enabled but other than that I cannot select anything.
    I have reset the default preferences and even tried renaming them so that the system was forced to reset to the defaults.
    I have tried uninstalling and reinstalling the program. I can only be lead to believe that this is a Vista problem since it is working fine in XP.
    Help anyone?

    I don't have Aero as a Color Theme selection and I just changed the font to the default (96 dpi) as suggested in the Adobe link you sent. This seemed to enable me to use the panels now but everything is so small now, not just that program but everything and I'm not sure that I will be able to work with it this small.
    Thank you for the information. It's the first time I was able to use the InDesign in Vista. My problem is that I need to work back and forth between InDesign and Photoshop and I can't get Photoshop to cooperate with the Windows XP. It was working fine but then as of last week it now tells me that I need to enable GPU enhancements through Performance setting in the Preference Panel.
    Well, when I go into the Preference Panel then the system shuts down. Same thing if I try to open a photo. It opens then immediately shuts down.
    Any information on this?
    I've just started with the Adobe Forums and have been reading all of your responses so far. Thank God there are brilliant people out there for those of us less fortunate.

  • Unable to use ASDM on 5510 and 5520 ASA

    Hello,
    I have been working with ASA's for about 8 months now.  I have a 5520 that is brand new out of the box and a 5510 that I blew up last week (read as format disk, start from scratch).
    I have generated RSA keys, loaded license keys, loaded IOS's and configs in the last few days.  Luckily these boxes are table top at the moment and nothingto do with production.  However, I have tried to load production configurations on to these boxes, and have determined that not all the lines of the configs will load.
    To be specific at the moment, I am unable to load "asdm location 192.168.50.0 255.255.255.0 inside" on either box.  I am also unable to use my broswer and HTTPS://192.168.50.1              to access the ASA, even though I have HTTP serve enabled and HTTP 192.168.50.0 listed in the config.
    Because I blew up one of the boxes and started from scratch and the other box is brand new, is/are there any other special things that need to be done to these boxes?  Like I could put in some of the "crypto" config lines in the boxes until I did the license keys, once they were lin, I could configure the crypto lines.
    I am open to any suggestions as this point as I can't current get the VPN's to come up (different issue here) nor see what's going on with the VPN's without ASDM.
    Thank you!
    Tracey

    Hi,
    please configure the ASDM-permitted subnets as following:
    http
    and make sure that you have overlapping ciphers between the client and the ASA:
    show run ssl
    ssl encryption
    if it persists, get the SSL captures at the ASA as .pcap
    hope this helps
    Mashal Alshboul

  • Unable to use 'copy' feature with registered version of quicktime pro.

    Hi.
    I have a registered version of Quicktime pro (7.1.6), and i am unable to use the copy feature. I captured several videos from work using a windows box and an application whose name escapes me at the moment. Due to the windows app being garbage, i was only able to capture in MPEG1 format (MPEG2 caused the app to crash, of course). I have brought the files home and am now unable to copy selections of it for exporting into smaller files. I can highlight lengths of the video (no audio, just video) but the 'copy' feature is grayed out still. Any ideas on what is causing this? The video format is as follows:
    MPEG1 Muxed, 640 x 480
    FPS: 29.97
    Data rate: 4066.42 kbits/sec
    I'm running 10.3.9, but have also had no success on a 10.4 macmini, so the OS doesn't seem to be the issue.
    I'm trying to get this video into imovie, but since it's over 600 megs, imovie cops out after a few hours and says it can't import it.
    Help?

    Not all multiplexed videos come with AC3. They don't have to have audio in the first place. Some of them come with Linear PCM, which is the case for iDVD's VOB files, and MP2. If a multiplexed video is equipped with AC3, you are right, and the resulting modified sub-clip won't contain audio. But if it's Linear PCM or MP2, the edited sub-clip will contain audio.
    I'm finished with this case.
    Message was edited by: Horror in Oklahoma

Maybe you are looking for

  • How to avoid the message in the dashboard report

    Hi,                    I am developing Dashboard reports(graphs) using WAD. Query and WAD are working fine. I need to put a variable for Calendar Month or Year in the graph .I am populating the Variable with default value initially and I am getting t

  • PDF links in my website clicked since recent update no longer open in a tab, rather as a PDF.

    I often send links to clients and now I need to save the PDF and then send the PDF. I can't find how to change that to return to functionality before last update.

  • SD card in SDXC port

    The information booklet, "Everything Mac", says that the SDXC port takes SD cards, but the computer doesn't recognize that anything is plugged in. Am I missing something?

  • Creating photo folders?

    Got ios5 but I still don't know how to create some new photo folders following a trip to France and the middle east.  Be much nicer if my almost 600 photos were better organized.

  • [ JHeadstart ] Display text in Popup

    Hello, I have a View Object with a String attribute, let's say x. When displaying the View Object, I want to display the text value in x in a Popup window. What is the proper way to do this in a JHeadstart development context? I've tried using a read