victorporof / Sublime-HTMLPrettify

HTML, CSS, JavaScript, JSON, React/JSX and Vue code formatter for Sublime Text 2 and 3 via node.js
https://github.com/victorporof/Sublime-HTMLPrettify
1.93k stars 259 forks source link

Node.js was not found when it is there #53

Closed AndreasBackx closed 9 years ago

AndreasBackx commented 11 years ago

I have set my node path to:

{
  // Simply using `node` without specifying a path sometimes doesn't work :(
  // https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found
  // http://nodejs.org/#download
  "node_path": "C:/Program Files/nodejs/node.exe"
}

I'm using the same path for SublimeLinter, HTMLPrettify is still giving me an error when using CTR+SHIFT+H.

victorporof commented 11 years ago

Try escaping the space.

scott-wong commented 11 years ago

I got the same issue and modify to this doesn't work .

{
  // Simply using `node` without specifying a path sometimes doesn't work :(
  // https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found
  // http://nodejs.org/#download
  "node_path": ""
}
afanasenka commented 11 years ago

Hi! I have the same problem:

{ // Simply using node without specifying a path sometimes doesn't work :( // https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found // http://nodejs.org/#download "node_path": "/usr/local/bin/" }

Mac OS 10.6.8

I can see 'node' and 'npm' files in Finder, but Sublime Text 2 write "Node.js was not found in the default path. Please specify the location."

How can I solve this problem? Thank you.

victorporof commented 11 years ago

@blackyangell Run this command in your terminal: which node. What's the output?

afanasenka commented 11 years ago

The output is '/usr/local/bin/node'

I try to use this settings:

{ // Simply using node without specifying a path sometimes doesn't work :( // https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found // http://nodejs.org/#download "node_path": "/usr/local/bin/node" }

but... get the same error - 'Node.js was not found in the default path. Please specify the location.'

alexdelorenzo commented 11 years ago

I am using Ubuntu 13.04 with the default repositories. Node version is v0.6.19. Sublime 3 build is 3047 and I just pulled HTMLPrettify from the repo about 15min ago.

The default package for Ubuntu's nodejs puts the binary in the path: /usr/bin/nodejs. which nodejs confirms this.

I tried setting node_path to the path, but it still failed to find it. I then tried symlinking /usr/bin/nodejs to /usr/bin/node and updated the node_path accordingly it still failed.

Setting node_path to the parent directory also failed.

chandu commented 11 years ago

I am using Win 7 + Sublime 3.

I get the same dialog and the log shows . I updated the path in the HTMLPrettify.sublime-settings and still get the same error.

Debugged it a little and looks like the command is failing @ return subprocess.check_output(run, stderr=subprocess.STDOUT, shell=True) (last ln of HtmlPrettify.py)

Saving buffer to: C:\Users\someuser\AppData\Roaming\Sublime Text 3\Packages\HTML-CSS-JS Prettify/.__temp__ Plugin folder is: C:\Users\someuser\AppData\Roaming\Sublime Text 3\Packages\HTML-CSS-JS Prettify Unexpected error(<class 'OSError'>): [WinError 6] The handle is invalid error: You won't be able to use this plugin without specifying the path to Node.js. I have no experience with Python dev. Found this question on SO: http://stackoverflow.com/questions/3028786/how-can-i-fix-error-6-the-handle-is-invalid-with-pyserial

Can some one suggest what am I doing wrong?

generic-user commented 11 years ago

I'm using elementery OS

~$ which node
/usr/bin/node

putting that in the setup file, does not work...

dagomar commented 11 years ago

Same issue as thismachinechills, ubuntu 13.04, changed path, tried symlink to no avail.

eukway commented 11 years ago

i have seem problem like this. my node path is C:/Program Files/nodejs/node.exe and set like this: { // Simply using node without specifying a path sometimes doesn't work :( // https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found // http://nodejs.org/#download "node_path": "C:/Program Files/nodejs/node.exe" } it's do not work

ps.use window 8

thenatefisher commented 11 years ago

@jedvardsson I had the same issue. Apt-get repository only has node v0.6.19. Just download latest Node.js (0.10.17 as of now) and drop it in /usr/bin directory. Easy fix.

matijakovacevic commented 11 years ago

for all you guys with Win7 and sublime text 2, the node_path needs to be "C:\Program Files\nodejs\node.exe"

that one works for me beautifully :)

paulovaladares commented 11 years ago

That´s right. I just download and installed the node.js and put the installed path

soderlind commented 11 years ago

On Mac, I did a ls -l /usr/local/bin/node and it showed that node is linked to /usr/local/Cellar/node/0.10.15/bin/node

1) I changed the config to:

{
    "node_path": "/usr/local/Cellar/node/0.10.15/bin/node",
    "format_on_save": true
}

2) Restarted Sublime Text 3, and it works like a charm.

I'm running node v0.10.15

RohitRox commented 11 years ago

restarting sublime worked, with path /usr/local/bin/node in my iMac.

kalligator commented 11 years ago

Finally "C:/Program Files/nodejs/" has worked for Win7 64bit & ST v2.

HOWEVER I still get this warning as long as either the filename or the path contain non-latin characters! This seems like a plugin bug.

mckenn commented 11 years ago

Ubuntu 12.04.3 nodejs v0.10.18 from chris-lea PPA which node returns /usr/bin/node, so i've tried "node_path": "/usr/bin/node" Plugin still gives me the same error.

but on another machine with same OS and soft everything is fine.

gudaomaoni commented 11 years ago

@kalligator @victorporof don't know why, it suddenly worked now. Here is my setting of node_path :

{
  // Simply using `node` without specifying a path sometimes doesn't work :(
  // https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found
  // http://nodejs.org/#download
  "node_path": "C:/ProgramFiles/nodejs/node.exe",
  "format_on_save": false
}

i swear i have do no thing, it just worked when i retry it one day, while it failed with "ode.js was not found in the default path. Please specify the location." by the same setting a few days ago.

lucky, but still confused a lot, does anybody know why ?

gudaomaoni commented 11 years ago

suddenly failed again now

victorporof commented 11 years ago

Anyone experiencing this problem, please pull and try again.

mckenn commented 11 years ago

Unfortunately nothing has changed

gudaomaoni commented 11 years ago

Finally i got the reason, as @kalligator said, it was caused by the "filename or the path contain non-latin characters! ", such like "F:\COPY\健康中国梦", the HTML-Prettify works very well after i changed "健康中国梦" to "health-china" !

besides, @matijakovacevic, in WINDOWS, the node_path should be like this.

"node_path": "C:/ProgramFiles/nodejs/node.exe"
everthis commented 11 years ago

@gudaomaoni "node_path": "C:/nodejs/node.exe", does not work

gudaomaoni commented 11 years ago

@everthis , please check the things below :

fastzhong commented 11 years ago

annoying, doesnot work:

"node_path": "C:/Program Files/nodejs/",

fastzhong commented 11 years ago

neither:

"node_path": "C:/Program Files/nodejs/node.exe",

Egyiastic commented 11 years ago

Hi guys, I'm gonna explain howto fix that for windows users. Other os users (e.g linux .. etc) can simulate the steps as i'm not an expert .

  1. Download the program from here " http://nodejs.org/ " hit install.
  2. Install it and as default it's installed in the path " C:\Program Files\nodejs ".
  3. Now goto Sublime text and set the path of node.js as follows (I guess you can reach the config screen by pressing "ctrl+alt+h", "n" or from right click)
  4. the path should belike that > "

{ // Simply using node without specifying a path sometimes doesn't work :( // https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found // http://nodejs.org/#download "node_path": "C:/Program Files/nodejs/node.exe", "format_on_save": false }

-Note- The path has forward slash not backward.

Done ^_^ Hope that helps. Bye Signature: Eng.Abd El-Raouf, Egypt Sorry for my bad english :)

yashangqingsong commented 11 years ago

win 7 + sublime 2 it work my set: C:\Program Files (x86)\Sublime Text\Data\Packages\HTML-CSS-JS Prettify\HTMLPrettify.sublime-settings { "node_path": "C:/Program Files/nodejs/node.exe", "format_on_save": false }

C:\Program Files (x86)\Sublime Text\Data\Packages\User\Default (Windows).sublime-keymap [ ... { "keys": ["ctrl+alt+h"], "command": "php_beautifier"}, ... ]

Alex0007 commented 11 years ago

use double \ in your path here is screenshot http://i.imgur.com/hzbHMyD.png

yashangqingsong commented 11 years ago

my Sublime-HTMLPrettify works fine it setted like this: "node_path": "C:/Program Files/nodejs/node.exe",

not C:\Program Files\nodejs\node.exe or C:\Program Files\nodejs\node.exe

------------------ 原始邮件 ------------------ 发件人: "Alexey Privalov"; 发送时间: 2013年11月2日(星期六) 凌晨3:19 收件人: "victorporof/Sublime-HTMLPrettify"; 抄送: "崖上青松"315279952@qq.com; 主题: Re: [Sublime-HTMLPrettify] Node.js was not found when it is there(#53)

"node_path": "C:\Program Files\nodejs\node.exe"

— Reply to this email directly or view it on GitHub.

ducpho commented 10 years ago

For me it only worked on Windwos after changing line 47 till 50 in HTMLPrettify.py to first check for "node" instead of "nodejs". Apparently exists_in_path found something called "nodejs", but that couldn't run the scripts.

branylagaffe commented 10 years ago

my node is like this :

"node_path": "C:/Program Files/nodejs/",

and it works, hope this will help someone

hugorodgerbrown commented 10 years ago

I get this on OSX (Mavericks), running Sublime 3. If I run the full command in the terminal, I get segmentation fault 11, however if I run as sudo it works.

$ "/usr/local/bin/node" "/Users/hugo/Library/Application Support/Sublime Text 3/Packages/HTML-CSS-JS Prettify/scripts/run.js" "/Users/hugo/Library/Application Support/Sublime Text 3/Packages/HTML-CSS-JS Prettify/.__temp__" "/Users/hugo/Projects/test_html_prettify.html"
*** HTMLPrettify output ***
<html>
...
</html>
Segmentation fault: 11
$

A search for 'segmentation fault 11' returned this question on StackOverflow: http://stackoverflow.com/questions/19531969/segmentation-fault-11-in-os-x which references some issues with the 2.7.5 and 3.3.2 versions of python:

"One is critical in that it causes the interpreter to crash when running in interactive mode (http://bugs.python.org/issue18458)."

ghost commented 10 years ago

This is really bugging ^) Have :two: almost "mirror" installations on similiar systems (Win7 Enterprise 64bit), Sublime 3, latest nodejs. One of them was installed w/ "default" path for nodejs and WORKED :+1: , another one - wouldnot work with default path - had to change path to "C:/Program Files/nodejs/".. after a while - it stopped working :-1: . Install/Reinstall wouldnot help. Changing paths either. Fixed by copying whole Sublime folder from working machine. Just for the hell of it - checked files via "fc" and... found no differences. Now both machines work fine. What the hell it was.. :question:

coderDem commented 10 years ago

The path: "C:\Program Files\nodejs" and "C:/Program Files/nodejs/node.exe" don't work for me. Reinstall and install nodejs -> same error.

tataue commented 10 years ago

Restart Sublime Text3 and All good ! ps: win8

wdavo commented 10 years ago

I had node configured on my PATH and I had node_path value set in the sublime settings file. For some reason It wouldn't work correctly using PATH (which was configured correctly). Rather than messing around with the PATH I just removed the PATH checking code from HTMLPrettify.py meaning that it uses the node_path value all the time. Works fine.

robinshi007 commented 10 years ago

Hi @Chandu, I have the same error prompt with you. my platform is Win 7 x64 + Sublime text 3. I resolved it by "Run as Administrator" to sublime text 3.

Here is my steps:

  1. "node_path": "C:/Program Files/nodejs/node.exe", 2, select "sublime_text.exe", RMB(right mouse button), then select "Run as administrator".

This issue may caused by UAC (User Account Control) settings in Win 7.

unbornchikken commented 10 years ago

I've tried all of the above on Win8.1 and still no success. I don't understand why this have to be complicated at this level, because node.exe in in the PATH, if I bring up a command prompt anywhere node will run like a charm.

BoragThungg commented 10 years ago

Running Win 8.1 too. Frustrated as anything trying to get this working and then tried yashangqingsong's suggestion. It didn't work until I restarted Sublime 3. Now works a treat.

"node_path": "C:/Program Files/nodejs/node.exe",

unbornchikken commented 10 years ago

"The system cannot find the path specified." :S Did you update the Default or the User setting file?

BoragThungg commented 10 years ago

In a document in Sublime, right click -> HTML/CSS/JS Prettify -> Set Plugin Options. Change the value here, save it and restart Sublime. Hopefully you should be good to go.

shahar-d commented 10 years ago

Confirmed: "node_path": "C:/Program Files/nodejs/" works for sublime text 2 on windows 7 64-bit. Had to restart sublime before it worked.

rnoldo commented 10 years ago

if you guys have unicode in file path, checkout my pull #89

brettalton commented 10 years ago

SublimeText 2 / Mac OS X 10.9.1 Mavericks / node installed via brew

/usr/local/bin/node and, /usr/local/Cellar/node/0.10.15/bin/node

both fail, although they're both valid Node paths.

kylepaulsen commented 10 years ago

I had to edit JSHint.py in C:\Users\UserName\AppData\Roaming\Sublime Text 2\Packages\JSHint Gutter in order to get this to work.

I changed line 274 which looks like this:

return subprocess.Popen(cmd, stdout=subprocess.PIPE, startupinfo=startupinfo).communicate()[0]

To this:

return subprocess.Popen(cmd, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE, startupinfo=startupinfo).communicate()[0]

I think the problem relates to these: http://bugs.python.org/issue3905 http://bugs.python.org/issue1124861

marszall87 commented 10 years ago

SublimeText 3, Ubuntu 12.04, node v0.10.26 installed manually

I get 'Node.js was not found in the default path. Please specify the location.' message every time I try to format code. Set my 'node_path' to '/usr/bin/node' (yup, it's there, I've checked).

This is what I get in Sublime console:

Unexpected error(<class 'subprocess.CalledProcessError'>): Command '"nodejs" "/home/[...]/.config/sublime-text-3/Packages/HTML-CSS-JS Prettify/scripts/run.js" "/home/[...]/.config/sublime-text-3/Packages/HTML-CSS-JS Prettify/.__temp__" "/home/[...].html"' returned non-zero exit status 8
smallmacro commented 10 years ago

sublime text2,WIN7 32bit. I had try all the methods above,but it still doesn't work ,if someone slove it, show me u comment,thanks.

getbumbai commented 10 years ago

I get the same error about not finding node, however like somebody said above node is actually segfaulting.

The error was saved and here it is:

Process:         node [76492]
Path:            /usr/local/Cellar/node/0.10.4/bin/node
Identifier:      node
Version:         ???
Code Type:       X86-64 (Native)
Parent Process:  plugin_host [76487]
Responsible:     Sublime Text [76484]
User ID:         1005

Date/Time:       2014-05-10 13:19:32.511 +0200
OS Version:      Mac OS X 10.9.2 (13C1021)
Report Version:  11
Anonymous UUID:  760A6071-EC93-E978-C762-4B835572D104

Sleep/Wake UUID: F1899BC1-CD90-4601-809C-1E767E2C2053

Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000010

VM Regions Near 0x10:
--> 
    __TEXT                 0000000100000000-00000001005e8000 [ 6048K] r-x/rwx SM=COW  /usr/local/Cellar/node/0.10.4/bin/node

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   node                            0x00000001002ca908 v8::internal::MemoryAllocator::Free(v8::internal::MemoryChunk*) + 64
1   node                            0x000000010017f0fd v8::internal::DeoptimizerData::~DeoptimizerData() + 55
2   node                            0x000000010020660c v8::internal::Isolate::Deinit() + 104
3   node                            0x00000001002064f3 v8::internal::Isolate::TearDown() + 77
4   node                            0x00000001002de45c v8::internal::V8::TearDown() + 58
5   node                            0x000000010014a047 v8::V8::Dispose() + 51
6   node                            0x000000010000a46b node::Start(int, char**) + 377
7   node                            0x0000000100001474 start + 52

Thread 1:
0   libsystem_kernel.dylib          0x00007fff8e588a1a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff8e587d18 mach_msg + 64
2   com.apple.CoreFoundation        0x00007fff866fffc5 __CFRunLoopServiceMachPort + 181
3   com.apple.CoreFoundation        0x00007fff866ff5e9 __CFRunLoopRun + 1161
4   com.apple.CoreFoundation        0x00007fff866fef25 CFRunLoopRunSpecific + 309
5   com.apple.CoreFoundation        0x00007fff867b4811 CFRunLoopRun + 97
6   node                            0x000000010013263b uv__cf_loop_runner + 67
7   node                            0x0000000100126f7c uv__thread_start + 25
8   libsystem_pthread.dylib         0x00007fff87870899 _pthread_body + 138
9   libsystem_pthread.dylib         0x00007fff8787072a _pthread_start + 137
10  libsystem_pthread.dylib         0x00007fff87874fc9 thread_start + 13

Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib          0x00007fff8e58d662 kevent64 + 10
1   libdispatch.dylib               0x00007fff8866f43d _dispatch_mgr_invoke + 239
2   libdispatch.dylib               0x00007fff8866f152 _dispatch_mgr_thread + 52

Thread 3:
0   libsystem_kernel.dylib          0x00007fff8e58c716 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff87872c3b _pthread_cond_wait + 727
2   node                            0x000000010012fc2a uv_cond_wait + 9
3   node                            0x00000001001304ae worker + 207
4   node                            0x0000000100126f7c uv__thread_start + 25
5   libsystem_pthread.dylib         0x00007fff87870899 _pthread_body + 138
6   libsystem_pthread.dylib         0x00007fff8787072a _pthread_start + 137
7   libsystem_pthread.dylib         0x00007fff87874fc9 thread_start + 13

Thread 4:
0   libsystem_kernel.dylib          0x00007fff8e58c716 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff87872c3b _pthread_cond_wait + 727
2   node                            0x000000010012fc2a uv_cond_wait + 9
3   node                            0x00000001001304ae worker + 207
4   node                            0x0000000100126f7c uv__thread_start + 25
5   libsystem_pthread.dylib         0x00007fff87870899 _pthread_body + 138
6   libsystem_pthread.dylib         0x00007fff8787072a _pthread_start + 137
7   libsystem_pthread.dylib         0x00007fff87874fc9 thread_start + 13

Thread 5:
0   libsystem_kernel.dylib          0x00007fff8e58c716 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff87872c3b _pthread_cond_wait + 727
2   node                            0x000000010012fc2a uv_cond_wait + 9
3   node                            0x00000001001304ae worker + 207
4   node                            0x0000000100126f7c uv__thread_start + 25
5   libsystem_pthread.dylib         0x00007fff87870899 _pthread_body + 138
6   libsystem_pthread.dylib         0x00007fff8787072a _pthread_start + 137
7   libsystem_pthread.dylib         0x00007fff87874fc9 thread_start + 13

Thread 6:
0   libsystem_kernel.dylib          0x00007fff8e58c716 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff87872c3b _pthread_cond_wait + 727
2   node                            0x000000010012fc2a uv_cond_wait + 9
3   node                            0x00000001001304ae worker + 207
4   node                            0x0000000100126f7c uv__thread_start + 25
5   libsystem_pthread.dylib         0x00007fff87870899 _pthread_body + 138
6   libsystem_pthread.dylib         0x00007fff8787072a _pthread_start + 137
7   libsystem_pthread.dylib         0x00007fff87874fc9 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000003  rbx: 0x00000b346b300000  rcx: 0x0000000000000003  rdx: 0x000000010080aeb0
  rdi: 0x000000010080cd10  rsi: 0x00000b346b300000  rbp: 0x00007fff5fbffa50  rsp: 0x00007fff5fbffa30
   r8: 0x0000000000000040   r9: 0x00007fff5fbffa00  r10: 0xf16bb7f167f9adb1  r11: 0x0000000000000000
  r12: 0x0000000101007800  r13: 0x0000000000000004  r14: 0x000000010080d440  r15: 0x0000000101007800
  rip: 0x00000001002ca908  rfl: 0x0000000000010246  cr2: 0x0000000000000010

Logical CPU:     6
Error Code:      0x00000004
Trap Number:     14

Binary Images:
       0x100000000 -        0x1005e7fff +node (???) <ECB4E68D-BFF8-3834-B07A-403004D5F6D8> /usr/local/Cellar/node/0.10.4/bin/node
    0x7fff64023000 -     0x7fff64056817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    0x7fff83b13000 -     0x7fff83b20fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff83d77000 -     0x7fff83d78ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff83dc7000 -     0x7fff83dd0fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff83ddb000 -     0x7fff83e64ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x7fff83e65000 -     0x7fff83ea4fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff83ea7000 -     0x7fff83f72fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff83f73000 -     0x7fff83f7dff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff84220000 -     0x7fff84229ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff8422a000 -     0x7fff8427bff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff84493000 -     0x7fff844daff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
    0x7fff844db000 -     0x7fff844e6ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff844e7000 -     0x7fff84520ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff84521000 -     0x7fff84539ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff845e0000 -     0x7fff845f1ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff845f2000 -     0x7fff845f6ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x7fff845f7000 -     0x7fff845f7fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff845f8000 -     0x7fff845fbffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff84b03000 -     0x7fff84b41ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff84b42000 -     0x7fff84b44ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
    0x7fff84b86000 -     0x7fff84b8bff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff84bcd000 -     0x7fff84bceff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
    0x7fff84bcf000 -     0x7fff84c1dfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff84d41000 -     0x7fff84d4dff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff84d4e000 -     0x7fff84efbf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x7fff84efc000 -     0x7fff84f08ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff84f09000 -     0x7fff84f10fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff84ff0000 -     0x7fff852eefff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff852ef000 -     0x7fff8530bfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff860c2000 -     0x7fff860d3ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff860d4000 -     0x7fff860d7fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff862fa000 -     0x7fff862fffff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff86331000 -     0x7fff86341fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff863db000 -     0x7fff86404ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x7fff8668f000 -     0x7fff86874fff  com.apple.CoreFoundation (6.9 - 855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff86b23000 -     0x7fff86b24fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff86b49000 -     0x7fff86b4dfff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x7fff8725e000 -     0x7fff872eefff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff872ef000 -     0x7fff872f2fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff8786f000 -     0x7fff87876ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff87877000 -     0x7fff87878ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff87879000 -     0x7fff878e3ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff87b08000 -     0x7fff87befff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff87f27000 -     0x7fff87f29ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff87f2a000 -     0x7fff88014fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff88074000 -     0x7fff8807eff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff8807f000 -     0x7fff880aeff9  com.apple.GSS (4.0 - 2.0) <1B71A3E1-E31D-32CC-A733-ED155CC4A6A2> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8811c000 -     0x7fff8811cfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8811d000 -     0x7fff8811efff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff88194000 -     0x7fff881abff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff882f6000 -     0x7fff885cafc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff8866c000 -     0x7fff88686fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
    0x7fff88687000 -     0x7fff886f6ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff886f8000 -     0x7fff88765fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff88766000 -     0x7fff887b8fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x7fff887ef000 -     0x7fff88853fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff888e2000 -     0x7fff888e4ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff88e77000 -     0x7fff88f7dfff  com.apple.ImageIO.framework (3.3.0 - 1042) <DEA4FF1B-D340-32C3-977D-D249709C6031> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff88fdf000 -     0x7fff88ffaff7  libPng.dylib (1042.2) <103F76EB-0FB7-320E-822F-53483CCB7299> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff88ffb000 -     0x7fff89016ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8905c000 -     0x7fff8948fffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff894a2000 -     0x7fff894f5fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
    0x7fff894fd000 -     0x7fff894fffff  libRadiance.dylib (1042.2) <63C92F09-F862-3303-9EF6-55A80B48F2CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff89530000 -     0x7fff89542fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff8978a000 -     0x7fff8978afff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8978f000 -     0x7fff898fdff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff898fe000 -     0x7fff89cdfffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff89ce0000 -     0x7fff89ce0fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff89db6000 -     0x7fff89de6fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff89ecd000 -     0x7fff89ed1fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff8a054000 -     0x7fff8a07bffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x7fff8a71c000 -     0x7fff8a71cffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8a71d000 -     0x7fff8a976ff9  com.apple.security (7.0 - 55471.14.1) <FF57C9BB-4E52-33E5-8927-59AEADB6CA27> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8a977000 -     0x7fff8a9daff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff8aa25000 -     0x7fff8aa28ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x7fff8ac1b000 -     0x7fff8ac1fff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
    0x7fff8ac5a000 -     0x7fff8aca8ff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
    0x7fff8adad000 -     0x7fff8b097fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff8b56c000 -     0x7fff8b575ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8b576000 -     0x7fff8b6a6ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8b6f0000 -     0x7fff8b72bfff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8b759000 -     0x7fff8b767fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8b768000 -     0x7fff8b7adffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff8ba32000 -     0x7fff8ba3affc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff8ba9a000 -     0x7fff8bb7efff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8bb9f000 -     0x7fff8bbc7ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff8bbc8000 -     0x7fff8bc3ffff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8bc40000 -     0x7fff8bcccff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff8bccd000 -     0x7fff8be3dff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8be3e000 -     0x7fff8be57ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8be65000 -     0x7fff8be8cff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff8be8d000 -     0x7fff8be9aff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff8bebd000 -     0x7fff8bf16fff  libTIFF.dylib (1042.2) <1C80C3FD-639C-3781-8A30-265410DD444F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8bfef000 -     0x7fff8bff0ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff8c03c000 -     0x7fff8c043fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8c044000 -     0x7fff8c05fff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff8c06b000 -     0x7fff8c0adff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x7fff8c0e5000 -     0x7fff8c1d6ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff8c1d7000 -     0x7fff8c1e6ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8c1fa000 -     0x7fff8c200ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x7fff8c201000 -     0x7fff8c209ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff8c20a000 -     0x7fff8c3c2ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
    0x7fff8c3c3000 -     0x7fff8c3dbff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff8c910000 -     0x7fff8c9d2ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8caae000 -     0x7fff8cad3ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8cad4000 -     0x7fff8cad4fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8cba6000 -     0x7fff8cbedfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8d89d000 -     0x7fff8d9f0ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8d9f2000 -     0x7fff8d9fafff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8da4b000 -     0x7fff8da6ffff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x7fff8da70000 -     0x7fff8da72fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff8da73000 -     0x7fff8dafcfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff8dafd000 -     0x7fff8dafeff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8daff000 -     0x7fff8e41e68f  com.apple.CoreGraphics (1.600.0 - 599.21.1) <23BCDB0F-4E60-31BA-859C-820351D50111> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8e41f000 -     0x7fff8e41fff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff8e440000 -     0x7fff8e509fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff8e50a000 -     0x7fff8e56fffb  com.apple.Heimdal (4.0 - 2.0) <1560A2CC-2C0C-3F7B-868C-BD5ADB241F5A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8e570000 -     0x7fff8e571ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff8e577000 -     0x7fff8e593ff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8e59b000 -     0x7fff8e5e9fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8e5ea000 -     0x7fff8e5eeff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
    0x7fff8e616000 -     0x7fff8e645fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff8e687000 -     0x7fff8e6b0fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff8ee07000 -     0x7fff8eef6fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8eff6000 -     0x7fff8f001fff  libkxld.dylib (2422.92.1) <A7DFFC8C-45EE-3525-A961-EF93C2FB1340> /usr/lib/system/libkxld.dylib
    0x7fff8f002000 -     0x7fff8f05dffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff8f05e000 -     0x7fff8f069fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8f06a000 -     0x7fff8f206ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8f207000 -     0x7fff8f2b7ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff8f4d4000 -     0x7fff8f5c2fff  libJP2.dylib (1042.2) <DD2DE799-C053-3C6A-91EC-D637CBD6FF90> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8f5c3000 -     0x7fff8f893ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff8f8bb000 -     0x7fff8f8c2ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
    0x7fff8f8c3000 -     0x7fff8f8c7ff7  libGIF.dylib (1042.2) <0A9267FF-D93A-36DF-87B9-BA34C1166C0C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff9082f000 -     0x7fff90834fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff90ae2000 -     0x7fff90b55fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff90b56000 -     0x7fff90ba3ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff90bd1000 -     0x7fff90bd8ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff90ebe000 -     0x7fff90ecbff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff90ecc000 -     0x7fff90ecdfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff91017000 -     0x7fff91030ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff91031000 -     0x7fff91055ff7  libJPEG.dylib (1042.2) <0AFE20D1-F24D-3548-A562-DB8FA7995655> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff91056000 -     0x7fff91060fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff91061000 -     0x7fff91064fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff91065000 -     0x7fff9130fff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff917c4000 -     0x7fff917d6ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff91812000 -     0x7fff91837ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 174176
    thread_create: 2
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=144.2M resident=68.6M(48%) swapped_out_or_unallocated=75.7M(52%)
Writable regions: Total=65.8M written=6868K(10%) resident=7056K(10%) swapped_out=0K(0%) unallocated=58.9M(90%)

REGION TYPE                      VIRTUAL
===========                      =======
Dispatch continuations             16.0M
Kernel Alloc Once                     4K
MALLOC                             28.7M
MALLOC (admin)                       32K
Memory Tag 255                    548.4M
Memory Tag 255 (reserved)          2016K        reserved VM address space (unallocated)
STACK GUARD                        56.0M
Stack                              10.6M
VM_ALLOCATE                           8K
VM_ALLOCATE (reserved)               12K        reserved VM address space (unallocated)
__DATA                             8476K
__LINKEDIT                         66.9M
__TEXT                             77.3M
__UNICODE                           544K
shared memory                         4K
===========                      =======
TOTAL                             814.9M
TOTAL, minus reserved VM space    812.9M
getbumbai commented 10 years ago

It seems like there are a few different issues in this ticket largely because any failure from node is reported as 'node not found'. Should there be another ticket to be more specific in that error message?

I saw my node was a little out of date and am updating now. I have high hopes this will fix the issue.