Thread: pgAdmin with SSHTunneling support

pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:
Hi Dave

I have implemented SSH Tunneling and integrate it with pgAdmin3. I have tested it on Windows, Linux and MAC. Attached is the patch file.
Please review it and if it looks OK then can you please commit it.

--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Attachment

Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
Hi


On Wed, Oct 17, 2012 at 1:44 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
> Hi Dave
>
> I have implemented SSH Tunneling and integrate it with pgAdmin3. I have
> tested it on Windows, Linux and MAC. Attached is the patch file.
> Please review it and if it looks OK then can you please commit it.

Cool :-)

I found a couple of things on my initial tests on Mac:

- On my first attempt to connect to a server, I opened the properties
dialogue, and enabled SSH Tunneling, specifying the username and host
etc. When I then tried to connect to the server it prompted for the
SSH password, but didn't prompt for a password for the database, so
the connection failed. The second time I tried, it first prompted for
the database password, then then SSH password which worked fine. When
I restarted pgAdmin, it again failed to prompt for the database
password on the first, but not second attempts.

- If I attempt to connect via SSH Tunnel, but cancel when I'm prompted
for a password, the connection attempt proceeds anyway, then fails
first with a valid error message about password auth failing, then
with an "empty" error message about connecting to the (database?)
server.

- When attempting to connect with an identity file, I first get
prompted for a password anyway, then if I just hit return on that
dialogue, I get a message telling me that identity file auth failed
(followed by the same "empty" error message).

Thanks.

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:
Hi

On Wed, Oct 17, 2012 at 7:42 PM, Dave Page <dpage@pgadmin.org> wrote:
Hi


On Wed, Oct 17, 2012 at 1:44 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
> Hi Dave
>
> I have implemented SSH Tunneling and integrate it with pgAdmin3. I have
> tested it on Windows, Linux and MAC. Attached is the patch file.
> Please review it and if it looks OK then can you please commit it.

Cool :-)

I found a couple of things on my initial tests on Mac:

- On my first attempt to connect to a server, I opened the properties
dialogue, and enabled SSH Tunneling, specifying the username and host
etc. When I then tried to connect to the server it prompted for the
SSH password, but didn't prompt for a password for the database, so
the connection failed. The second time I tried, it first prompted for
the database password, then then SSH password which worked fine. When
I restarted pgAdmin, it again failed to prompt for the database
password on the first, but not second attempts.

   Here the problem is we don't have an entry in the "pgpass" file for the localip:port pair(one end of the SSH tunnel). At the first attempt to connect
   to server it looks for the pgpass entry If stored password is checked, in this case user will find the error message. In the second attempt it first
   prompted for the database password which will be store in the variable and in this case user will not bet any error and then for the subsequent
   attempts it uses the password which is stored in the variable. If we restart pgAdmin, again the same problem will occur. 
    

- If I attempt to connect via SSH Tunnel, but cancel when I'm prompted
for a password, the connection attempt proceeds anyway, then fails
first with a valid error message about password auth failing, then
with an "empty" error message about connecting to the (database?)
server.

- When attempting to connect with an identity file, I first get
prompted for a password anyway, then if I just hit return on that
dialogue, I get a message telling me that identity file auth failed
(followed by the same "empty" error message).

   Fixed in the updated patch. Attached is the updated patch. 

Thanks.

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Attachment

Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
Hi

On Tue, Oct 23, 2012 at 12:33 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>    Here the problem is we don't have an entry in the "pgpass" file for the
> localip:port pair(one end of the SSH tunnel). At the first attempt to
> connect
>    to server it looks for the pgpass entry If stored password is checked, in
> this case user will find the error message. In the second attempt it first
>    prompted for the database password which will be store in the variable
> and in this case user will not bet any error and then for the subsequent
>    attempts it uses the password which is stored in the variable. If we
> restart pgAdmin, again the same problem will occur.

OK, I'm still seeing the issue here. When I first try to connect it
always seems to fail to prompt me for a password and then gives an
error. I think the solution is to simply always ask for the password,
if the server requests it.

>> - If I attempt to connect via SSH Tunnel, but cancel when I'm prompted
>> for a password, the connection attempt proceeds anyway, then fails
>> first with a valid error message about password auth failing, then
>> with an "empty" error message about connecting to the (database?)
>> server.
>>
>> - When attempting to connect with an identity file, I first get
>> prompted for a password anyway, then if I just hit return on that
>> dialogue, I get a message telling me that identity file auth failed
>> (followed by the same "empty" error message).
>
>
>    Fixed in the updated patch. Attached is the updated patch.

I'm still prompted for the password - though, on further investigation
it appears it's prompting me for the pass phrase for the key, *not*
the password. So I guess we need to change the message in this case.



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:


On Wed, Oct 31, 2012 at 10:30 PM, Dave Page <dpage@pgadmin.org> wrote:
Hi

On Tue, Oct 23, 2012 at 12:33 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>    Here the problem is we don't have an entry in the "pgpass" file for the
> localip:port pair(one end of the SSH tunnel). At the first attempt to
> connect
>    to server it looks for the pgpass entry If stored password is checked, in
> this case user will find the error message. In the second attempt it first
>    prompted for the database password which will be store in the variable
> and in this case user will not bet any error and then for the subsequent
>    attempts it uses the password which is stored in the variable. If we
> restart pgAdmin, again the same problem will occur.

OK, I'm still seeing the issue here. When I first try to connect it
always seems to fail to prompt me for a password and then gives an
error. I think the solution is to simply always ask for the password,
if the server requests it.

  As I understand you correctly, we will always prompt for the database password and SSH Tunneling password/pass-phrase if SSH tunneling is on and even if
  store password is set to true??  

>> - If I attempt to connect via SSH Tunnel, but cancel when I'm prompted
>> for a password, the connection attempt proceeds anyway, then fails
>> first with a valid error message about password auth failing, then
>> with an "empty" error message about connecting to the (database?)
>> server.
>>
>> - When attempting to connect with an identity file, I first get
>> prompted for a password anyway, then if I just hit return on that
>> dialogue, I get a message telling me that identity file auth failed
>> (followed by the same "empty" error message).
>
>
>    Fixed in the updated patch. Attached is the updated patch.

I'm still prompted for the password - though, on further investigation
it appears it's prompting me for the pass phrase for the key, *not*
the password. So I guess we need to change the message in this case.

  Ok Will fix it. 



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
On Thu, Nov 1, 2012 at 11:38 AM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>
> On Wed, Oct 31, 2012 at 10:30 PM, Dave Page <dpage@pgadmin.org> wrote:
>>
>> Hi
>>
>> On Tue, Oct 23, 2012 at 12:33 PM, Akshay Joshi
>> <akshay.joshi@enterprisedb.com> wrote:
>> >
>> >    Here the problem is we don't have an entry in the "pgpass" file for
>> > the
>> > localip:port pair(one end of the SSH tunnel). At the first attempt to
>> > connect
>> >    to server it looks for the pgpass entry If stored password is
>> > checked, in
>> > this case user will find the error message. In the second attempt it
>> > first
>> >    prompted for the database password which will be store in the
>> > variable
>> > and in this case user will not bet any error and then for the subsequent
>> >    attempts it uses the password which is stored in the variable. If we
>> > restart pgAdmin, again the same problem will occur.
>>
>> OK, I'm still seeing the issue here. When I first try to connect it
>> always seems to fail to prompt me for a password and then gives an
>> error. I think the solution is to simply always ask for the password,
>> if the server requests it.
>
>
>   As I understand you correctly, we will always prompt for the database
> password and SSH Tunneling password/pass-phrase if SSH tunneling is on and
> even if
>   store password is set to true??

That's what I'm thinking - unless you have another solution that would
fix the issue and allow the password to be stored (I know we did talk
about adding temp entries to the file a while back)?

If we're going to ignore saved passwords though, we probably need to
warn the user when they enable tunnelling (a message box if the option
is checked perhaps, and then un-check it).

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:


On Thu, Nov 1, 2012 at 5:11 PM, Dave Page <dpage@pgadmin.org> wrote:
On Thu, Nov 1, 2012 at 11:38 AM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>
> On Wed, Oct 31, 2012 at 10:30 PM, Dave Page <dpage@pgadmin.org> wrote:
>>
>> Hi
>>
>> On Tue, Oct 23, 2012 at 12:33 PM, Akshay Joshi
>> <akshay.joshi@enterprisedb.com> wrote:
>> >
>> >    Here the problem is we don't have an entry in the "pgpass" file for
>> > the
>> > localip:port pair(one end of the SSH tunnel). At the first attempt to
>> > connect
>> >    to server it looks for the pgpass entry If stored password is
>> > checked, in
>> > this case user will find the error message. In the second attempt it
>> > first
>> >    prompted for the database password which will be store in the
>> > variable
>> > and in this case user will not bet any error and then for the subsequent
>> >    attempts it uses the password which is stored in the variable. If we
>> > restart pgAdmin, again the same problem will occur.
>>
>> OK, I'm still seeing the issue here. When I first try to connect it
>> always seems to fail to prompt me for a password and then gives an
>> error. I think the solution is to simply always ask for the password,
>> if the server requests it.
>
>
>   As I understand you correctly, we will always prompt for the database
> password and SSH Tunneling password/pass-phrase if SSH tunneling is on and
> even if
>   store password is set to true??

That's what I'm thinking - unless you have another solution that would
fix the issue and allow the password to be stored (I know we did talk
about adding temp entries to the file a while back)?

If we're going to ignore saved passwords though, we probably need to
warn the user when they enable tunnelling (a message box if the option
is checked perhaps, and then un-check it).

  Fixed. Attached is the new patch. 

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Attachment

Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
Hi

On Fri, Nov 2, 2012 at 1:16 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>> If we're going to ignore saved passwords though, we probably need to
>> warn the user when they enable tunnelling (a message box if the option
>> is checked perhaps, and then un-check it).
>
>
>   Fixed. Attached is the new patch.

OK, that's looking much better. I've updated the patch to fix a merge
issue and tweak a message - please find the attached.

I have been seeing a crash during connection though. It was working in
my initial three or four tests, but now it seems to crash nearly every
time :-(. I'm using an identity file with a pass phrase, to connect to
a server inside our network (you can probably guess which one, but
that's not for public consumption :-p). The initial connection works,
and it seems to get halfway through restoring the environment (so it's
obviously connected to the server and run some queries), then I get
the crash below.

In trying to reproduce it, I've also seen "SSL SYSCALL error: EOF
detected" at what looks like the same point, on one occasion.

Process:         pgadmin3 [53513]
Path:            /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
Identifier:      pgadmin3
Version:         0
Code Type:       X86 (Native)
Parent Process:  launchd [228]
User ID:         501

Date/Time:       2012-11-02 16:28:07.061 +0000
OS Version:      Mac OS X 10.8.2 (12C60)
Report Version:  10

Interval Since Last Report:          586084 sec
Crashes Since Last Report:           38
Per-App Crashes Since Last Report:   8
Anonymous UUID:                      627C9BF8-3515-D883-1FBE-1FE4EB9B0BA0

Crashed Thread:  4

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
*** error for object 0x7bd04000: pointer being freed was not allocated


Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib         0x957a0d2e __poll + 10
1   libpq.5.dylib                 0x0176674b pqSocketCheck + 347
2   libpq.5.dylib                 0x017668a9 pqWait + 41
3   libpq.5.dylib                 0x01765e64 PQgetResult + 180
4   libpq.5.dylib                 0x0176634b PQexecFinish + 155
5   pgAdmin3-Debug                 0x000c5000
pgConn::ExecuteSet(wxString const&) + 230
6   pgAdmin3-Debug                 0x0041a374
pgDatabase::ExecuteSet(wxString const&) + 70
7   pgAdmin3-Debug                 0x004d90d9
pgTableFactory::CreateObjects(pgCollection*, ctlTree*, wxString
const&) + 7195
8   pgAdmin3-Debug                 0x005ac3b7
pgaCollectionFactory::CreateObjects(pgCollection*, ctlTree*, wxString
const&) + 47
9   pgAdmin3-Debug                 0x003f7f43
pgCollection::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
ctlSQLBox*) + 143
10  pgAdmin3-Debug                 0x000b3427
ctlTree::AppendObject(pgObject*, pgObject*) + 259
11  pgAdmin3-Debug                 0x000b355b
ctlTree::AppendCollection(pgObject*, pgaFactory&) + 47
12  pgAdmin3-Debug                 0x0049af21
pgSchemaBase::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
ctlSQLBox*) + 4371
13  pgAdmin3-Debug                 0x00474858
pgObject::ShowTree(frmMain*, ctlTree*, ctlListView*, ctlSQLBox*) + 588
14  pgAdmin3-Debug                 0x0026bfde
frmMain::setDisplay(pgObject*, ctlListView*, ctlSQLBox*) + 60
15  pgAdmin3-Debug                 0x0026cdb6
frmMain::execSelChange(wxTreeItemId, bool) + 1158
16  pgAdmin3-Debug                 0x00269a33
frmMain::OnTreeSelChanged(wxTreeEvent&) + 61
17  libwx_base_carbonu-2.8.0.dylib 0x0149d130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
18  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
19  libwx_base_carbonu-2.8.0.dylib 0x0151f371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
20  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
21  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
22  libwx_macu_core-2.8.0.dylib   0x011a1eea
wxWindowBase::TryParent(wxEvent&) + 66
23  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
wxEvtHandler::ProcessEvent(wxEvent&) + 237
24  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
25  libwx_macu_core-2.8.0.dylib   0x011c958c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
26  libwx_macu_core-2.8.0.dylib   0x011d73d7
wxGenericTreeCtrl::DoSelectItem(wxTreeItemId const&, bool, bool) + 743
27  libwx_macu_core-2.8.0.dylib   0x011d7485
wxGenericTreeCtrl::SelectItem(wxTreeItemId const&, bool) + 95
28  pgAdmin3-Debug                 0x002bce34
frmMain::ReconnectServer(pgServer*, bool) + 1018
29  pgAdmin3-Debug                 0x00269b7c
frmMain::OnSelActivated(wxTreeEvent&) + 126
30  libwx_base_carbonu-2.8.0.dylib 0x0149d130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
31  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
32  libwx_base_carbonu-2.8.0.dylib 0x0151f371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
33  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
34  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
35  libwx_macu_core-2.8.0.dylib   0x011a1eea
wxWindowBase::TryParent(wxEvent&) + 66
36  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
wxEvtHandler::ProcessEvent(wxEvent&) + 237
37  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
38  libwx_macu_core-2.8.0.dylib   0x011c958c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
39  libwx_macu_core-2.8.0.dylib   0x011d35e0
wxGenericTreeCtrl::OnMouse(wxMouseEvent&) + 3078
40  libwx_base_carbonu-2.8.0.dylib 0x0149d130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
41  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
42  libwx_base_carbonu-2.8.0.dylib 0x0151f371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
43  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
44  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
45  libwx_macu_core-2.8.0.dylib   0x011c958c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
46  libwx_macu_core-2.8.0.dylib   0x010f3f36
wxMacTopLevelMouseEventHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 1286
47  libwx_macu_core-2.8.0.dylib   0x010f1108
wxMacTopLevelEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*) + 4344
48  com.apple.HIToolbox           0x99a8cb6b
_InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) +
36
49  com.apple.HIToolbox           0x99914594
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 1343
50  com.apple.HIToolbox           0x99913980
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 430
51  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
52  com.apple.HIToolbox           0x999477b7
ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 2141
53  com.apple.HIToolbox           0x99914a3f
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 2538
54  com.apple.HIToolbox           0x99913980
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 430
55  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
56  libwx_macu_core-2.8.0.dylib   0x01093075
wxApp::MacHandleOneEvent(void*) + 41
57  libwx_macu_core-2.8.0.dylib   0x01093168 wxApp::MacDoOneEvent() + 144
58  libwx_macu_core-2.8.0.dylib   0x010ac38e wxEventLoop::Dispatch() + 32
59  libwx_macu_core-2.8.0.dylib   0x0114ce45 wxEventLoopManual::Run() + 131
60  libwx_macu_core-2.8.0.dylib   0x011264eb wxAppBase::MainLoop() + 67
61  libwx_base_carbonu-2.8.0.dylib 0x014d2dae wxEntry(int&, wchar_t**) + 110
62  libwx_base_carbonu-2.8.0.dylib 0x014d2e62 wxEntry(int&, char**) + 50
63  pgAdmin3-Debug                 0x0007460e main + 30
64  libdyld.dylib                 0x91bb2725 start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib         0x957a09ae kevent + 10
1   libdispatch.dylib             0x91b9ec71 _dispatch_mgr_invoke + 993
2   libdispatch.dylib             0x91b9e7a9 _dispatch_mgr_thread + 53

Thread 2:
0   libsystem_kernel.dylib         0x9579ee9a __accept + 10
1   pgAdmin3-Debug                 0x005c8926 CSSHTunnelThread::Entry() + 136
2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
wxThreadInternal::MacThreadStart(void*) + 155
3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
5   libsystem_c.dylib             0x97828cee thread_start + 34

Thread 3:
0   libsystem_kernel.dylib         0x9579fbe6 __select + 10
1   pgAdmin3-Debug                 0x005c91c0 CSubThread::Entry() + 1008
2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
wxThreadInternal::MacThreadStart(void*) + 155
3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
5   libsystem_c.dylib             0x97828cee thread_start + 34

Thread 4 Crashed:
0   libsystem_kernel.dylib         0x9579fa6a __pthread_kill + 10
1   libsystem_c.dylib             0x9783facf pthread_kill + 101
2   libsystem_c.dylib             0x978764f8 abort + 168
3   libsystem_c.dylib             0x97858da3 free + 428
4   pgAdmin3-Debug                 0x005cd105 _libssh2_channel_read + 373
5   pgAdmin3-Debug                 0x005cd21a libssh2_channel_read_ex + 154
6   pgAdmin3-Debug                 0x005c90c8 CSubThread::Entry() + 760
7   libwx_base_carbonu-2.8.0.dylib 0x015159e7
wxThreadInternal::MacThreadStart(void*) + 155
8   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
9   libsystem_c.dylib             0x9783e557 _pthread_start + 344
10  libsystem_c.dylib             0x97828cee thread_start + 34

Thread 4 crashed with X86 Thread State (32-bit):
  eax: 0x00000000  ebx: 0x00000004  ecx: 0xb0201d5c  edx: 0x9579fa6a
  edi: 0xb0207000  esi: 0x00000006  ebp: 0xb0201d78  esp: 0xb0201d5c
   ss: 0x00000023  efl: 0x00000206  eip: 0x9579fa6a   cs: 0x0000000b
   ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
  cr2: 0x031bd000
Logical CPU: 0

Binary Images:
   0x5c000 -   0x8c7ff7 +pgAdmin3-Debug (0)
<F369D1D7-3C67-3C59-956C-E7D9D5A4DC3C>
/Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
  0xbdd000 -   0xc8fff3 +libwx_macu_stc-2.8.0.dylib (9)
<9FA0E41A-986E-3566-9EE2-6E36770591AA>
/usr/local/lib/libwx_macu_stc-2.8.0.dylib
  0xcc9000 -   0xd7affb +libwx_macu_richtext-2.8.0.dylib (9)
<2864E8E2-BCFE-3714-8CEE-A2D39952B9DA>
/usr/local/lib/libwx_macu_richtext-2.8.0.dylib
  0xdcf000 -   0xe15ff3 +libwx_macu_aui-2.8.0.dylib (9)
<55917725-2CBA-3CB5-A5C6-523636675B5C>
/usr/local/lib/libwx_macu_aui-2.8.0.dylib
  0xe3f000 -   0xea3ffb +libwx_macu_xrc-2.8.0.dylib (9)
<A75611FF-93EC-3DFD-A431-AB84F95903D9>
/usr/local/lib/libwx_macu_xrc-2.8.0.dylib
  0xed9000 -   0xee9ffb +libwx_macu_qa-2.8.0.dylib (9)
<59AECB8D-B37B-3179-B510-F08F4A459D76>
/usr/local/lib/libwx_macu_qa-2.8.0.dylib
  0xefd000 -   0xf62ff7 +libwx_macu_html-2.8.0.dylib (9)
<AF1472F1-D5C3-3631-9D98-B77EBEF4DC0F>
/usr/local/lib/libwx_macu_html-2.8.0.dylib
  0xfa8000 -  0x1021ff7 +libwx_macu_adv-2.8.0.dylib (9)
<09C8FC76-01BD-36A4-950D-8A4806273396>
/usr/local/lib/libwx_macu_adv-2.8.0.dylib
 0x107b000 -  0x12fcff3 +libwx_macu_core-2.8.0.dylib (9)
<9D13B673-05DE-3F72-96A7-0185395CFC31>
/usr/local/lib/libwx_macu_core-2.8.0.dylib
 0x1455000 -  0x145eff3 +libwx_base_carbonu_xml-2.8.0.dylib (9)
<E947A667-B081-3837-8D28-CE975268D606>
/usr/local/lib/libwx_base_carbonu_xml-2.8.0.dylib
 0x1464000 -  0x1482ff7 +libwx_base_carbonu_net-2.8.0.dylib (9)
<3052FB55-C0B6-340C-8E27-63F976E6B485>
/usr/local/lib/libwx_base_carbonu_net-2.8.0.dylib
 0x1498000 -  0x157dfef +libwx_base_carbonu-2.8.0.dylib (9)
<56AB58B3-7B68-374C-B132-9ADB93F1660B>
/usr/local/lib/libwx_base_carbonu-2.8.0.dylib
 0x15e6000 -  0x16fefef +libxml2.2.dylib (10.8)
<CA025D0B-A10C-32E5-9A2F-75EF0173B60E> /usr/local/lib/libxml2.2.dylib
 0x1725000 -  0x1752ff7 +libxslt.1.dylib (3.26)
<7B167347-7009-3315-9D84-E41393F487DB> /usr/local/lib/libxslt.1.dylib
 0x175c000 -  0x1776ff7 +libpq.5.dylib (5.4)
<05AE305F-E3CB-3CEE-9498-6C59F302A2C9>
/usr/local/pgsql/lib/libpq.5.dylib
 0x1780000 -  0x189eff3  com.apple.WebKit (8536 - 8536.26.14)
<C98F734D-D579-3F89-9A58-9EE890B1748E>
/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
 0x1950000 -  0x25dfff3  com.apple.WebCore (8536 - 8536.26.14)
<82E97E6B-3F31-39A7-B41F-CD308E6EF238>
/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
 0x2d62000 -  0x2d78ffc  libexpat.1.dylib (12)
<D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
 0x2dcf000 -  0x2e8dff3  ColorSyncDeprecated.dylib (400)
<35E3054C-5DF1-30D4-A368-C4FDB0992373>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
 0x2ee1000 -  0x2ee2ffd  com.apple.textencoding.unicode (2.5 - 2.5)
<4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2>
/System/Library/TextEncodings/Unicode
Encodings.bundle/Contents/MacOS/Unicode Encodings
 0x304a000 -  0x3057ff3  com.apple.Librarian (1.1 - 1)
<88A55A5E-40FF-3234-8394-2317120B79AB>
/System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
 0x31a2000 -  0x31a3ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1)
<098CE576-3239-3B41-9141-A5BE6E476C84>

/System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/DictationServicesCore.framework/DictationServicesCore
 0x31b1000 -  0x31b5fff  com.apple.CommonCocoaPanels (4.0 - 16)
<7676B15F-69E2-39D2-9F35-9D2959A99079>
/System/Library/CoreServices/CommonCocoaPanels.bundle/Contents/MacOS/CommonCocoaPanels
0x8fe5b000 - 0x8fe8de57  dyld (210.2.3)
<23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
0x90007000 - 0x90008fff  libquarantine.dylib (52)
<D526310F-DC77-37EA-8F5F-83928EFA3262>
/usr/lib/system/libquarantine.dylib
0x90038000 - 0x90064ff7  libsystem_info.dylib (406.17)
<AA5611DB-A944-3072-B6BE-ACAB08689547>
/usr/lib/system/libsystem_info.dylib
0x90065000 - 0x90068ff9  libCGXType.A.dylib (324.6)
<3004616B-51F6-3B9D-8B85-DCCA3DF9BC10>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x90069000 - 0x901f2ff7  com.apple.vImage (6.0 - 6.0)
<1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x901f3000 - 0x90235ff7  libauto.dylib (185.1)
<B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
0x9034f000 - 0x9076cfff  FaceCoreLight (2.4.1)
<571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
/System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x9076d000 - 0x907ffffb  libvMisc.dylib (380.6)
<6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x90800000 - 0x90801fff  libDiagnosticMessagesClient.dylib (8)
<39B3D25A-148A-3936-B800-0D393A00E64F>
/usr/lib/libDiagnosticMessagesClient.dylib
0x90802000 - 0x90802fff  com.apple.ApplicationServices (45 - 45)
<677C4ACC-9D12-366F-8A87-B898AC806DD9>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x90803000 - 0x90805fff  libCVMSPluginSupport.dylib (8.6.1)
<8A174BD9-992E-351D-8F9A-DF6991723ABE>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x90843000 - 0x90843fff  com.apple.Accelerate.vecLib (3.8 - vecLib
3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x90844000 - 0x9089bff7  com.apple.ScalableUserInterface (1.0 - 1)
<2B5E454B-BC49-3E85-B54D-1950397C448C>

/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x9089c000 - 0x90916ff7  com.apple.securityfoundation (6.0 - 55115.4)
<A959B2F5-9D9D-3C93-A62A-7399594CF238>
/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x90917000 - 0x90917fff  libSystem.B.dylib (169.3)
<81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
0x90943000 - 0x909a0fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0)
<9549B81F-4425-34EE-802B-F462068DC0C5>
/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x909a1000 - 0x909bfff3  com.apple.openscripting (1.3.6 - 148.2)
<55738D66-CC15-3F43-9265-00C3322D39C4>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x909c0000 - 0x909e4fff  libJPEG.dylib (845)
<547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x909e5000 - 0x909effff  com.apple.speech.recognition.framework (4.1.5
- 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF>

/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x909f0000 - 0x90a10ffd  com.apple.ChunkingLibrary (2.0 - 133.2)
<FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E>
/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x90a89000 - 0x90b81ff9  libsqlite3.dylib (138.1)
<AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
0x90b82000 - 0x90b8dfff  libcommonCrypto.dylib (60026)
<A6C6EDB8-7E69-3827-81F3-9A74D0935461>
/usr/lib/system/libcommonCrypto.dylib
0x90b8e000 - 0x90b9affa  com.apple.CrashReporterSupport (10.8.2 - 415)
<BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21>
/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x90b9b000 - 0x90ba4ff9  com.apple.CommonAuth (3.0 - 2.0)
<A1A6CC3D-AA88-3519-A305-9B5D76C5D63B>
/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x90ba5000 - 0x90bb2fff  libGL.dylib (8.6.1)
<C7A3917A-C444-33CC-8599-BB9CD8C12BC4>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x90e21000 - 0x90e21fff  com.apple.Carbon (154 - 155)
<604ADD9D-5835-3294-842E-3A4AEBCCB548>
/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x90e22000 - 0x90e4bff7  libRIP.A.dylib (324.6)
<7976E6A2-A489-33F5-A727-7634DDE3B761>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x90e53000 - 0x90e59fff  libGFXShared.dylib (8.6.1)
<E32A7266-FCDD-352C-9C2A-8939265974AF>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x90e5a000 - 0x90ea8ffb  libFontRegistry.dylib (100)
<3B8350C2-4D8F-38C4-A22E-2F855D7E83D1>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x90ea9000 - 0x90f2eff7  com.apple.SearchKit (1.4.0 - 1.4.0)
<454E950F-291C-3E95-8F35-05CA0AD6B327>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x90f72000 - 0x90f9fffb  com.apple.CoreServicesInternal (154.2 -
154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x90fa2000 - 0x90fabffd  com.apple.audio.SoundManager (4.0 - 4.0)
<ABC5FE40-B222-36EB-9905-5C8C4BFD8C87>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x90fac000 - 0x912c9ff3  com.apple.Foundation (6.8 - 945.11)
<03B242AC-519C-3683-AA52-E73536B3D55F>
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x912ca000 - 0x9130cffb  com.apple.RemoteViewServices (2.0 - 80.5)
<60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9>
/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x9130d000 - 0x915b0ffb  com.apple.CoreImage (8.2.2 - 1.0.1)
<85BFFB09-D765-3F5F-AF65-FB136DDCAEF3>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x915b1000 - 0x91620ffb  com.apple.Heimdal (3.0 - 2.0)
<1ABF438B-30E6-3165-968C-E2EA1A9DF1FD>
/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x91621000 - 0x91678ff3  com.apple.HIServices (1.20 - 417)
<561A770B-8523-3D09-A763-11F872779A4C>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x91679000 - 0x91784ff7  libJP2.dylib (845)
<D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91785000 - 0x9178dfff  libcopyfile.dylib (89)
<4963541B-0254-371B-B29A-B6806888949B>
/usr/lib/system/libcopyfile.dylib
0x9178e000 - 0x917e7fff  com.apple.AE (645.3 - 645.3)
<6745659F-006D-3F25-94D6-DF944E9A01FD>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91885000 - 0x9191cff7  com.apple.ink.framework (10.8.2 - 150)
<D90FF7BC-6B90-39F1-AC52-670269947C58>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x9191d000 - 0x91b99ff7  com.apple.QuickTime (7.7.1 - 2599.13)
<FE609160-E1EF-341D-9B6A-205D3E03A4D2>
/System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x91b9a000 - 0x91bacff7  libdispatch.dylib (228.23)
<86EF7D45-2D97-3465-A449-95038AE5DABA>
/usr/lib/system/libdispatch.dylib
0x91bb0000 - 0x91bb2fff  libdyld.dylib (210.2.3)
<05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
0x91bb3000 - 0x91bc0ff7  com.apple.AppleFSCompression (49 - 1.0)
<166AA1F8-E50A-3533-A3B5-8737C5118CC3>
/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x91bc1000 - 0x91c06ff5  com.apple.opencl (2.1.20 - 2.1.20)
<41C4AE6E-67B6-33E2-A9B6-BF6F01580B16>
/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x91c51000 - 0x91c5bfff  libsystem_notify.dylib (98.5)
<7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
/usr/lib/system/libsystem_notify.dylib
0x91d6d000 - 0x91d74ff3  com.apple.NetFS (5.0 - 4.0)
<1F7041F2-4E97-368C-8F5D-24153D81BBDB>
/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x91d75000 - 0x91ddbfff  com.apple.print.framework.PrintCore (8.1 -
387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x91de6000 - 0x91dedffb  libunwind.dylib (35.1)
<E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
0x91e68000 - 0x91e76ff7  libz.1.dylib (43)
<245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
0x91e77000 - 0x91e78fff  libdnsinfo.dylib (453.18)
<41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F>
/usr/lib/system/libdnsinfo.dylib
0x91e79000 - 0x91e83ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
<9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x91ede000 - 0x91f8dff7  com.apple.CoreText (260.0 - 275.16)
<873ADCD9-D361-3753-A220-CDD289196AD8>
/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x91f8e000 - 0x91f8efff  com.apple.Accelerate (1.8 - Accelerate 1.8)
<4EC0548E-3A3F-310D-A366-47B51D5B6398>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91f8f000 - 0x91f90fff  libsystem_sandbox.dylib (220)
<4E42390B-25EC-3530-AF01-337E430C16EB>
/usr/lib/system/libsystem_sandbox.dylib
0x91f91000 - 0x91fd6ff7  com.apple.NavigationServices (3.7 - 200)
<F6531764-6E43-3AF3-ACDD-8A5551EF016A>

/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x91fd7000 - 0x91fd8fff  liblangid.dylib (116)
<E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
0x91fd9000 - 0x92071fff  com.apple.CoreServices.OSServices (557.4 -
557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x926ff000 - 0x92702ff7  com.apple.TCC (1.0 - 1)
<437D76CD-6437-3B55-BE2C-A53508858256>
/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x92861000 - 0x92876fff  com.apple.ImageCapture (8.0 - 8.0)
<B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x9290f000 - 0x9292cff7  libresolv.9.dylib (51)
<B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
0x9292d000 - 0x9292dfff  com.apple.CoreServices (57 - 57)
<956C6C6D-A5DD-314F-9C57-4A61D41F30CE>
/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x92d2e000 - 0x92d3eff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
<875363E7-6D02-3229-A9DD-E5A5568A7D61>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x92e16000 - 0x92e22ffe  libkxld.dylib (2050.18.24)
<48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
0x92e23000 - 0x93128ff7  com.apple.CoreServices.CarbonCore (1037.3 -
1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x93129000 - 0x93129fff  com.apple.vecLib (3.8 - vecLib 3.8)
<83160DD1-5614-3E34-80EB-97041016EF1F>
/System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x9312a000 - 0x93185fff  com.apple.htmlrendering (77 - 1.1.4)
<5C0C669F-AE07-3983-B38F-EB829B5CE609>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x93186000 - 0x931aafff  com.apple.PerformanceAnalysis (1.16 - 16)
<18DE0F9F-1264-394D-AC56-6B2A1771DFBE>
/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x931ab000 - 0x93220ff7  com.apple.ApplicationServices.ATS (332 -
341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x93221000 - 0x93224ff7  libcompiler_rt.dylib (30)
<CE5DBDB4-0124-3E2B-9105-989DF98DD108>
/usr/lib/system/libcompiler_rt.dylib
0x93225000 - 0x93287fff  libc++.1.dylib (65.1)
<C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
0x93288000 - 0x9333cfff  com.apple.coreui (2.0 - 181.1)
<C15ABF35-B7F5-34ED-A461-386DAF65D96B>
/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x9333d000 - 0x936f5ffa  libLAPACK.dylib (1073.4)
<9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x93702000 - 0x93702ffd  libOpenScriptingUtil.dylib (148.2)
<907E25B1-4F50-3461-B8D5-733C687EB534>
/usr/lib/libOpenScriptingUtil.dylib
0x93703000 - 0x9371cfff  com.apple.Kerberos (2.0 - 1)
<9BDE8F4D-DBC3-34D1-852C-898D3655A611>
/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x9394e000 - 0x93b0affd  libicucore.A.dylib (491.11.1)
<B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
0x93b3b000 - 0x93b3cfff  libremovefile.dylib (23.1)
<98622D14-DAAB-3AD8-A5D9-C322BF572A98>
/usr/lib/system/libremovefile.dylib
0x93cb4000 - 0x93d4efff  com.apple.CoreSymbolication (3.0 - 87)
<6A27BBE5-6EF0-3D5D-A485-2145826B9796>
/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x93d4f000 - 0x93d50ffd  com.apple.TrustEvaluationAgent (2.0 - 23)
<E42347C0-2D3C-36A4-9200-757FFA61B388>
/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x93d51000 - 0x93e3aff7  libxml2.2.dylib (22.3)
<015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
0x93e45000 - 0x93e45fff  com.apple.Cocoa (6.7 - 19)
<354094F0-F36B-36F9-BF5F-FD60590FBEB9>
/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x93e46000 - 0x93e52ff7  com.apple.NetAuth (4.0 - 4.0)
<4983C4B8-9D95-3C4D-897E-07743326487E>
/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x93e53000 - 0x93e86ff5  libssl.0.9.8.dylib (47)
<3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
0x93e87000 - 0x93eefff7  com.apple.framework.IOKit (2.0 - 755.18.10)
<9A80E97E-544F-3A45-916D-6DB7ED217E33>
/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x93f5c000 - 0x93fb6fff  com.apple.Symbolication (1.3 - 93)
<684ECF0D-D416-3DF8-8B5B-3902953853A8>
/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x9402a000 - 0x940caff7  com.apple.QD (3.42 - 285)
<1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x947d3000 - 0x9492bffb  com.apple.audio.toolbox.AudioToolbox (1.8 -
1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1>
/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9492c000 - 0x94930ffc  libGIF.dylib (845)
<714E9F0D-D7A3-3F58-B46E-FCBE0F144B23>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x94931000 - 0x94a2fff7  libFontParser.dylib (84.5)
<B3006327-7B2D-3966-A56A-BD85F1D71641>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x94a30000 - 0x94a37ffe  com.apple.agl (3.2.1 - AGL-3.2.1)
<8E0411D3-19F7-30E1-92A2-337F7F0EBCDA>
/System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x94a38000 - 0x94b29ffc  libiconv.2.dylib (34)
<B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
0x94b2a000 - 0x94b5bfff  com.apple.DictionaryServices (1.2 - 184.4)
<0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3>

/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x94b5c000 - 0x94b6fff9  com.apple.MultitouchSupport.framework (235.28
- 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A>
/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x94f59000 - 0x95170fff  com.apple.CoreData (106.1 - 407.7)
<17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x95171000 - 0x95172ffd  libunc.dylib (25)
<58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
0x954ec000 - 0x954efffc  libpam.2.dylib (20)
<FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
0x954f0000 - 0x954fefff  com.apple.opengl (1.8.6 - 1.8.6)
<1AD1AE7B-B57B-35B5-B571-32A34F0DA737>
/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x9578b000 - 0x957a5ffc  libsystem_kernel.dylib (2050.18.24)
<C17D49D0-7961-3B67-B443-C788C6E5AA76>
/usr/lib/system/libsystem_kernel.dylib
0x957a6000 - 0x957cbffb  com.apple.framework.familycontrols (4.1 -
410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1>
/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x95a66000 - 0x95a6affe  libcache.dylib (57)
<834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
0x95e0b000 - 0x95e0effd  libCoreVMClient.dylib (24.4)
<C54E8FD0-61EC-3DC8-8631-54288AC66AC8>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x95e0f000 - 0x95f5cffb  com.apple.CFNetwork (596.2.3 - 596.2.3)
<1221EF86-659B-3136-AB57-0CC6B130CDA2>
/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x95f5d000 - 0x95f69ff8  libbz2.1.0.dylib (29)
<7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
0x95f6a000 - 0x96077ff3  com.apple.ImageIO.framework (3.2.0 - 845)
<BF959BCB-C30A-3680-B7C2-91B327B2B63B>
/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x96078000 - 0x960c6ff3  com.apple.SystemConfiguration (1.12.2 -
1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988>
/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x960cc000 - 0x960d0fff  com.apple.IOSurface (86.0.3 - 86.0.3)
<E3A4DB0A-1C1A-31E3-A550-5C0E1C874509>
/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x960d1000 - 0x96135fff  com.apple.datadetectorscore (4.0 - 269.1)
<4D155F09-1A60-325A-BCAC-1B858C2C051B>
/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x96136000 - 0x962aeff5  com.apple.QuartzCore (1.8 - 304.0)
<0B0EC55A-9084-3E28-9A84-1813CE3FAA9B>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x962af000 - 0x962bdfff  libxar.1.dylib (105)
<343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
0x962c2000 - 0x963cf057  libobjc.A.dylib (532.2)
<FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
0x963d0000 - 0x9644cffb  libType1Scaler.dylib (101.1)
<0D94D786-29F7-33DB-B64B-B264FA5EACD2>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
0x9644d000 - 0x96483ffb  com.apple.DebugSymbols (98 - 98)
<9A9ADA0A-E487-3C8F-9998-286EE04C235A>
/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x96484000 - 0x964a1fff  libCRFSuite.dylib (33)
<C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
0x964a2000 - 0x964e3ff7  libcups.2.dylib (327)
<F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
0x964e4000 - 0x966ccff3  com.apple.CoreFoundation (6.8 - 744.12)
<E939CEA0-493C-3233-9983-5070981BB350>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x966cd000 - 0x967e9ff7  com.apple.desktopservices (1.7.2 - 1.7.2)
<8E74D101-8398-34F1-A463-B4950680A597>
/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x968df000 - 0x969c0fff  libcrypto.0.9.8.dylib (47)
<D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
0x969c1000 - 0x96a3dff3  com.apple.Metadata (10.7.0 - 707.3)
<6B6A6216-23D0-34CE-8099-BEE9BA42501E>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x96a3e000 - 0x96a46fff  com.apple.DiskArbitration (2.5.1 - 2.5.1)
<25A7232F-9B6A-3746-A3A8-12479D086B1E>
/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x96a4b000 - 0x96a4efff  com.apple.help (1.3.2 - 42)
<AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x96a4f000 - 0x96a4fffd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
<4C13DEA2-1EB0-3D06-901A-DB93184C06F0>
/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x97789000 - 0x977bcff3  com.apple.GSS (3.0 - 2.0)
<B1D719C1-B000-3BE3-B747-329D608585DD>
/System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x977bd000 - 0x977c4fff  liblaunch.dylib (442.26.2)
<310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
0x97828000 - 0x978e5feb  libsystem_c.dylib (825.25)
<B1F6916A-F558-38B5-A18C-D9733625FDC9>
/usr/lib/system/libsystem_c.dylib
0x978e6000 - 0x978eafff  com.apple.CommonPanels (1.2.5 - 94)
<6B3E7E53-7708-3DA2-8C50-59C2B4735DE1>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x978eb000 - 0x984a7ffb  com.apple.AppKit (6.8 - 1187.34)
<06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x984a8000 - 0x984acff7  libmacho.dylib (829)
<5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
0x984ad000 - 0x988effff  com.apple.CoreGraphics (1.600.0 - 324.6)
<66556166-F9A7-3EEC-A562-46061C7A79E4>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x988f0000 - 0x98906fff  com.apple.CFOpenDirectory (10.8 - 151.10)
<56C3F276-BD1F-3031-8CF9-8F4F481A534E>

/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x98907000 - 0x98915ff3  libsystem_network.dylib (77.10)
<7FBF5A15-97BA-3721-943E-E77F0C40DBE1>
/usr/lib/system/libsystem_network.dylib
0x98916000 - 0x9893bff7  com.apple.CoreVideo (1.8 - 99.3)
<5B872AC0-E82D-3475-A3F9-FD95F380560D>
/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x989da000 - 0x989e2fff  com.apple.CommerceCore (1.0 - 26)
<AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5>

/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x989e3000 - 0x98aa1ff3  com.apple.ColorSync (4.8.0 - 4.8.0)
<EFEDCB37-4F20-3CEC-A185-5D2976E11BAC>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x98aa2000 - 0x98aa2fff  libkeymgr.dylib (25)
<D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
0x98aa3000 - 0x98b0bfe7  libvDSP.dylib (380.6)
<55780308-4DCA-3B10-9703-EAFC3E13A3FA>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x98bd6000 - 0x98be0fff  libCSync.A.dylib (324.6)
<D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x98be1000 - 0x98c45ff3  libstdc++.6.dylib (56)
<F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
0x98c51000 - 0x98c70ff3  com.apple.Ubiquity (1.2 - 243.10)
<D2C9F356-1681-31D2-B292-5227E2DDEB0B>
/System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x98c71000 - 0x98c78fff  libsystem_dnssd.dylib (379.32.1)
<6A505284-2382-3F27-B96F-15FFDACF004E>
/usr/lib/system/libsystem_dnssd.dylib
0x98c79000 - 0x98caefff  libTrueTypeScaler.dylib (84.5)
<2598F930-5E6B-37D7-B1E6-18181A972C6E>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x98cc0000 - 0x98cfbfe7  libGLImage.dylib (8.6.1)
<A3442557-18D5-332E-8859-423D5A20EBBE>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x98cfc000 - 0x98d13fff  com.apple.GenerationalStorage (1.1 - 132.2)
<93694E0D-35D3-3633-976E-F354CBD92F54>
/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x98d14000 - 0x98d16ffb  libRadiance.dylib (845)
<3F87840F-217D-3074-A29D-919BAAED2F4A>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x98d17000 - 0x98debfff  com.apple.backup.framework (1.4.1 - 1.4.1)
<55F2A679-9B21-3F43-A580-4C2ECF6A5FC5>
/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x98dec000 - 0x98df0fff  com.apple.OpenDirectory (10.8 - 151.10)
<A1858D81-086F-3BF5-87E3-9B70409FFDF6>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x98f26000 - 0x98f72fff  libcorecrypto.dylib (106.2)
<20EBADBA-D6D6-36F0-AE80-168E9AF13DB6>
/usr/lib/system/libcorecrypto.dylib
0x98fdd000 - 0x99087fff  com.apple.LaunchServices (539.7 - 539.7)
<AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>

/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x99097000 - 0x990dbfff  libGLU.dylib (8.6.1)
<06BAFDCA-800C-35E3-B1A3-F05E105B86AB>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x990dc000 - 0x990f1fff  com.apple.speech.synthesis.framework (4.1.12
- 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x990f2000 - 0x9910eff7  libPng.dylib (845)
<14C43094-C670-3575-BF9B-3A967E05EAC0>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x9910f000 - 0x993cffff  com.apple.security (7.0 - 55179.1)
<CB470E48-621B-34D9-9E78-8B773358CB6B>
/System/Library/Frameworks/Security.framework/Versions/A/Security
0x993d0000 - 0x9941fff6  libTIFF.dylib (845)
<989A2EB9-3A49-3157-8E9C-B16E6005BC64>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x99420000 - 0x99420fff  libsystem_blocks.dylib (59)
<3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
/usr/lib/system/libsystem_blocks.dylib
0x9943b000 - 0x99468ffe  libsystem_m.dylib (3022.6)
<9975D9C3-3B71-38E3-AA21-C5C5F9D9C431>
/usr/lib/system/libsystem_m.dylib
0x994ba000 - 0x994d7fff  libxpc.dylib (140.41)
<1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
0x994d8000 - 0x99613ff7  libBLAS.dylib (1073.4)
<FF74A147-05E1-37C4-BC10-7DEB57FE5326>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9963a000 - 0x99663fff  libxslt.1.dylib (11.3)
<0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
0x99664000 - 0x998bcff1  com.apple.JavaScriptCore (8536 - 8536.26.7)
<75629E05-65FE-3699-8CDC-80C95015CF42>
/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x998bd000 - 0x998dffff  libc++abi.dylib (24.4)
<06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
0x998e0000 - 0x99cc3ff3  com.apple.HIToolbox (2.0 - 625)
<5A312E41-9940-363E-B891-90C4672E6850>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x99cc4000 - 0x99cd6fff  libbsm.0.dylib (32)
<DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
0x99cd7000 - 0x99cddfff  com.apple.print.framework.Print (8.0 - 258)
<12AEAD24-6924-3923-9E4A-C5D21231E639>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x99cde000 - 0x99ce0fff  com.apple.securityhi (4.0 - 55002)
<62E3AE75-61CB-341E-B2A0-CFC985A2BF7F>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x9a55e000 - 0x9a59dff7  com.apple.bom (12.0 - 192)
<0637E52C-D151-37B3-904F-8656B2FD44DD>
/System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 2
    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: 3456
    thread_create: 1
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=164.5M resident=135.0M(82%)
swapped_out_or_unallocated=29.4M(18%)
Writable regions: Total=120.5M written=9140K(7%) resident=23.7M(20%)
swapped_out=0K(0%) unallocated=96.8M(80%)

REGION TYPE                      VIRTUAL
===========                      =======
ATS (font support)                 32.9M
ATS (font support) (reserved)         4K        reserved VM address
space (unallocated)
CG backing stores                  9236K
CG shared images                   1216K
CoreServices                       3168K
MALLOC                             49.3M
MALLOC guard page                    48K
Memory tag=240                        4K
Memory tag=242                       12K
Memory tag=35                      7160K
Stack                              66.0M
VM_ALLOCATE                        16.5M
__DATA                             8108K
__DATA/__OBJC                       176K
__IMAGE                             528K
__LINKEDIT                         43.6M
__OBJC                             1704K
__OBJC/__DATA                        36K
__PAGEZERO                            4K
__TEXT                            120.8M
__UNICODE                           544K
mapped file                       119.5M
shared memory                       308K
===========                      =======
TOTAL                             480.3M
TOTAL, minus reserved VM space    480.3M

Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core
i7, 2.8 GHz, 8 GB, SMC 1.58f16
Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
0x31364A53533531323634485A2D3147314131
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
0x31364A53533531323634485A2D3147314131
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93),
Broadcom BCM43xx 1.0 (5.106.98.81.22)
Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming
serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: ST9500420ASG, 500.11 GB
Serial ATA Device: MATSHITADVD-R   UJ-898
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id,
0x0237, 0xfa120000 / 5
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218,
0xfa113000 / 7
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3




--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

Attachment

Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
Nope - just try connecting, disconnecting, connecting (lather, rinse,
repeat) and see what happens.

On Mon, Nov 5, 2012 at 12:11 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>
> On Fri, Nov 2, 2012 at 10:03 PM, Dave Page <dpage@pgadmin.org> wrote:
>>
>> Hi
>>
>> On Fri, Nov 2, 2012 at 1:16 PM, Akshay Joshi
>> <akshay.joshi@enterprisedb.com> wrote:
>> >
>> >> If we're going to ignore saved passwords though, we probably need to
>> >> warn the user when they enable tunnelling (a message box if the option
>> >> is checked perhaps, and then un-check it).
>> >
>> >
>> >   Fixed. Attached is the new patch.
>>
>> OK, that's looking much better. I've updated the patch to fix a merge
>> issue and tweak a message - please find the attached.
>
>
>    Attached is the complete patch with your changes.
>>
>>
>> I have been seeing a crash during connection though. It was working in
>> my initial three or four tests, but now it seems to crash nearly every
>> time :-(. I'm using an identity file with a pass phrase, to connect to
>> a server inside our network (you can probably guess which one, but
>> that's not for public consumption :-p). The initial connection works,
>> and it seems to get halfway through restoring the environment (so it's
>> obviously connected to the server and run some queries), then I get
>> the crash below.
>
>
>    I have not found any crash on my MAC machine. Is there any specific steps
> to reproduce it??.
>>
>>
>> In trying to reproduce it, I've also seen "SSL SYSCALL error: EOF
>> detected" at what looks like the same point, on one occasion.
>>
>> Process:         pgadmin3 [53513]
>> Path:
>> /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
>> Identifier:      pgadmin3
>> Version:         0
>> Code Type:       X86 (Native)
>> Parent Process:  launchd [228]
>> User ID:         501
>>
>> Date/Time:       2012-11-02 16:28:07.061 +0000
>> OS Version:      Mac OS X 10.8.2 (12C60)
>> Report Version:  10
>>
>> Interval Since Last Report:          586084 sec
>> Crashes Since Last Report:           38
>> Per-App Crashes Since Last Report:   8
>> Anonymous UUID:                      627C9BF8-3515-D883-1FBE-1FE4EB9B0BA0
>>
>> Crashed Thread:  4
>>
>> Exception Type:  EXC_CRASH (SIGABRT)
>> Exception Codes: 0x0000000000000000, 0x0000000000000000
>>
>> Application Specific Information:
>> *** error for object 0x7bd04000: pointer being freed was not allocated
>>
>>
>> Thread 0:: Dispatch queue: com.apple.main-thread
>> 0   libsystem_kernel.dylib         0x957a0d2e __poll + 10
>> 1   libpq.5.dylib                 0x0176674b pqSocketCheck + 347
>> 2   libpq.5.dylib                 0x017668a9 pqWait + 41
>> 3   libpq.5.dylib                 0x01765e64 PQgetResult + 180
>> 4   libpq.5.dylib                 0x0176634b PQexecFinish + 155
>> 5   pgAdmin3-Debug                 0x000c5000
>> pgConn::ExecuteSet(wxString const&) + 230
>> 6   pgAdmin3-Debug                 0x0041a374
>> pgDatabase::ExecuteSet(wxString const&) + 70
>> 7   pgAdmin3-Debug                 0x004d90d9
>> pgTableFactory::CreateObjects(pgCollection*, ctlTree*, wxString
>> const&) + 7195
>> 8   pgAdmin3-Debug                 0x005ac3b7
>> pgaCollectionFactory::CreateObjects(pgCollection*, ctlTree*, wxString
>> const&) + 47
>> 9   pgAdmin3-Debug                 0x003f7f43
>> pgCollection::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
>> ctlSQLBox*) + 143
>> 10  pgAdmin3-Debug                 0x000b3427
>> ctlTree::AppendObject(pgObject*, pgObject*) + 259
>> 11  pgAdmin3-Debug                 0x000b355b
>> ctlTree::AppendCollection(pgObject*, pgaFactory&) + 47
>> 12  pgAdmin3-Debug                 0x0049af21
>> pgSchemaBase::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
>> ctlSQLBox*) + 4371
>> 13  pgAdmin3-Debug                 0x00474858
>> pgObject::ShowTree(frmMain*, ctlTree*, ctlListView*, ctlSQLBox*) + 588
>> 14  pgAdmin3-Debug                 0x0026bfde
>> frmMain::setDisplay(pgObject*, ctlListView*, ctlSQLBox*) + 60
>> 15  pgAdmin3-Debug                 0x0026cdb6
>> frmMain::execSelChange(wxTreeItemId, bool) + 1158
>> 16  pgAdmin3-Debug                 0x00269a33
>> frmMain::OnTreeSelChanged(wxTreeEvent&) + 61
>> 17  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 18  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 19  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 20  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 21  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 22  libwx_macu_core-2.8.0.dylib   0x011a1eea
>> wxWindowBase::TryParent(wxEvent&) + 66
>> 23  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
>> wxEvtHandler::ProcessEvent(wxEvent&) + 237
>> 24  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 25  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 26  libwx_macu_core-2.8.0.dylib   0x011d73d7
>> wxGenericTreeCtrl::DoSelectItem(wxTreeItemId const&, bool, bool) + 743
>> 27  libwx_macu_core-2.8.0.dylib   0x011d7485
>> wxGenericTreeCtrl::SelectItem(wxTreeItemId const&, bool) + 95
>> 28  pgAdmin3-Debug                 0x002bce34
>> frmMain::ReconnectServer(pgServer*, bool) + 1018
>> 29  pgAdmin3-Debug                 0x00269b7c
>> frmMain::OnSelActivated(wxTreeEvent&) + 126
>> 30  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 31  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 32  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 33  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 34  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 35  libwx_macu_core-2.8.0.dylib   0x011a1eea
>> wxWindowBase::TryParent(wxEvent&) + 66
>> 36  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
>> wxEvtHandler::ProcessEvent(wxEvent&) + 237
>> 37  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 38  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 39  libwx_macu_core-2.8.0.dylib   0x011d35e0
>> wxGenericTreeCtrl::OnMouse(wxMouseEvent&) + 3078
>> 40  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 41  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 42  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 43  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 44  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 45  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 46  libwx_macu_core-2.8.0.dylib   0x010f3f36
>> wxMacTopLevelMouseEventHandler(OpaqueEventHandlerCallRef*,
>> OpaqueEventRef*, void*) + 1286
>> 47  libwx_macu_core-2.8.0.dylib   0x010f1108
>> wxMacTopLevelEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
>> void*) + 4344
>> 48  com.apple.HIToolbox           0x99a8cb6b
>> _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
>> void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) +
>> 36
>> 49  com.apple.HIToolbox           0x99914594
>> DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
>> HandlerCallRec*) + 1343
>> 50  com.apple.HIToolbox           0x99913980
>> SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
>> HandlerCallRec*) + 430
>> 51  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
>> 52  com.apple.HIToolbox           0x999477b7
>> ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*,
>> OpaqueEventRef*, void*) + 2141
>> 53  com.apple.HIToolbox           0x99914a3f
>> DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
>> HandlerCallRec*) + 2538
>> 54  com.apple.HIToolbox           0x99913980
>> SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
>> HandlerCallRec*) + 430
>> 55  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
>> 56  libwx_macu_core-2.8.0.dylib   0x01093075
>> wxApp::MacHandleOneEvent(void*) + 41
>> 57  libwx_macu_core-2.8.0.dylib   0x01093168 wxApp::MacDoOneEvent() + 144
>> 58  libwx_macu_core-2.8.0.dylib   0x010ac38e wxEventLoop::Dispatch() + 32
>> 59  libwx_macu_core-2.8.0.dylib   0x0114ce45 wxEventLoopManual::Run() +
>> 131
>> 60  libwx_macu_core-2.8.0.dylib   0x011264eb wxAppBase::MainLoop() + 67
>> 61  libwx_base_carbonu-2.8.0.dylib 0x014d2dae wxEntry(int&, wchar_t**) +
>> 110
>> 62  libwx_base_carbonu-2.8.0.dylib 0x014d2e62 wxEntry(int&, char**) + 50
>> 63  pgAdmin3-Debug                 0x0007460e main + 30
>> 64  libdyld.dylib                 0x91bb2725 start + 1
>>
>> Thread 1:: Dispatch queue: com.apple.libdispatch-manager
>> 0   libsystem_kernel.dylib         0x957a09ae kevent + 10
>> 1   libdispatch.dylib             0x91b9ec71 _dispatch_mgr_invoke + 993
>> 2   libdispatch.dylib             0x91b9e7a9 _dispatch_mgr_thread + 53
>>
>> Thread 2:
>> 0   libsystem_kernel.dylib         0x9579ee9a __accept + 10
>> 1   pgAdmin3-Debug                 0x005c8926 CSSHTunnelThread::Entry() +
>> 136
>> 2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 5   libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 3:
>> 0   libsystem_kernel.dylib         0x9579fbe6 __select + 10
>> 1   pgAdmin3-Debug                 0x005c91c0 CSubThread::Entry() + 1008
>> 2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 5   libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 4 Crashed:
>> 0   libsystem_kernel.dylib         0x9579fa6a __pthread_kill + 10
>> 1   libsystem_c.dylib             0x9783facf pthread_kill + 101
>> 2   libsystem_c.dylib             0x978764f8 abort + 168
>> 3   libsystem_c.dylib             0x97858da3 free + 428
>> 4   pgAdmin3-Debug                 0x005cd105 _libssh2_channel_read + 373
>> 5   pgAdmin3-Debug                 0x005cd21a libssh2_channel_read_ex +
>> 154
>> 6   pgAdmin3-Debug                 0x005c90c8 CSubThread::Entry() + 760
>> 7   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 8   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 9   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 10  libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 4 crashed with X86 Thread State (32-bit):
>>   eax: 0x00000000  ebx: 0x00000004  ecx: 0xb0201d5c  edx: 0x9579fa6a
>>   edi: 0xb0207000  esi: 0x00000006  ebp: 0xb0201d78  esp: 0xb0201d5c
>>    ss: 0x00000023  efl: 0x00000206  eip: 0x9579fa6a   cs: 0x0000000b
>>    ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
>>   cr2: 0x031bd000
>> Logical CPU: 0
>>
>> Binary Images:
>>    0x5c000 -   0x8c7ff7 +pgAdmin3-Debug (0)
>> <F369D1D7-3C67-3C59-956C-E7D9D5A4DC3C>
>> /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
>>   0xbdd000 -   0xc8fff3 +libwx_macu_stc-2.8.0.dylib (9)
>> <9FA0E41A-986E-3566-9EE2-6E36770591AA>
>> /usr/local/lib/libwx_macu_stc-2.8.0.dylib
>>   0xcc9000 -   0xd7affb +libwx_macu_richtext-2.8.0.dylib (9)
>> <2864E8E2-BCFE-3714-8CEE-A2D39952B9DA>
>> /usr/local/lib/libwx_macu_richtext-2.8.0.dylib
>>   0xdcf000 -   0xe15ff3 +libwx_macu_aui-2.8.0.dylib (9)
>> <55917725-2CBA-3CB5-A5C6-523636675B5C>
>> /usr/local/lib/libwx_macu_aui-2.8.0.dylib
>>   0xe3f000 -   0xea3ffb +libwx_macu_xrc-2.8.0.dylib (9)
>> <A75611FF-93EC-3DFD-A431-AB84F95903D9>
>> /usr/local/lib/libwx_macu_xrc-2.8.0.dylib
>>   0xed9000 -   0xee9ffb +libwx_macu_qa-2.8.0.dylib (9)
>> <59AECB8D-B37B-3179-B510-F08F4A459D76>
>> /usr/local/lib/libwx_macu_qa-2.8.0.dylib
>>   0xefd000 -   0xf62ff7 +libwx_macu_html-2.8.0.dylib (9)
>> <AF1472F1-D5C3-3631-9D98-B77EBEF4DC0F>
>> /usr/local/lib/libwx_macu_html-2.8.0.dylib
>>   0xfa8000 -  0x1021ff7 +libwx_macu_adv-2.8.0.dylib (9)
>> <09C8FC76-01BD-36A4-950D-8A4806273396>
>> /usr/local/lib/libwx_macu_adv-2.8.0.dylib
>>  0x107b000 -  0x12fcff3 +libwx_macu_core-2.8.0.dylib (9)
>> <9D13B673-05DE-3F72-96A7-0185395CFC31>
>> /usr/local/lib/libwx_macu_core-2.8.0.dylib
>>  0x1455000 -  0x145eff3 +libwx_base_carbonu_xml-2.8.0.dylib (9)
>> <E947A667-B081-3837-8D28-CE975268D606>
>> /usr/local/lib/libwx_base_carbonu_xml-2.8.0.dylib
>>  0x1464000 -  0x1482ff7 +libwx_base_carbonu_net-2.8.0.dylib (9)
>> <3052FB55-C0B6-340C-8E27-63F976E6B485>
>> /usr/local/lib/libwx_base_carbonu_net-2.8.0.dylib
>>  0x1498000 -  0x157dfef +libwx_base_carbonu-2.8.0.dylib (9)
>> <56AB58B3-7B68-374C-B132-9ADB93F1660B>
>> /usr/local/lib/libwx_base_carbonu-2.8.0.dylib
>>  0x15e6000 -  0x16fefef +libxml2.2.dylib (10.8)
>> <CA025D0B-A10C-32E5-9A2F-75EF0173B60E> /usr/local/lib/libxml2.2.dylib
>>  0x1725000 -  0x1752ff7 +libxslt.1.dylib (3.26)
>> <7B167347-7009-3315-9D84-E41393F487DB> /usr/local/lib/libxslt.1.dylib
>>  0x175c000 -  0x1776ff7 +libpq.5.dylib (5.4)
>> <05AE305F-E3CB-3CEE-9498-6C59F302A2C9>
>> /usr/local/pgsql/lib/libpq.5.dylib
>>  0x1780000 -  0x189eff3  com.apple.WebKit (8536 - 8536.26.14)
>> <C98F734D-D579-3F89-9A58-9EE890B1748E>
>> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
>>  0x1950000 -  0x25dfff3  com.apple.WebCore (8536 - 8536.26.14)
>> <82E97E6B-3F31-39A7-B41F-CD308E6EF238>
>>
>> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
>>  0x2d62000 -  0x2d78ffc  libexpat.1.dylib (12)
>> <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
>>  0x2dcf000 -  0x2e8dff3  ColorSyncDeprecated.dylib (400)
>> <35E3054C-5DF1-30D4-A368-C4FDB0992373>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
>>  0x2ee1000 -  0x2ee2ffd  com.apple.textencoding.unicode (2.5 - 2.5)
>> <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2>
>> /System/Library/TextEncodings/Unicode
>> Encodings.bundle/Contents/MacOS/Unicode Encodings
>>  0x304a000 -  0x3057ff3  com.apple.Librarian (1.1 - 1)
>> <88A55A5E-40FF-3234-8394-2317120B79AB>
>> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
>>  0x31a2000 -  0x31a3ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1)
>> <098CE576-3239-3B41-9141-A5BE6E476C84>
>>
>>
/System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/DictationServicesCore.framework/DictationServicesCore
>>  0x31b1000 -  0x31b5fff  com.apple.CommonCocoaPanels (4.0 - 16)
>> <7676B15F-69E2-39D2-9F35-9D2959A99079>
>>
>> /System/Library/CoreServices/CommonCocoaPanels.bundle/Contents/MacOS/CommonCocoaPanels
>> 0x8fe5b000 - 0x8fe8de57  dyld (210.2.3)
>> <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
>> 0x90007000 - 0x90008fff  libquarantine.dylib (52)
>> <D526310F-DC77-37EA-8F5F-83928EFA3262>
>> /usr/lib/system/libquarantine.dylib
>> 0x90038000 - 0x90064ff7  libsystem_info.dylib (406.17)
>> <AA5611DB-A944-3072-B6BE-ACAB08689547>
>> /usr/lib/system/libsystem_info.dylib
>> 0x90065000 - 0x90068ff9  libCGXType.A.dylib (324.6)
>> <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
>> 0x90069000 - 0x901f2ff7  com.apple.vImage (6.0 - 6.0)
>> <1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
>> 0x901f3000 - 0x90235ff7  libauto.dylib (185.1)
>> <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
>> 0x9034f000 - 0x9076cfff  FaceCoreLight (2.4.1)
>> <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
>>
>> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
>> 0x9076d000 - 0x907ffffb  libvMisc.dylib (380.6)
>> <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
>> 0x90800000 - 0x90801fff  libDiagnosticMessagesClient.dylib (8)
>> <39B3D25A-148A-3936-B800-0D393A00E64F>
>> /usr/lib/libDiagnosticMessagesClient.dylib
>> 0x90802000 - 0x90802fff  com.apple.ApplicationServices (45 - 45)
>> <677C4ACC-9D12-366F-8A87-B898AC806DD9>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
>> 0x90803000 - 0x90805fff  libCVMSPluginSupport.dylib (8.6.1)
>> <8A174BD9-992E-351D-8F9A-DF6991723ABE>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
>> 0x90843000 - 0x90843fff  com.apple.Accelerate.vecLib (3.8 - vecLib
>> 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
>> 0x90844000 - 0x9089bff7  com.apple.ScalableUserInterface (1.0 - 1)
>> <2B5E454B-BC49-3E85-B54D-1950397C448C>
>>
>>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
>> 0x9089c000 - 0x90916ff7  com.apple.securityfoundation (6.0 - 55115.4)
>> <A959B2F5-9D9D-3C93-A62A-7399594CF238>
>>
>> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
>> 0x90917000 - 0x90917fff  libSystem.B.dylib (169.3)
>> <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
>> 0x90943000 - 0x909a0fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0)
>> <9549B81F-4425-34EE-802B-F462068DC0C5>
>> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
>> 0x909a1000 - 0x909bfff3  com.apple.openscripting (1.3.6 - 148.2)
>> <55738D66-CC15-3F43-9265-00C3322D39C4>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
>> 0x909c0000 - 0x909e4fff  libJPEG.dylib (845)
>> <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
>> 0x909e5000 - 0x909effff  com.apple.speech.recognition.framework (4.1.5
>> - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF>
>>
>>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
>> 0x909f0000 - 0x90a10ffd  com.apple.ChunkingLibrary (2.0 - 133.2)
>> <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E>
>>
>> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
>> 0x90a89000 - 0x90b81ff9  libsqlite3.dylib (138.1)
>> <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
>> 0x90b82000 - 0x90b8dfff  libcommonCrypto.dylib (60026)
>> <A6C6EDB8-7E69-3827-81F3-9A74D0935461>
>> /usr/lib/system/libcommonCrypto.dylib
>> 0x90b8e000 - 0x90b9affa  com.apple.CrashReporterSupport (10.8.2 - 415)
>> <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21>
>>
>> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
>> 0x90b9b000 - 0x90ba4ff9  com.apple.CommonAuth (3.0 - 2.0)
>> <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B>
>>
>> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
>> 0x90ba5000 - 0x90bb2fff  libGL.dylib (8.6.1)
>> <C7A3917A-C444-33CC-8599-BB9CD8C12BC4>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
>> 0x90e21000 - 0x90e21fff  com.apple.Carbon (154 - 155)
>> <604ADD9D-5835-3294-842E-3A4AEBCCB548>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
>> 0x90e22000 - 0x90e4bff7  libRIP.A.dylib (324.6)
>> <7976E6A2-A489-33F5-A727-7634DDE3B761>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
>> 0x90e53000 - 0x90e59fff  libGFXShared.dylib (8.6.1)
>> <E32A7266-FCDD-352C-9C2A-8939265974AF>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
>> 0x90e5a000 - 0x90ea8ffb  libFontRegistry.dylib (100)
>> <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
>> 0x90ea9000 - 0x90f2eff7  com.apple.SearchKit (1.4.0 - 1.4.0)
>> <454E950F-291C-3E95-8F35-05CA0AD6B327>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
>> 0x90f72000 - 0x90f9fffb  com.apple.CoreServicesInternal (154.2 -
>> 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
>>
>> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
>> 0x90fa2000 - 0x90fabffd  com.apple.audio.SoundManager (4.0 - 4.0)
>> <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
>> 0x90fac000 - 0x912c9ff3  com.apple.Foundation (6.8 - 945.11)
>> <03B242AC-519C-3683-AA52-E73536B3D55F>
>> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
>> 0x912ca000 - 0x9130cffb  com.apple.RemoteViewServices (2.0 - 80.5)
>> <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9>
>>
>> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
>> 0x9130d000 - 0x915b0ffb  com.apple.CoreImage (8.2.2 - 1.0.1)
>> <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3>
>>
>> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
>> 0x915b1000 - 0x91620ffb  com.apple.Heimdal (3.0 - 2.0)
>> <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD>
>> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
>> 0x91621000 - 0x91678ff3  com.apple.HIServices (1.20 - 417)
>> <561A770B-8523-3D09-A763-11F872779A4C>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
>> 0x91679000 - 0x91784ff7  libJP2.dylib (845)
>> <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
>> 0x91785000 - 0x9178dfff  libcopyfile.dylib (89)
>> <4963541B-0254-371B-B29A-B6806888949B>
>> /usr/lib/system/libcopyfile.dylib
>> 0x9178e000 - 0x917e7fff  com.apple.AE (645.3 - 645.3)
>> <6745659F-006D-3F25-94D6-DF944E9A01FD>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
>> 0x91885000 - 0x9191cff7  com.apple.ink.framework (10.8.2 - 150)
>> <D90FF7BC-6B90-39F1-AC52-670269947C58>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
>> 0x9191d000 - 0x91b99ff7  com.apple.QuickTime (7.7.1 - 2599.13)
>> <FE609160-E1EF-341D-9B6A-205D3E03A4D2>
>> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
>> 0x91b9a000 - 0x91bacff7  libdispatch.dylib (228.23)
>> <86EF7D45-2D97-3465-A449-95038AE5DABA>
>> /usr/lib/system/libdispatch.dylib
>> 0x91bb0000 - 0x91bb2fff  libdyld.dylib (210.2.3)
>> <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
>> 0x91bb3000 - 0x91bc0ff7  com.apple.AppleFSCompression (49 - 1.0)
>> <166AA1F8-E50A-3533-A3B5-8737C5118CC3>
>>
>> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
>> 0x91bc1000 - 0x91c06ff5  com.apple.opencl (2.1.20 - 2.1.20)
>> <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16>
>> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
>> 0x91c51000 - 0x91c5bfff  libsystem_notify.dylib (98.5)
>> <7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
>> /usr/lib/system/libsystem_notify.dylib
>> 0x91d6d000 - 0x91d74ff3  com.apple.NetFS (5.0 - 4.0)
>> <1F7041F2-4E97-368C-8F5D-24153D81BBDB>
>> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
>> 0x91d75000 - 0x91ddbfff  com.apple.print.framework.PrintCore (8.1 -
>> 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
>> 0x91de6000 - 0x91dedffb  libunwind.dylib (35.1)
>> <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
>> 0x91e68000 - 0x91e76ff7  libz.1.dylib (43)
>> <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
>> 0x91e77000 - 0x91e78fff  libdnsinfo.dylib (453.18)
>> <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F>
>> /usr/lib/system/libdnsinfo.dylib
>> 0x91e79000 - 0x91e83ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
>> <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
>>
>> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
>> 0x91ede000 - 0x91f8dff7  com.apple.CoreText (260.0 - 275.16)
>> <873ADCD9-D361-3753-A220-CDD289196AD8>
>> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
>> 0x91f8e000 - 0x91f8efff  com.apple.Accelerate (1.8 - Accelerate 1.8)
>> <4EC0548E-3A3F-310D-A366-47B51D5B6398>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
>> 0x91f8f000 - 0x91f90fff  libsystem_sandbox.dylib (220)
>> <4E42390B-25EC-3530-AF01-337E430C16EB>
>> /usr/lib/system/libsystem_sandbox.dylib
>> 0x91f91000 - 0x91fd6ff7  com.apple.NavigationServices (3.7 - 200)
>> <F6531764-6E43-3AF3-ACDD-8A5551EF016A>
>>
>>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
>> 0x91fd7000 - 0x91fd8fff  liblangid.dylib (116)
>> <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
>> 0x91fd9000 - 0x92071fff  com.apple.CoreServices.OSServices (557.4 -
>> 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
>> 0x926ff000 - 0x92702ff7  com.apple.TCC (1.0 - 1)
>> <437D76CD-6437-3B55-BE2C-A53508858256>
>> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
>> 0x92861000 - 0x92876fff  com.apple.ImageCapture (8.0 - 8.0)
>> <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
>> 0x9290f000 - 0x9292cff7  libresolv.9.dylib (51)
>> <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
>> 0x9292d000 - 0x9292dfff  com.apple.CoreServices (57 - 57)
>> <956C6C6D-A5DD-314F-9C57-4A61D41F30CE>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
>> 0x92d2e000 - 0x92d3eff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
>> <875363E7-6D02-3229-A9DD-E5A5568A7D61>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
>> 0x92e16000 - 0x92e22ffe  libkxld.dylib (2050.18.24)
>> <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
>> 0x92e23000 - 0x93128ff7  com.apple.CoreServices.CarbonCore (1037.3 -
>> 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
>> 0x93129000 - 0x93129fff  com.apple.vecLib (3.8 - vecLib 3.8)
>> <83160DD1-5614-3E34-80EB-97041016EF1F>
>> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
>> 0x9312a000 - 0x93185fff  com.apple.htmlrendering (77 - 1.1.4)
>> <5C0C669F-AE07-3983-B38F-EB829B5CE609>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
>> 0x93186000 - 0x931aafff  com.apple.PerformanceAnalysis (1.16 - 16)
>> <18DE0F9F-1264-394D-AC56-6B2A1771DFBE>
>>
>> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
>> 0x931ab000 - 0x93220ff7  com.apple.ApplicationServices.ATS (332 -
>> 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
>> 0x93221000 - 0x93224ff7  libcompiler_rt.dylib (30)
>> <CE5DBDB4-0124-3E2B-9105-989DF98DD108>
>> /usr/lib/system/libcompiler_rt.dylib
>> 0x93225000 - 0x93287fff  libc++.1.dylib (65.1)
>> <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
>> 0x93288000 - 0x9333cfff  com.apple.coreui (2.0 - 181.1)
>> <C15ABF35-B7F5-34ED-A461-386DAF65D96B>
>> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
>> 0x9333d000 - 0x936f5ffa  libLAPACK.dylib (1073.4)
>> <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
>> 0x93702000 - 0x93702ffd  libOpenScriptingUtil.dylib (148.2)
>> <907E25B1-4F50-3461-B8D5-733C687EB534>
>> /usr/lib/libOpenScriptingUtil.dylib
>> 0x93703000 - 0x9371cfff  com.apple.Kerberos (2.0 - 1)
>> <9BDE8F4D-DBC3-34D1-852C-898D3655A611>
>> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
>> 0x9394e000 - 0x93b0affd  libicucore.A.dylib (491.11.1)
>> <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
>> 0x93b3b000 - 0x93b3cfff  libremovefile.dylib (23.1)
>> <98622D14-DAAB-3AD8-A5D9-C322BF572A98>
>> /usr/lib/system/libremovefile.dylib
>> 0x93cb4000 - 0x93d4efff  com.apple.CoreSymbolication (3.0 - 87)
>> <6A27BBE5-6EF0-3D5D-A485-2145826B9796>
>>
>> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
>> 0x93d4f000 - 0x93d50ffd  com.apple.TrustEvaluationAgent (2.0 - 23)
>> <E42347C0-2D3C-36A4-9200-757FFA61B388>
>>
>> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
>> 0x93d51000 - 0x93e3aff7  libxml2.2.dylib (22.3)
>> <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
>> 0x93e45000 - 0x93e45fff  com.apple.Cocoa (6.7 - 19)
>> <354094F0-F36B-36F9-BF5F-FD60590FBEB9>
>> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
>> 0x93e46000 - 0x93e52ff7  com.apple.NetAuth (4.0 - 4.0)
>> <4983C4B8-9D95-3C4D-897E-07743326487E>
>> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
>> 0x93e53000 - 0x93e86ff5  libssl.0.9.8.dylib (47)
>> <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
>> 0x93e87000 - 0x93eefff7  com.apple.framework.IOKit (2.0 - 755.18.10)
>> <9A80E97E-544F-3A45-916D-6DB7ED217E33>
>> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
>> 0x93f5c000 - 0x93fb6fff  com.apple.Symbolication (1.3 - 93)
>> <684ECF0D-D416-3DF8-8B5B-3902953853A8>
>>
>> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
>> 0x9402a000 - 0x940caff7  com.apple.QD (3.42 - 285)
>> <1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
>> 0x947d3000 - 0x9492bffb  com.apple.audio.toolbox.AudioToolbox (1.8 -
>> 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1>
>> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
>> 0x9492c000 - 0x94930ffc  libGIF.dylib (845)
>> <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
>> 0x94931000 - 0x94a2fff7  libFontParser.dylib (84.5)
>> <B3006327-7B2D-3966-A56A-BD85F1D71641>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
>> 0x94a30000 - 0x94a37ffe  com.apple.agl (3.2.1 - AGL-3.2.1)
>> <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA>
>> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
>> 0x94a38000 - 0x94b29ffc  libiconv.2.dylib (34)
>> <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
>> 0x94b2a000 - 0x94b5bfff  com.apple.DictionaryServices (1.2 - 184.4)
>> <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3>
>>
>>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
>> 0x94b5c000 - 0x94b6fff9  com.apple.MultitouchSupport.framework (235.28
>> - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A>
>>
>> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
>> 0x94f59000 - 0x95170fff  com.apple.CoreData (106.1 - 407.7)
>> <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
>> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
>> 0x95171000 - 0x95172ffd  libunc.dylib (25)
>> <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
>> 0x954ec000 - 0x954efffc  libpam.2.dylib (20)
>> <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
>> 0x954f0000 - 0x954fefff  com.apple.opengl (1.8.6 - 1.8.6)
>> <1AD1AE7B-B57B-35B5-B571-32A34F0DA737>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
>> 0x9578b000 - 0x957a5ffc  libsystem_kernel.dylib (2050.18.24)
>> <C17D49D0-7961-3B67-B443-C788C6E5AA76>
>> /usr/lib/system/libsystem_kernel.dylib
>> 0x957a6000 - 0x957cbffb  com.apple.framework.familycontrols (4.1 -
>> 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1>
>>
>> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
>> 0x95a66000 - 0x95a6affe  libcache.dylib (57)
>> <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
>> 0x95e0b000 - 0x95e0effd  libCoreVMClient.dylib (24.4)
>> <C54E8FD0-61EC-3DC8-8631-54288AC66AC8>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
>> 0x95e0f000 - 0x95f5cffb  com.apple.CFNetwork (596.2.3 - 596.2.3)
>> <1221EF86-659B-3136-AB57-0CC6B130CDA2>
>> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
>> 0x95f5d000 - 0x95f69ff8  libbz2.1.0.dylib (29)
>> <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
>> 0x95f6a000 - 0x96077ff3  com.apple.ImageIO.framework (3.2.0 - 845)
>> <BF959BCB-C30A-3680-B7C2-91B327B2B63B>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
>> 0x96078000 - 0x960c6ff3  com.apple.SystemConfiguration (1.12.2 -
>> 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988>
>>
>> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
>> 0x960cc000 - 0x960d0fff  com.apple.IOSurface (86.0.3 - 86.0.3)
>> <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509>
>> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
>> 0x960d1000 - 0x96135fff  com.apple.datadetectorscore (4.0 - 269.1)
>> <4D155F09-1A60-325A-BCAC-1B858C2C051B>
>>
>> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
>> 0x96136000 - 0x962aeff5  com.apple.QuartzCore (1.8 - 304.0)
>> <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B>
>> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
>> 0x962af000 - 0x962bdfff  libxar.1.dylib (105)
>> <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
>> 0x962c2000 - 0x963cf057  libobjc.A.dylib (532.2)
>> <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
>> 0x963d0000 - 0x9644cffb  libType1Scaler.dylib (101.1)
>> <0D94D786-29F7-33DB-B64B-B264FA5EACD2>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
>> 0x9644d000 - 0x96483ffb  com.apple.DebugSymbols (98 - 98)
>> <9A9ADA0A-E487-3C8F-9998-286EE04C235A>
>>
>> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
>> 0x96484000 - 0x964a1fff  libCRFSuite.dylib (33)
>> <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
>> 0x964a2000 - 0x964e3ff7  libcups.2.dylib (327)
>> <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
>> 0x964e4000 - 0x966ccff3  com.apple.CoreFoundation (6.8 - 744.12)
>> <E939CEA0-493C-3233-9983-5070981BB350>
>>
>> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
>> 0x966cd000 - 0x967e9ff7  com.apple.desktopservices (1.7.2 - 1.7.2)
>> <8E74D101-8398-34F1-A463-B4950680A597>
>>
>> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
>> 0x968df000 - 0x969c0fff  libcrypto.0.9.8.dylib (47)
>> <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
>> 0x969c1000 - 0x96a3dff3  com.apple.Metadata (10.7.0 - 707.3)
>> <6B6A6216-23D0-34CE-8099-BEE9BA42501E>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
>> 0x96a3e000 - 0x96a46fff  com.apple.DiskArbitration (2.5.1 - 2.5.1)
>> <25A7232F-9B6A-3746-A3A8-12479D086B1E>
>>
>> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
>> 0x96a4b000 - 0x96a4efff  com.apple.help (1.3.2 - 42)
>> <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
>> 0x96a4f000 - 0x96a4fffd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
>> <4C13DEA2-1EB0-3D06-901A-DB93184C06F0>
>> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
>> 0x97789000 - 0x977bcff3  com.apple.GSS (3.0 - 2.0)
>> <B1D719C1-B000-3BE3-B747-329D608585DD>
>> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
>> 0x977bd000 - 0x977c4fff  liblaunch.dylib (442.26.2)
>> <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
>> 0x97828000 - 0x978e5feb  libsystem_c.dylib (825.25)
>> <B1F6916A-F558-38B5-A18C-D9733625FDC9>
>> /usr/lib/system/libsystem_c.dylib
>> 0x978e6000 - 0x978eafff  com.apple.CommonPanels (1.2.5 - 94)
>> <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
>> 0x978eb000 - 0x984a7ffb  com.apple.AppKit (6.8 - 1187.34)
>> <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C>
>> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
>> 0x984a8000 - 0x984acff7  libmacho.dylib (829)
>> <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
>> 0x984ad000 - 0x988effff  com.apple.CoreGraphics (1.600.0 - 324.6)
>> <66556166-F9A7-3EEC-A562-46061C7A79E4>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
>> 0x988f0000 - 0x98906fff  com.apple.CFOpenDirectory (10.8 - 151.10)
>> <56C3F276-BD1F-3031-8CF9-8F4F481A534E>
>>
>>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
>> 0x98907000 - 0x98915ff3  libsystem_network.dylib (77.10)
>> <7FBF5A15-97BA-3721-943E-E77F0C40DBE1>
>> /usr/lib/system/libsystem_network.dylib
>> 0x98916000 - 0x9893bff7  com.apple.CoreVideo (1.8 - 99.3)
>> <5B872AC0-E82D-3475-A3F9-FD95F380560D>
>> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
>> 0x989da000 - 0x989e2fff  com.apple.CommerceCore (1.0 - 26)
>> <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5>
>>
>>
/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
>> 0x989e3000 - 0x98aa1ff3  com.apple.ColorSync (4.8.0 - 4.8.0)
>> <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
>> 0x98aa2000 - 0x98aa2fff  libkeymgr.dylib (25)
>> <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
>> 0x98aa3000 - 0x98b0bfe7  libvDSP.dylib (380.6)
>> <55780308-4DCA-3B10-9703-EAFC3E13A3FA>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
>> 0x98bd6000 - 0x98be0fff  libCSync.A.dylib (324.6)
>> <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
>> 0x98be1000 - 0x98c45ff3  libstdc++.6.dylib (56)
>> <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
>> 0x98c51000 - 0x98c70ff3  com.apple.Ubiquity (1.2 - 243.10)
>> <D2C9F356-1681-31D2-B292-5227E2DDEB0B>
>> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
>> 0x98c71000 - 0x98c78fff  libsystem_dnssd.dylib (379.32.1)
>> <6A505284-2382-3F27-B96F-15FFDACF004E>
>> /usr/lib/system/libsystem_dnssd.dylib
>> 0x98c79000 - 0x98caefff  libTrueTypeScaler.dylib (84.5)
>> <2598F930-5E6B-37D7-B1E6-18181A972C6E>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
>> 0x98cc0000 - 0x98cfbfe7  libGLImage.dylib (8.6.1)
>> <A3442557-18D5-332E-8859-423D5A20EBBE>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
>> 0x98cfc000 - 0x98d13fff  com.apple.GenerationalStorage (1.1 - 132.2)
>> <93694E0D-35D3-3633-976E-F354CBD92F54>
>>
>> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
>> 0x98d14000 - 0x98d16ffb  libRadiance.dylib (845)
>> <3F87840F-217D-3074-A29D-919BAAED2F4A>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
>> 0x98d17000 - 0x98debfff  com.apple.backup.framework (1.4.1 - 1.4.1)
>> <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5>
>> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
>> 0x98dec000 - 0x98df0fff  com.apple.OpenDirectory (10.8 - 151.10)
>> <A1858D81-086F-3BF5-87E3-9B70409FFDF6>
>>
>> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
>> 0x98f26000 - 0x98f72fff  libcorecrypto.dylib (106.2)
>> <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6>
>> /usr/lib/system/libcorecrypto.dylib
>> 0x98fdd000 - 0x99087fff  com.apple.LaunchServices (539.7 - 539.7)
>> <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
>>
>>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
>> 0x99097000 - 0x990dbfff  libGLU.dylib (8.6.1)
>> <06BAFDCA-800C-35E3-B1A3-F05E105B86AB>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
>> 0x990dc000 - 0x990f1fff  com.apple.speech.synthesis.framework (4.1.12
>> - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
>>
>>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
>> 0x990f2000 - 0x9910eff7  libPng.dylib (845)
>> <14C43094-C670-3575-BF9B-3A967E05EAC0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
>> 0x9910f000 - 0x993cffff  com.apple.security (7.0 - 55179.1)
>> <CB470E48-621B-34D9-9E78-8B773358CB6B>
>> /System/Library/Frameworks/Security.framework/Versions/A/Security
>> 0x993d0000 - 0x9941fff6  libTIFF.dylib (845)
>> <989A2EB9-3A49-3157-8E9C-B16E6005BC64>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
>> 0x99420000 - 0x99420fff  libsystem_blocks.dylib (59)
>> <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
>> /usr/lib/system/libsystem_blocks.dylib
>> 0x9943b000 - 0x99468ffe  libsystem_m.dylib (3022.6)
>> <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431>
>> /usr/lib/system/libsystem_m.dylib
>> 0x994ba000 - 0x994d7fff  libxpc.dylib (140.41)
>> <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
>> 0x994d8000 - 0x99613ff7  libBLAS.dylib (1073.4)
>> <FF74A147-05E1-37C4-BC10-7DEB57FE5326>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
>> 0x9963a000 - 0x99663fff  libxslt.1.dylib (11.3)
>> <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
>> 0x99664000 - 0x998bcff1  com.apple.JavaScriptCore (8536 - 8536.26.7)
>> <75629E05-65FE-3699-8CDC-80C95015CF42>
>>
>> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
>> 0x998bd000 - 0x998dffff  libc++abi.dylib (24.4)
>> <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
>> 0x998e0000 - 0x99cc3ff3  com.apple.HIToolbox (2.0 - 625)
>> <5A312E41-9940-363E-B891-90C4672E6850>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
>> 0x99cc4000 - 0x99cd6fff  libbsm.0.dylib (32)
>> <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
>> 0x99cd7000 - 0x99cddfff  com.apple.print.framework.Print (8.0 - 258)
>> <12AEAD24-6924-3923-9E4A-C5D21231E639>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
>> 0x99cde000 - 0x99ce0fff  com.apple.securityhi (4.0 - 55002)
>> <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
>> 0x9a55e000 - 0x9a59dff7  com.apple.bom (12.0 - 192)
>> <0637E52C-D151-37B3-904F-8656B2FD44DD>
>> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
>>
>> External Modification Summary:
>>   Calls made by other processes targeting this process:
>>     task_for_pid: 2
>>     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: 3456
>>     thread_create: 1
>>     thread_set_state: 0
>>
>> VM Region Summary:
>> ReadOnly portion of Libraries: Total=164.5M resident=135.0M(82%)
>> swapped_out_or_unallocated=29.4M(18%)
>> Writable regions: Total=120.5M written=9140K(7%) resident=23.7M(20%)
>> swapped_out=0K(0%) unallocated=96.8M(80%)
>>
>> REGION TYPE                      VIRTUAL
>> ===========                      =======
>> ATS (font support)                 32.9M
>> ATS (font support) (reserved)         4K        reserved VM address
>> space (unallocated)
>> CG backing stores                  9236K
>> CG shared images                   1216K
>> CoreServices                       3168K
>> MALLOC                             49.3M
>> MALLOC guard page                    48K
>> Memory tag=240                        4K
>> Memory tag=242                       12K
>> Memory tag=35                      7160K
>> Stack                              66.0M
>> VM_ALLOCATE                        16.5M
>> __DATA                             8108K
>> __DATA/__OBJC                       176K
>> __IMAGE                             528K
>> __LINKEDIT                         43.6M
>> __OBJC                             1704K
>> __OBJC/__DATA                        36K
>> __PAGEZERO                            4K
>> __TEXT                            120.8M
>> __UNICODE                           544K
>> mapped file                       119.5M
>> shared memory                       308K
>> ===========                      =======
>> TOTAL                             480.3M
>> TOTAL, minus reserved VM space    480.3M
>>
>> Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core
>> i7, 2.8 GHz, 8 GB, SMC 1.58f16
>> Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
>> Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
>> Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
>> 0x31364A53533531323634485A2D3147314131
>> Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
>> 0x31364A53533531323634485A2D3147314131
>> AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93),
>> Broadcom BCM43xx 1.0 (5.106.98.81.22)
>> Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming
>> serial ports
>> Network Service: AirPort, AirPort, en1
>> Serial ATA Device: ST9500420ASG, 500.11 GB
>> Serial ATA Device: MATSHITADVD-R   UJ-898
>> USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
>> USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id,
>> 0x0237, 0xfa120000 / 5
>> USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403,
>> 0xfa130000 / 4
>> USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
>> USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218,
>> 0xfa113000 / 7
>> USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
>> USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
>> USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
>>
>>
>>
>>
>> --
>> Dave Page
>> Blog: http://pgsnake.blogspot.com
>> Twitter: @pgsnake
>>
>> EnterpriseDB UK: http://www.enterprisedb.com
>> The Enterprise PostgreSQL Company
>
>
>
>
> --
> Akshay Joshi
> Senior Software Engineer
> EnterpriseDB Corporation
> The Enterprise PostgreSQL Company
> Phone: +91 20-3058-9522
> Mobile: +91 976-788-8246
>



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:


On Mon, Nov 5, 2012 at 5:42 PM, Dave Page <dpage@pgadmin.org> wrote:
Nope - just try connecting, disconnecting, connecting (lather, rinse,
repeat) and see what happens.

  Yes. It is reproducible will work on it. 

On Mon, Nov 5, 2012 at 12:11 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>
> On Fri, Nov 2, 2012 at 10:03 PM, Dave Page <dpage@pgadmin.org> wrote:
>>
>> Hi
>>
>> On Fri, Nov 2, 2012 at 1:16 PM, Akshay Joshi
>> <akshay.joshi@enterprisedb.com> wrote:
>> >
>> >> If we're going to ignore saved passwords though, we probably need to
>> >> warn the user when they enable tunnelling (a message box if the option
>> >> is checked perhaps, and then un-check it).
>> >
>> >
>> >   Fixed. Attached is the new patch.
>>
>> OK, that's looking much better. I've updated the patch to fix a merge
>> issue and tweak a message - please find the attached.
>
>
>    Attached is the complete patch with your changes.
>>
>>
>> I have been seeing a crash during connection though. It was working in
>> my initial three or four tests, but now it seems to crash nearly every
>> time :-(. I'm using an identity file with a pass phrase, to connect to
>> a server inside our network (you can probably guess which one, but
>> that's not for public consumption :-p). The initial connection works,
>> and it seems to get halfway through restoring the environment (so it's
>> obviously connected to the server and run some queries), then I get
>> the crash below.
>
>
>    I have not found any crash on my MAC machine. Is there any specific steps
> to reproduce it??.
>>
>>
>> In trying to reproduce it, I've also seen "SSL SYSCALL error: EOF
>> detected" at what looks like the same point, on one occasion.
>>
>> Process:         pgadmin3 [53513]
>> Path:
>> /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
>> Identifier:      pgadmin3
>> Version:         0
>> Code Type:       X86 (Native)
>> Parent Process:  launchd [228]
>> User ID:         501
>>
>> Date/Time:       2012-11-02 16:28:07.061 +0000
>> OS Version:      Mac OS X 10.8.2 (12C60)
>> Report Version:  10
>>
>> Interval Since Last Report:          586084 sec
>> Crashes Since Last Report:           38
>> Per-App Crashes Since Last Report:   8
>> Anonymous UUID:                      627C9BF8-3515-D883-1FBE-1FE4EB9B0BA0
>>
>> Crashed Thread:  4
>>
>> Exception Type:  EXC_CRASH (SIGABRT)
>> Exception Codes: 0x0000000000000000, 0x0000000000000000
>>
>> Application Specific Information:
>> *** error for object 0x7bd04000: pointer being freed was not allocated
>>
>>
>> Thread 0:: Dispatch queue: com.apple.main-thread
>> 0   libsystem_kernel.dylib         0x957a0d2e __poll + 10
>> 1   libpq.5.dylib                 0x0176674b pqSocketCheck + 347
>> 2   libpq.5.dylib                 0x017668a9 pqWait + 41
>> 3   libpq.5.dylib                 0x01765e64 PQgetResult + 180
>> 4   libpq.5.dylib                 0x0176634b PQexecFinish + 155
>> 5   pgAdmin3-Debug                 0x000c5000
>> pgConn::ExecuteSet(wxString const&) + 230
>> 6   pgAdmin3-Debug                 0x0041a374
>> pgDatabase::ExecuteSet(wxString const&) + 70
>> 7   pgAdmin3-Debug                 0x004d90d9
>> pgTableFactory::CreateObjects(pgCollection*, ctlTree*, wxString
>> const&) + 7195
>> 8   pgAdmin3-Debug                 0x005ac3b7
>> pgaCollectionFactory::CreateObjects(pgCollection*, ctlTree*, wxString
>> const&) + 47
>> 9   pgAdmin3-Debug                 0x003f7f43
>> pgCollection::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
>> ctlSQLBox*) + 143
>> 10  pgAdmin3-Debug                 0x000b3427
>> ctlTree::AppendObject(pgObject*, pgObject*) + 259
>> 11  pgAdmin3-Debug                 0x000b355b
>> ctlTree::AppendCollection(pgObject*, pgaFactory&) + 47
>> 12  pgAdmin3-Debug                 0x0049af21
>> pgSchemaBase::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
>> ctlSQLBox*) + 4371
>> 13  pgAdmin3-Debug                 0x00474858
>> pgObject::ShowTree(frmMain*, ctlTree*, ctlListView*, ctlSQLBox*) + 588
>> 14  pgAdmin3-Debug                 0x0026bfde
>> frmMain::setDisplay(pgObject*, ctlListView*, ctlSQLBox*) + 60
>> 15  pgAdmin3-Debug                 0x0026cdb6
>> frmMain::execSelChange(wxTreeItemId, bool) + 1158
>> 16  pgAdmin3-Debug                 0x00269a33
>> frmMain::OnTreeSelChanged(wxTreeEvent&) + 61
>> 17  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 18  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 19  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 20  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 21  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 22  libwx_macu_core-2.8.0.dylib   0x011a1eea
>> wxWindowBase::TryParent(wxEvent&) + 66
>> 23  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
>> wxEvtHandler::ProcessEvent(wxEvent&) + 237
>> 24  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 25  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 26  libwx_macu_core-2.8.0.dylib   0x011d73d7
>> wxGenericTreeCtrl::DoSelectItem(wxTreeItemId const&, bool, bool) + 743
>> 27  libwx_macu_core-2.8.0.dylib   0x011d7485
>> wxGenericTreeCtrl::SelectItem(wxTreeItemId const&, bool) + 95
>> 28  pgAdmin3-Debug                 0x002bce34
>> frmMain::ReconnectServer(pgServer*, bool) + 1018
>> 29  pgAdmin3-Debug                 0x00269b7c
>> frmMain::OnSelActivated(wxTreeEvent&) + 126
>> 30  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 31  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 32  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 33  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 34  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 35  libwx_macu_core-2.8.0.dylib   0x011a1eea
>> wxWindowBase::TryParent(wxEvent&) + 66
>> 36  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
>> wxEvtHandler::ProcessEvent(wxEvent&) + 237
>> 37  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 38  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 39  libwx_macu_core-2.8.0.dylib   0x011d35e0
>> wxGenericTreeCtrl::OnMouse(wxMouseEvent&) + 3078
>> 40  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 41  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 42  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 43  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 44  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 45  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 46  libwx_macu_core-2.8.0.dylib   0x010f3f36
>> wxMacTopLevelMouseEventHandler(OpaqueEventHandlerCallRef*,
>> OpaqueEventRef*, void*) + 1286
>> 47  libwx_macu_core-2.8.0.dylib   0x010f1108
>> wxMacTopLevelEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
>> void*) + 4344
>> 48  com.apple.HIToolbox           0x99a8cb6b
>> _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
>> void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) +
>> 36
>> 49  com.apple.HIToolbox           0x99914594
>> DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
>> HandlerCallRec*) + 1343
>> 50  com.apple.HIToolbox           0x99913980
>> SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
>> HandlerCallRec*) + 430
>> 51  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
>> 52  com.apple.HIToolbox           0x999477b7
>> ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*,
>> OpaqueEventRef*, void*) + 2141
>> 53  com.apple.HIToolbox           0x99914a3f
>> DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
>> HandlerCallRec*) + 2538
>> 54  com.apple.HIToolbox           0x99913980
>> SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
>> HandlerCallRec*) + 430
>> 55  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
>> 56  libwx_macu_core-2.8.0.dylib   0x01093075
>> wxApp::MacHandleOneEvent(void*) + 41
>> 57  libwx_macu_core-2.8.0.dylib   0x01093168 wxApp::MacDoOneEvent() + 144
>> 58  libwx_macu_core-2.8.0.dylib   0x010ac38e wxEventLoop::Dispatch() + 32
>> 59  libwx_macu_core-2.8.0.dylib   0x0114ce45 wxEventLoopManual::Run() +
>> 131
>> 60  libwx_macu_core-2.8.0.dylib   0x011264eb wxAppBase::MainLoop() + 67
>> 61  libwx_base_carbonu-2.8.0.dylib 0x014d2dae wxEntry(int&, wchar_t**) +
>> 110
>> 62  libwx_base_carbonu-2.8.0.dylib 0x014d2e62 wxEntry(int&, char**) + 50
>> 63  pgAdmin3-Debug                 0x0007460e main + 30
>> 64  libdyld.dylib                 0x91bb2725 start + 1
>>
>> Thread 1:: Dispatch queue: com.apple.libdispatch-manager
>> 0   libsystem_kernel.dylib         0x957a09ae kevent + 10
>> 1   libdispatch.dylib             0x91b9ec71 _dispatch_mgr_invoke + 993
>> 2   libdispatch.dylib             0x91b9e7a9 _dispatch_mgr_thread + 53
>>
>> Thread 2:
>> 0   libsystem_kernel.dylib         0x9579ee9a __accept + 10
>> 1   pgAdmin3-Debug                 0x005c8926 CSSHTunnelThread::Entry() +
>> 136
>> 2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 5   libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 3:
>> 0   libsystem_kernel.dylib         0x9579fbe6 __select + 10
>> 1   pgAdmin3-Debug                 0x005c91c0 CSubThread::Entry() + 1008
>> 2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 5   libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 4 Crashed:
>> 0   libsystem_kernel.dylib         0x9579fa6a __pthread_kill + 10
>> 1   libsystem_c.dylib             0x9783facf pthread_kill + 101
>> 2   libsystem_c.dylib             0x978764f8 abort + 168
>> 3   libsystem_c.dylib             0x97858da3 free + 428
>> 4   pgAdmin3-Debug                 0x005cd105 _libssh2_channel_read + 373
>> 5   pgAdmin3-Debug                 0x005cd21a libssh2_channel_read_ex +
>> 154
>> 6   pgAdmin3-Debug                 0x005c90c8 CSubThread::Entry() + 760
>> 7   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 8   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 9   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 10  libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 4 crashed with X86 Thread State (32-bit):
>>   eax: 0x00000000  ebx: 0x00000004  ecx: 0xb0201d5c  edx: 0x9579fa6a
>>   edi: 0xb0207000  esi: 0x00000006  ebp: 0xb0201d78  esp: 0xb0201d5c
>>    ss: 0x00000023  efl: 0x00000206  eip: 0x9579fa6a   cs: 0x0000000b
>>    ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
>>   cr2: 0x031bd000
>> Logical CPU: 0
>>
>> Binary Images:
>>    0x5c000 -   0x8c7ff7 +pgAdmin3-Debug (0)
>> <F369D1D7-3C67-3C59-956C-E7D9D5A4DC3C>
>> /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
>>   0xbdd000 -   0xc8fff3 +libwx_macu_stc-2.8.0.dylib (9)
>> <9FA0E41A-986E-3566-9EE2-6E36770591AA>
>> /usr/local/lib/libwx_macu_stc-2.8.0.dylib
>>   0xcc9000 -   0xd7affb +libwx_macu_richtext-2.8.0.dylib (9)
>> <2864E8E2-BCFE-3714-8CEE-A2D39952B9DA>
>> /usr/local/lib/libwx_macu_richtext-2.8.0.dylib
>>   0xdcf000 -   0xe15ff3 +libwx_macu_aui-2.8.0.dylib (9)
>> <55917725-2CBA-3CB5-A5C6-523636675B5C>
>> /usr/local/lib/libwx_macu_aui-2.8.0.dylib
>>   0xe3f000 -   0xea3ffb +libwx_macu_xrc-2.8.0.dylib (9)
>> <A75611FF-93EC-3DFD-A431-AB84F95903D9>
>> /usr/local/lib/libwx_macu_xrc-2.8.0.dylib
>>   0xed9000 -   0xee9ffb +libwx_macu_qa-2.8.0.dylib (9)
>> <59AECB8D-B37B-3179-B510-F08F4A459D76>
>> /usr/local/lib/libwx_macu_qa-2.8.0.dylib
>>   0xefd000 -   0xf62ff7 +libwx_macu_html-2.8.0.dylib (9)
>> <AF1472F1-D5C3-3631-9D98-B77EBEF4DC0F>
>> /usr/local/lib/libwx_macu_html-2.8.0.dylib
>>   0xfa8000 -  0x1021ff7 +libwx_macu_adv-2.8.0.dylib (9)
>> <09C8FC76-01BD-36A4-950D-8A4806273396>
>> /usr/local/lib/libwx_macu_adv-2.8.0.dylib
>>  0x107b000 -  0x12fcff3 +libwx_macu_core-2.8.0.dylib (9)
>> <9D13B673-05DE-3F72-96A7-0185395CFC31>
>> /usr/local/lib/libwx_macu_core-2.8.0.dylib
>>  0x1455000 -  0x145eff3 +libwx_base_carbonu_xml-2.8.0.dylib (9)
>> <E947A667-B081-3837-8D28-CE975268D606>
>> /usr/local/lib/libwx_base_carbonu_xml-2.8.0.dylib
>>  0x1464000 -  0x1482ff7 +libwx_base_carbonu_net-2.8.0.dylib (9)
>> <3052FB55-C0B6-340C-8E27-63F976E6B485>
>> /usr/local/lib/libwx_base_carbonu_net-2.8.0.dylib
>>  0x1498000 -  0x157dfef +libwx_base_carbonu-2.8.0.dylib (9)
>> <56AB58B3-7B68-374C-B132-9ADB93F1660B>
>> /usr/local/lib/libwx_base_carbonu-2.8.0.dylib
>>  0x15e6000 -  0x16fefef +libxml2.2.dylib (10.8)
>> <CA025D0B-A10C-32E5-9A2F-75EF0173B60E> /usr/local/lib/libxml2.2.dylib
>>  0x1725000 -  0x1752ff7 +libxslt.1.dylib (3.26)
>> <7B167347-7009-3315-9D84-E41393F487DB> /usr/local/lib/libxslt.1.dylib
>>  0x175c000 -  0x1776ff7 +libpq.5.dylib (5.4)
>> <05AE305F-E3CB-3CEE-9498-6C59F302A2C9>
>> /usr/local/pgsql/lib/libpq.5.dylib
>>  0x1780000 -  0x189eff3  com.apple.WebKit (8536 - 8536.26.14)
>> <C98F734D-D579-3F89-9A58-9EE890B1748E>
>> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
>>  0x1950000 -  0x25dfff3  com.apple.WebCore (8536 - 8536.26.14)
>> <82E97E6B-3F31-39A7-B41F-CD308E6EF238>
>>
>> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
>>  0x2d62000 -  0x2d78ffc  libexpat.1.dylib (12)
>> <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
>>  0x2dcf000 -  0x2e8dff3  ColorSyncDeprecated.dylib (400)
>> <35E3054C-5DF1-30D4-A368-C4FDB0992373>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
>>  0x2ee1000 -  0x2ee2ffd  com.apple.textencoding.unicode (2.5 - 2.5)
>> <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2>
>> /System/Library/TextEncodings/Unicode
>> Encodings.bundle/Contents/MacOS/Unicode Encodings
>>  0x304a000 -  0x3057ff3  com.apple.Librarian (1.1 - 1)
>> <88A55A5E-40FF-3234-8394-2317120B79AB>
>> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
>>  0x31a2000 -  0x31a3ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1)
>> <098CE576-3239-3B41-9141-A5BE6E476C84>
>>
>> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/DictationServicesCore.framework/DictationServicesCore
>>  0x31b1000 -  0x31b5fff  com.apple.CommonCocoaPanels (4.0 - 16)
>> <7676B15F-69E2-39D2-9F35-9D2959A99079>
>>
>> /System/Library/CoreServices/CommonCocoaPanels.bundle/Contents/MacOS/CommonCocoaPanels
>> 0x8fe5b000 - 0x8fe8de57  dyld (210.2.3)
>> <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
>> 0x90007000 - 0x90008fff  libquarantine.dylib (52)
>> <D526310F-DC77-37EA-8F5F-83928EFA3262>
>> /usr/lib/system/libquarantine.dylib
>> 0x90038000 - 0x90064ff7  libsystem_info.dylib (406.17)
>> <AA5611DB-A944-3072-B6BE-ACAB08689547>
>> /usr/lib/system/libsystem_info.dylib
>> 0x90065000 - 0x90068ff9  libCGXType.A.dylib (324.6)
>> <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
>> 0x90069000 - 0x901f2ff7  com.apple.vImage (6.0 - 6.0)
>> <1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
>> 0x901f3000 - 0x90235ff7  libauto.dylib (185.1)
>> <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
>> 0x9034f000 - 0x9076cfff  FaceCoreLight (2.4.1)
>> <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
>>
>> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
>> 0x9076d000 - 0x907ffffb  libvMisc.dylib (380.6)
>> <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
>> 0x90800000 - 0x90801fff  libDiagnosticMessagesClient.dylib (8)
>> <39B3D25A-148A-3936-B800-0D393A00E64F>
>> /usr/lib/libDiagnosticMessagesClient.dylib
>> 0x90802000 - 0x90802fff  com.apple.ApplicationServices (45 - 45)
>> <677C4ACC-9D12-366F-8A87-B898AC806DD9>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
>> 0x90803000 - 0x90805fff  libCVMSPluginSupport.dylib (8.6.1)
>> <8A174BD9-992E-351D-8F9A-DF6991723ABE>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
>> 0x90843000 - 0x90843fff  com.apple.Accelerate.vecLib (3.8 - vecLib
>> 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
>> 0x90844000 - 0x9089bff7  com.apple.ScalableUserInterface (1.0 - 1)
>> <2B5E454B-BC49-3E85-B54D-1950397C448C>
>>
>> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
>> 0x9089c000 - 0x90916ff7  com.apple.securityfoundation (6.0 - 55115.4)
>> <A959B2F5-9D9D-3C93-A62A-7399594CF238>
>>
>> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
>> 0x90917000 - 0x90917fff  libSystem.B.dylib (169.3)
>> <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
>> 0x90943000 - 0x909a0fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0)
>> <9549B81F-4425-34EE-802B-F462068DC0C5>
>> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
>> 0x909a1000 - 0x909bfff3  com.apple.openscripting (1.3.6 - 148.2)
>> <55738D66-CC15-3F43-9265-00C3322D39C4>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
>> 0x909c0000 - 0x909e4fff  libJPEG.dylib (845)
>> <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
>> 0x909e5000 - 0x909effff  com.apple.speech.recognition.framework (4.1.5
>> - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
>> 0x909f0000 - 0x90a10ffd  com.apple.ChunkingLibrary (2.0 - 133.2)
>> <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E>
>>
>> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
>> 0x90a89000 - 0x90b81ff9  libsqlite3.dylib (138.1)
>> <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
>> 0x90b82000 - 0x90b8dfff  libcommonCrypto.dylib (60026)
>> <A6C6EDB8-7E69-3827-81F3-9A74D0935461>
>> /usr/lib/system/libcommonCrypto.dylib
>> 0x90b8e000 - 0x90b9affa  com.apple.CrashReporterSupport (10.8.2 - 415)
>> <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21>
>>
>> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
>> 0x90b9b000 - 0x90ba4ff9  com.apple.CommonAuth (3.0 - 2.0)
>> <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B>
>>
>> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
>> 0x90ba5000 - 0x90bb2fff  libGL.dylib (8.6.1)
>> <C7A3917A-C444-33CC-8599-BB9CD8C12BC4>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
>> 0x90e21000 - 0x90e21fff  com.apple.Carbon (154 - 155)
>> <604ADD9D-5835-3294-842E-3A4AEBCCB548>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
>> 0x90e22000 - 0x90e4bff7  libRIP.A.dylib (324.6)
>> <7976E6A2-A489-33F5-A727-7634DDE3B761>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
>> 0x90e53000 - 0x90e59fff  libGFXShared.dylib (8.6.1)
>> <E32A7266-FCDD-352C-9C2A-8939265974AF>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
>> 0x90e5a000 - 0x90ea8ffb  libFontRegistry.dylib (100)
>> <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
>> 0x90ea9000 - 0x90f2eff7  com.apple.SearchKit (1.4.0 - 1.4.0)
>> <454E950F-291C-3E95-8F35-05CA0AD6B327>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
>> 0x90f72000 - 0x90f9fffb  com.apple.CoreServicesInternal (154.2 -
>> 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
>>
>> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
>> 0x90fa2000 - 0x90fabffd  com.apple.audio.SoundManager (4.0 - 4.0)
>> <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
>> 0x90fac000 - 0x912c9ff3  com.apple.Foundation (6.8 - 945.11)
>> <03B242AC-519C-3683-AA52-E73536B3D55F>
>> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
>> 0x912ca000 - 0x9130cffb  com.apple.RemoteViewServices (2.0 - 80.5)
>> <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9>
>>
>> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
>> 0x9130d000 - 0x915b0ffb  com.apple.CoreImage (8.2.2 - 1.0.1)
>> <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3>
>>
>> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
>> 0x915b1000 - 0x91620ffb  com.apple.Heimdal (3.0 - 2.0)
>> <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD>
>> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
>> 0x91621000 - 0x91678ff3  com.apple.HIServices (1.20 - 417)
>> <561A770B-8523-3D09-A763-11F872779A4C>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
>> 0x91679000 - 0x91784ff7  libJP2.dylib (845)
>> <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
>> 0x91785000 - 0x9178dfff  libcopyfile.dylib (89)
>> <4963541B-0254-371B-B29A-B6806888949B>
>> /usr/lib/system/libcopyfile.dylib
>> 0x9178e000 - 0x917e7fff  com.apple.AE (645.3 - 645.3)
>> <6745659F-006D-3F25-94D6-DF944E9A01FD>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
>> 0x91885000 - 0x9191cff7  com.apple.ink.framework (10.8.2 - 150)
>> <D90FF7BC-6B90-39F1-AC52-670269947C58>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
>> 0x9191d000 - 0x91b99ff7  com.apple.QuickTime (7.7.1 - 2599.13)
>> <FE609160-E1EF-341D-9B6A-205D3E03A4D2>
>> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
>> 0x91b9a000 - 0x91bacff7  libdispatch.dylib (228.23)
>> <86EF7D45-2D97-3465-A449-95038AE5DABA>
>> /usr/lib/system/libdispatch.dylib
>> 0x91bb0000 - 0x91bb2fff  libdyld.dylib (210.2.3)
>> <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
>> 0x91bb3000 - 0x91bc0ff7  com.apple.AppleFSCompression (49 - 1.0)
>> <166AA1F8-E50A-3533-A3B5-8737C5118CC3>
>>
>> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
>> 0x91bc1000 - 0x91c06ff5  com.apple.opencl (2.1.20 - 2.1.20)
>> <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16>
>> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
>> 0x91c51000 - 0x91c5bfff  libsystem_notify.dylib (98.5)
>> <7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
>> /usr/lib/system/libsystem_notify.dylib
>> 0x91d6d000 - 0x91d74ff3  com.apple.NetFS (5.0 - 4.0)
>> <1F7041F2-4E97-368C-8F5D-24153D81BBDB>
>> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
>> 0x91d75000 - 0x91ddbfff  com.apple.print.framework.PrintCore (8.1 -
>> 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
>> 0x91de6000 - 0x91dedffb  libunwind.dylib (35.1)
>> <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
>> 0x91e68000 - 0x91e76ff7  libz.1.dylib (43)
>> <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
>> 0x91e77000 - 0x91e78fff  libdnsinfo.dylib (453.18)
>> <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F>
>> /usr/lib/system/libdnsinfo.dylib
>> 0x91e79000 - 0x91e83ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
>> <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
>>
>> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
>> 0x91ede000 - 0x91f8dff7  com.apple.CoreText (260.0 - 275.16)
>> <873ADCD9-D361-3753-A220-CDD289196AD8>
>> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
>> 0x91f8e000 - 0x91f8efff  com.apple.Accelerate (1.8 - Accelerate 1.8)
>> <4EC0548E-3A3F-310D-A366-47B51D5B6398>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
>> 0x91f8f000 - 0x91f90fff  libsystem_sandbox.dylib (220)
>> <4E42390B-25EC-3530-AF01-337E430C16EB>
>> /usr/lib/system/libsystem_sandbox.dylib
>> 0x91f91000 - 0x91fd6ff7  com.apple.NavigationServices (3.7 - 200)
>> <F6531764-6E43-3AF3-ACDD-8A5551EF016A>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
>> 0x91fd7000 - 0x91fd8fff  liblangid.dylib (116)
>> <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
>> 0x91fd9000 - 0x92071fff  com.apple.CoreServices.OSServices (557.4 -
>> 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
>> 0x926ff000 - 0x92702ff7  com.apple.TCC (1.0 - 1)
>> <437D76CD-6437-3B55-BE2C-A53508858256>
>> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
>> 0x92861000 - 0x92876fff  com.apple.ImageCapture (8.0 - 8.0)
>> <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
>> 0x9290f000 - 0x9292cff7  libresolv.9.dylib (51)
>> <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
>> 0x9292d000 - 0x9292dfff  com.apple.CoreServices (57 - 57)
>> <956C6C6D-A5DD-314F-9C57-4A61D41F30CE>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
>> 0x92d2e000 - 0x92d3eff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
>> <875363E7-6D02-3229-A9DD-E5A5568A7D61>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
>> 0x92e16000 - 0x92e22ffe  libkxld.dylib (2050.18.24)
>> <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
>> 0x92e23000 - 0x93128ff7  com.apple.CoreServices.CarbonCore (1037.3 -
>> 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
>> 0x93129000 - 0x93129fff  com.apple.vecLib (3.8 - vecLib 3.8)
>> <83160DD1-5614-3E34-80EB-97041016EF1F>
>> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
>> 0x9312a000 - 0x93185fff  com.apple.htmlrendering (77 - 1.1.4)
>> <5C0C669F-AE07-3983-B38F-EB829B5CE609>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
>> 0x93186000 - 0x931aafff  com.apple.PerformanceAnalysis (1.16 - 16)
>> <18DE0F9F-1264-394D-AC56-6B2A1771DFBE>
>>
>> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
>> 0x931ab000 - 0x93220ff7  com.apple.ApplicationServices.ATS (332 -
>> 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
>> 0x93221000 - 0x93224ff7  libcompiler_rt.dylib (30)
>> <CE5DBDB4-0124-3E2B-9105-989DF98DD108>
>> /usr/lib/system/libcompiler_rt.dylib
>> 0x93225000 - 0x93287fff  libc++.1.dylib (65.1)
>> <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
>> 0x93288000 - 0x9333cfff  com.apple.coreui (2.0 - 181.1)
>> <C15ABF35-B7F5-34ED-A461-386DAF65D96B>
>> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
>> 0x9333d000 - 0x936f5ffa  libLAPACK.dylib (1073.4)
>> <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
>> 0x93702000 - 0x93702ffd  libOpenScriptingUtil.dylib (148.2)
>> <907E25B1-4F50-3461-B8D5-733C687EB534>
>> /usr/lib/libOpenScriptingUtil.dylib
>> 0x93703000 - 0x9371cfff  com.apple.Kerberos (2.0 - 1)
>> <9BDE8F4D-DBC3-34D1-852C-898D3655A611>
>> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
>> 0x9394e000 - 0x93b0affd  libicucore.A.dylib (491.11.1)
>> <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
>> 0x93b3b000 - 0x93b3cfff  libremovefile.dylib (23.1)
>> <98622D14-DAAB-3AD8-A5D9-C322BF572A98>
>> /usr/lib/system/libremovefile.dylib
>> 0x93cb4000 - 0x93d4efff  com.apple.CoreSymbolication (3.0 - 87)
>> <6A27BBE5-6EF0-3D5D-A485-2145826B9796>
>>
>> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
>> 0x93d4f000 - 0x93d50ffd  com.apple.TrustEvaluationAgent (2.0 - 23)
>> <E42347C0-2D3C-36A4-9200-757FFA61B388>
>>
>> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
>> 0x93d51000 - 0x93e3aff7  libxml2.2.dylib (22.3)
>> <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
>> 0x93e45000 - 0x93e45fff  com.apple.Cocoa (6.7 - 19)
>> <354094F0-F36B-36F9-BF5F-FD60590FBEB9>
>> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
>> 0x93e46000 - 0x93e52ff7  com.apple.NetAuth (4.0 - 4.0)
>> <4983C4B8-9D95-3C4D-897E-07743326487E>
>> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
>> 0x93e53000 - 0x93e86ff5  libssl.0.9.8.dylib (47)
>> <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
>> 0x93e87000 - 0x93eefff7  com.apple.framework.IOKit (2.0 - 755.18.10)
>> <9A80E97E-544F-3A45-916D-6DB7ED217E33>
>> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
>> 0x93f5c000 - 0x93fb6fff  com.apple.Symbolication (1.3 - 93)
>> <684ECF0D-D416-3DF8-8B5B-3902953853A8>
>>
>> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
>> 0x9402a000 - 0x940caff7  com.apple.QD (3.42 - 285)
>> <1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
>> 0x947d3000 - 0x9492bffb  com.apple.audio.toolbox.AudioToolbox (1.8 -
>> 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1>
>> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
>> 0x9492c000 - 0x94930ffc  libGIF.dylib (845)
>> <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
>> 0x94931000 - 0x94a2fff7  libFontParser.dylib (84.5)
>> <B3006327-7B2D-3966-A56A-BD85F1D71641>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
>> 0x94a30000 - 0x94a37ffe  com.apple.agl (3.2.1 - AGL-3.2.1)
>> <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA>
>> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
>> 0x94a38000 - 0x94b29ffc  libiconv.2.dylib (34)
>> <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
>> 0x94b2a000 - 0x94b5bfff  com.apple.DictionaryServices (1.2 - 184.4)
>> <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
>> 0x94b5c000 - 0x94b6fff9  com.apple.MultitouchSupport.framework (235.28
>> - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A>
>>
>> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
>> 0x94f59000 - 0x95170fff  com.apple.CoreData (106.1 - 407.7)
>> <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
>> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
>> 0x95171000 - 0x95172ffd  libunc.dylib (25)
>> <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
>> 0x954ec000 - 0x954efffc  libpam.2.dylib (20)
>> <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
>> 0x954f0000 - 0x954fefff  com.apple.opengl (1.8.6 - 1.8.6)
>> <1AD1AE7B-B57B-35B5-B571-32A34F0DA737>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
>> 0x9578b000 - 0x957a5ffc  libsystem_kernel.dylib (2050.18.24)
>> <C17D49D0-7961-3B67-B443-C788C6E5AA76>
>> /usr/lib/system/libsystem_kernel.dylib
>> 0x957a6000 - 0x957cbffb  com.apple.framework.familycontrols (4.1 -
>> 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1>
>>
>> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
>> 0x95a66000 - 0x95a6affe  libcache.dylib (57)
>> <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
>> 0x95e0b000 - 0x95e0effd  libCoreVMClient.dylib (24.4)
>> <C54E8FD0-61EC-3DC8-8631-54288AC66AC8>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
>> 0x95e0f000 - 0x95f5cffb  com.apple.CFNetwork (596.2.3 - 596.2.3)
>> <1221EF86-659B-3136-AB57-0CC6B130CDA2>
>> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
>> 0x95f5d000 - 0x95f69ff8  libbz2.1.0.dylib (29)
>> <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
>> 0x95f6a000 - 0x96077ff3  com.apple.ImageIO.framework (3.2.0 - 845)
>> <BF959BCB-C30A-3680-B7C2-91B327B2B63B>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
>> 0x96078000 - 0x960c6ff3  com.apple.SystemConfiguration (1.12.2 -
>> 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988>
>>
>> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
>> 0x960cc000 - 0x960d0fff  com.apple.IOSurface (86.0.3 - 86.0.3)
>> <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509>
>> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
>> 0x960d1000 - 0x96135fff  com.apple.datadetectorscore (4.0 - 269.1)
>> <4D155F09-1A60-325A-BCAC-1B858C2C051B>
>>
>> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
>> 0x96136000 - 0x962aeff5  com.apple.QuartzCore (1.8 - 304.0)
>> <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B>
>> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
>> 0x962af000 - 0x962bdfff  libxar.1.dylib (105)
>> <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
>> 0x962c2000 - 0x963cf057  libobjc.A.dylib (532.2)
>> <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
>> 0x963d0000 - 0x9644cffb  libType1Scaler.dylib (101.1)
>> <0D94D786-29F7-33DB-B64B-B264FA5EACD2>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
>> 0x9644d000 - 0x96483ffb  com.apple.DebugSymbols (98 - 98)
>> <9A9ADA0A-E487-3C8F-9998-286EE04C235A>
>>
>> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
>> 0x96484000 - 0x964a1fff  libCRFSuite.dylib (33)
>> <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
>> 0x964a2000 - 0x964e3ff7  libcups.2.dylib (327)
>> <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
>> 0x964e4000 - 0x966ccff3  com.apple.CoreFoundation (6.8 - 744.12)
>> <E939CEA0-493C-3233-9983-5070981BB350>
>>
>> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
>> 0x966cd000 - 0x967e9ff7  com.apple.desktopservices (1.7.2 - 1.7.2)
>> <8E74D101-8398-34F1-A463-B4950680A597>
>>
>> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
>> 0x968df000 - 0x969c0fff  libcrypto.0.9.8.dylib (47)
>> <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
>> 0x969c1000 - 0x96a3dff3  com.apple.Metadata (10.7.0 - 707.3)
>> <6B6A6216-23D0-34CE-8099-BEE9BA42501E>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
>> 0x96a3e000 - 0x96a46fff  com.apple.DiskArbitration (2.5.1 - 2.5.1)
>> <25A7232F-9B6A-3746-A3A8-12479D086B1E>
>>
>> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
>> 0x96a4b000 - 0x96a4efff  com.apple.help (1.3.2 - 42)
>> <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
>> 0x96a4f000 - 0x96a4fffd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
>> <4C13DEA2-1EB0-3D06-901A-DB93184C06F0>
>> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
>> 0x97789000 - 0x977bcff3  com.apple.GSS (3.0 - 2.0)
>> <B1D719C1-B000-3BE3-B747-329D608585DD>
>> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
>> 0x977bd000 - 0x977c4fff  liblaunch.dylib (442.26.2)
>> <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
>> 0x97828000 - 0x978e5feb  libsystem_c.dylib (825.25)
>> <B1F6916A-F558-38B5-A18C-D9733625FDC9>
>> /usr/lib/system/libsystem_c.dylib
>> 0x978e6000 - 0x978eafff  com.apple.CommonPanels (1.2.5 - 94)
>> <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
>> 0x978eb000 - 0x984a7ffb  com.apple.AppKit (6.8 - 1187.34)
>> <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C>
>> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
>> 0x984a8000 - 0x984acff7  libmacho.dylib (829)
>> <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
>> 0x984ad000 - 0x988effff  com.apple.CoreGraphics (1.600.0 - 324.6)
>> <66556166-F9A7-3EEC-A562-46061C7A79E4>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
>> 0x988f0000 - 0x98906fff  com.apple.CFOpenDirectory (10.8 - 151.10)
>> <56C3F276-BD1F-3031-8CF9-8F4F481A534E>
>>
>> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
>> 0x98907000 - 0x98915ff3  libsystem_network.dylib (77.10)
>> <7FBF5A15-97BA-3721-943E-E77F0C40DBE1>
>> /usr/lib/system/libsystem_network.dylib
>> 0x98916000 - 0x9893bff7  com.apple.CoreVideo (1.8 - 99.3)
>> <5B872AC0-E82D-3475-A3F9-FD95F380560D>
>> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
>> 0x989da000 - 0x989e2fff  com.apple.CommerceCore (1.0 - 26)
>> <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5>
>>
>> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
>> 0x989e3000 - 0x98aa1ff3  com.apple.ColorSync (4.8.0 - 4.8.0)
>> <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
>> 0x98aa2000 - 0x98aa2fff  libkeymgr.dylib (25)
>> <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
>> 0x98aa3000 - 0x98b0bfe7  libvDSP.dylib (380.6)
>> <55780308-4DCA-3B10-9703-EAFC3E13A3FA>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
>> 0x98bd6000 - 0x98be0fff  libCSync.A.dylib (324.6)
>> <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
>> 0x98be1000 - 0x98c45ff3  libstdc++.6.dylib (56)
>> <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
>> 0x98c51000 - 0x98c70ff3  com.apple.Ubiquity (1.2 - 243.10)
>> <D2C9F356-1681-31D2-B292-5227E2DDEB0B>
>> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
>> 0x98c71000 - 0x98c78fff  libsystem_dnssd.dylib (379.32.1)
>> <6A505284-2382-3F27-B96F-15FFDACF004E>
>> /usr/lib/system/libsystem_dnssd.dylib
>> 0x98c79000 - 0x98caefff  libTrueTypeScaler.dylib (84.5)
>> <2598F930-5E6B-37D7-B1E6-18181A972C6E>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
>> 0x98cc0000 - 0x98cfbfe7  libGLImage.dylib (8.6.1)
>> <A3442557-18D5-332E-8859-423D5A20EBBE>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
>> 0x98cfc000 - 0x98d13fff  com.apple.GenerationalStorage (1.1 - 132.2)
>> <93694E0D-35D3-3633-976E-F354CBD92F54>
>>
>> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
>> 0x98d14000 - 0x98d16ffb  libRadiance.dylib (845)
>> <3F87840F-217D-3074-A29D-919BAAED2F4A>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
>> 0x98d17000 - 0x98debfff  com.apple.backup.framework (1.4.1 - 1.4.1)
>> <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5>
>> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
>> 0x98dec000 - 0x98df0fff  com.apple.OpenDirectory (10.8 - 151.10)
>> <A1858D81-086F-3BF5-87E3-9B70409FFDF6>
>>
>> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
>> 0x98f26000 - 0x98f72fff  libcorecrypto.dylib (106.2)
>> <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6>
>> /usr/lib/system/libcorecrypto.dylib
>> 0x98fdd000 - 0x99087fff  com.apple.LaunchServices (539.7 - 539.7)
>> <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
>> 0x99097000 - 0x990dbfff  libGLU.dylib (8.6.1)
>> <06BAFDCA-800C-35E3-B1A3-F05E105B86AB>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
>> 0x990dc000 - 0x990f1fff  com.apple.speech.synthesis.framework (4.1.12
>> - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
>> 0x990f2000 - 0x9910eff7  libPng.dylib (845)
>> <14C43094-C670-3575-BF9B-3A967E05EAC0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
>> 0x9910f000 - 0x993cffff  com.apple.security (7.0 - 55179.1)
>> <CB470E48-621B-34D9-9E78-8B773358CB6B>
>> /System/Library/Frameworks/Security.framework/Versions/A/Security
>> 0x993d0000 - 0x9941fff6  libTIFF.dylib (845)
>> <989A2EB9-3A49-3157-8E9C-B16E6005BC64>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
>> 0x99420000 - 0x99420fff  libsystem_blocks.dylib (59)
>> <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
>> /usr/lib/system/libsystem_blocks.dylib
>> 0x9943b000 - 0x99468ffe  libsystem_m.dylib (3022.6)
>> <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431>
>> /usr/lib/system/libsystem_m.dylib
>> 0x994ba000 - 0x994d7fff  libxpc.dylib (140.41)
>> <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
>> 0x994d8000 - 0x99613ff7  libBLAS.dylib (1073.4)
>> <FF74A147-05E1-37C4-BC10-7DEB57FE5326>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
>> 0x9963a000 - 0x99663fff  libxslt.1.dylib (11.3)
>> <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
>> 0x99664000 - 0x998bcff1  com.apple.JavaScriptCore (8536 - 8536.26.7)
>> <75629E05-65FE-3699-8CDC-80C95015CF42>
>>
>> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
>> 0x998bd000 - 0x998dffff  libc++abi.dylib (24.4)
>> <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
>> 0x998e0000 - 0x99cc3ff3  com.apple.HIToolbox (2.0 - 625)
>> <5A312E41-9940-363E-B891-90C4672E6850>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
>> 0x99cc4000 - 0x99cd6fff  libbsm.0.dylib (32)
>> <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
>> 0x99cd7000 - 0x99cddfff  com.apple.print.framework.Print (8.0 - 258)
>> <12AEAD24-6924-3923-9E4A-C5D21231E639>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
>> 0x99cde000 - 0x99ce0fff  com.apple.securityhi (4.0 - 55002)
>> <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
>> 0x9a55e000 - 0x9a59dff7  com.apple.bom (12.0 - 192)
>> <0637E52C-D151-37B3-904F-8656B2FD44DD>
>> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
>>
>> External Modification Summary:
>>   Calls made by other processes targeting this process:
>>     task_for_pid: 2
>>     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: 3456
>>     thread_create: 1
>>     thread_set_state: 0
>>
>> VM Region Summary:
>> ReadOnly portion of Libraries: Total=164.5M resident=135.0M(82%)
>> swapped_out_or_unallocated=29.4M(18%)
>> Writable regions: Total=120.5M written=9140K(7%) resident=23.7M(20%)
>> swapped_out=0K(0%) unallocated=96.8M(80%)
>>
>> REGION TYPE                      VIRTUAL
>> ===========                      =======
>> ATS (font support)                 32.9M
>> ATS (font support) (reserved)         4K        reserved VM address
>> space (unallocated)
>> CG backing stores                  9236K
>> CG shared images                   1216K
>> CoreServices                       3168K
>> MALLOC                             49.3M
>> MALLOC guard page                    48K
>> Memory tag=240                        4K
>> Memory tag=242                       12K
>> Memory tag=35                      7160K
>> Stack                              66.0M
>> VM_ALLOCATE                        16.5M
>> __DATA                             8108K
>> __DATA/__OBJC                       176K
>> __IMAGE                             528K
>> __LINKEDIT                         43.6M
>> __OBJC                             1704K
>> __OBJC/__DATA                        36K
>> __PAGEZERO                            4K
>> __TEXT                            120.8M
>> __UNICODE                           544K
>> mapped file                       119.5M
>> shared memory                       308K
>> ===========                      =======
>> TOTAL                             480.3M
>> TOTAL, minus reserved VM space    480.3M
>>
>> Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core
>> i7, 2.8 GHz, 8 GB, SMC 1.58f16
>> Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
>> Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
>> Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
>> 0x31364A53533531323634485A2D3147314131
>> Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
>> 0x31364A53533531323634485A2D3147314131
>> AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93),
>> Broadcom BCM43xx 1.0 (5.106.98.81.22)
>> Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming
>> serial ports
>> Network Service: AirPort, AirPort, en1
>> Serial ATA Device: ST9500420ASG, 500.11 GB
>> Serial ATA Device: MATSHITADVD-R   UJ-898
>> USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
>> USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id,
>> 0x0237, 0xfa120000 / 5
>> USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403,
>> 0xfa130000 / 4
>> USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
>> USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218,
>> 0xfa113000 / 7
>> USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
>> USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
>> USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
>>
>>
>>
>>
>> --
>> Dave Page
>> Blog: http://pgsnake.blogspot.com
>> Twitter: @pgsnake
>>
>> EnterpriseDB UK: http://www.enterprisedb.com
>> The Enterprise PostgreSQL Company
>
>
>
>
> --
> Akshay Joshi
> Senior Software Engineer
> EnterpriseDB Corporation
> The Enterprise PostgreSQL Company
> Phone: +91 20-3058-9522
> Mobile: +91 976-788-8246
>



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:


On Fri, Nov 2, 2012 at 10:03 PM, Dave Page <dpage@pgadmin.org> wrote:
Hi

On Fri, Nov 2, 2012 at 1:16 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>> If we're going to ignore saved passwords though, we probably need to
>> warn the user when they enable tunnelling (a message box if the option
>> is checked perhaps, and then un-check it).
>
>
>   Fixed. Attached is the new patch.

OK, that's looking much better. I've updated the patch to fix a merge
issue and tweak a message - please find the attached.

   Attached is the complete patch with your changes.

I have been seeing a crash during connection though. It was working in
my initial three or four tests, but now it seems to crash nearly every
time :-(. I'm using an identity file with a pass phrase, to connect to
a server inside our network (you can probably guess which one, but
that's not for public consumption :-p). The initial connection works,
and it seems to get halfway through restoring the environment (so it's
obviously connected to the server and run some queries), then I get
the crash below.

   I have not found any crash on my MAC machine. Is there any specific steps to reproduce it??. 

In trying to reproduce it, I've also seen "SSL SYSCALL error: EOF
detected" at what looks like the same point, on one occasion.

Process:         pgadmin3 [53513]
Path:            /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
Identifier:      pgadmin3
Version:         0
Code Type:       X86 (Native)
Parent Process:  launchd [228]
User ID:         501

Date/Time:       2012-11-02 16:28:07.061 +0000
OS Version:      Mac OS X 10.8.2 (12C60)
Report Version:  10

Interval Since Last Report:          586084 sec
Crashes Since Last Report:           38
Per-App Crashes Since Last Report:   8
Anonymous UUID:                      627C9BF8-3515-D883-1FBE-1FE4EB9B0BA0

Crashed Thread:  4

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
*** error for object 0x7bd04000: pointer being freed was not allocated


Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib         0x957a0d2e __poll + 10
1   libpq.5.dylib                 0x0176674b pqSocketCheck + 347
2   libpq.5.dylib                 0x017668a9 pqWait + 41
3   libpq.5.dylib                 0x01765e64 PQgetResult + 180
4   libpq.5.dylib                 0x0176634b PQexecFinish + 155
5   pgAdmin3-Debug                 0x000c5000
pgConn::ExecuteSet(wxString const&) + 230
6   pgAdmin3-Debug                 0x0041a374
pgDatabase::ExecuteSet(wxString const&) + 70
7   pgAdmin3-Debug                 0x004d90d9
pgTableFactory::CreateObjects(pgCollection*, ctlTree*, wxString
const&) + 7195
8   pgAdmin3-Debug                 0x005ac3b7
pgaCollectionFactory::CreateObjects(pgCollection*, ctlTree*, wxString
const&) + 47
9   pgAdmin3-Debug                 0x003f7f43
pgCollection::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
ctlSQLBox*) + 143
10  pgAdmin3-Debug                 0x000b3427
ctlTree::AppendObject(pgObject*, pgObject*) + 259
11  pgAdmin3-Debug                 0x000b355b
ctlTree::AppendCollection(pgObject*, pgaFactory&) + 47
12  pgAdmin3-Debug                 0x0049af21
pgSchemaBase::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
ctlSQLBox*) + 4371
13  pgAdmin3-Debug                 0x00474858
pgObject::ShowTree(frmMain*, ctlTree*, ctlListView*, ctlSQLBox*) + 588
14  pgAdmin3-Debug                 0x0026bfde
frmMain::setDisplay(pgObject*, ctlListView*, ctlSQLBox*) + 60
15  pgAdmin3-Debug                 0x0026cdb6
frmMain::execSelChange(wxTreeItemId, bool) + 1158
16  pgAdmin3-Debug                 0x00269a33
frmMain::OnTreeSelChanged(wxTreeEvent&) + 61
17  libwx_base_carbonu-2.8.0.dylib 0x0149d130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
18  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
19  libwx_base_carbonu-2.8.0.dylib 0x0151f371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
20  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
21  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
22  libwx_macu_core-2.8.0.dylib   0x011a1eea
wxWindowBase::TryParent(wxEvent&) + 66
23  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
wxEvtHandler::ProcessEvent(wxEvent&) + 237
24  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
25  libwx_macu_core-2.8.0.dylib   0x011c958c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
26  libwx_macu_core-2.8.0.dylib   0x011d73d7
wxGenericTreeCtrl::DoSelectItem(wxTreeItemId const&, bool, bool) + 743
27  libwx_macu_core-2.8.0.dylib   0x011d7485
wxGenericTreeCtrl::SelectItem(wxTreeItemId const&, bool) + 95
28  pgAdmin3-Debug                 0x002bce34
frmMain::ReconnectServer(pgServer*, bool) + 1018
29  pgAdmin3-Debug                 0x00269b7c
frmMain::OnSelActivated(wxTreeEvent&) + 126
30  libwx_base_carbonu-2.8.0.dylib 0x0149d130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
31  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
32  libwx_base_carbonu-2.8.0.dylib 0x0151f371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
33  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
34  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
35  libwx_macu_core-2.8.0.dylib   0x011a1eea
wxWindowBase::TryParent(wxEvent&) + 66
36  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
wxEvtHandler::ProcessEvent(wxEvent&) + 237
37  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
38  libwx_macu_core-2.8.0.dylib   0x011c958c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
39  libwx_macu_core-2.8.0.dylib   0x011d35e0
wxGenericTreeCtrl::OnMouse(wxMouseEvent&) + 3078
40  libwx_base_carbonu-2.8.0.dylib 0x0149d130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
41  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
42  libwx_base_carbonu-2.8.0.dylib 0x0151f371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
43  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
44  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
45  libwx_macu_core-2.8.0.dylib   0x011c958c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
46  libwx_macu_core-2.8.0.dylib   0x010f3f36
wxMacTopLevelMouseEventHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 1286
47  libwx_macu_core-2.8.0.dylib   0x010f1108
wxMacTopLevelEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*) + 4344
48  com.apple.HIToolbox           0x99a8cb6b
_InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) +
36
49  com.apple.HIToolbox           0x99914594
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 1343
50  com.apple.HIToolbox           0x99913980
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 430
51  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
52  com.apple.HIToolbox           0x999477b7
ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 2141
53  com.apple.HIToolbox           0x99914a3f
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 2538
54  com.apple.HIToolbox           0x99913980
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 430
55  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
56  libwx_macu_core-2.8.0.dylib   0x01093075
wxApp::MacHandleOneEvent(void*) + 41
57  libwx_macu_core-2.8.0.dylib   0x01093168 wxApp::MacDoOneEvent() + 144
58  libwx_macu_core-2.8.0.dylib   0x010ac38e wxEventLoop::Dispatch() + 32
59  libwx_macu_core-2.8.0.dylib   0x0114ce45 wxEventLoopManual::Run() + 131
60  libwx_macu_core-2.8.0.dylib   0x011264eb wxAppBase::MainLoop() + 67
61  libwx_base_carbonu-2.8.0.dylib 0x014d2dae wxEntry(int&, wchar_t**) + 110
62  libwx_base_carbonu-2.8.0.dylib 0x014d2e62 wxEntry(int&, char**) + 50
63  pgAdmin3-Debug                 0x0007460e main + 30
64  libdyld.dylib                 0x91bb2725 start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib         0x957a09ae kevent + 10
1   libdispatch.dylib             0x91b9ec71 _dispatch_mgr_invoke + 993
2   libdispatch.dylib             0x91b9e7a9 _dispatch_mgr_thread + 53

Thread 2:
0   libsystem_kernel.dylib         0x9579ee9a __accept + 10
1   pgAdmin3-Debug                 0x005c8926 CSSHTunnelThread::Entry() + 136
2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
wxThreadInternal::MacThreadStart(void*) + 155
3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
5   libsystem_c.dylib             0x97828cee thread_start + 34

Thread 3:
0   libsystem_kernel.dylib         0x9579fbe6 __select + 10
1   pgAdmin3-Debug                 0x005c91c0 CSubThread::Entry() + 1008
2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
wxThreadInternal::MacThreadStart(void*) + 155
3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
5   libsystem_c.dylib             0x97828cee thread_start + 34

Thread 4 Crashed:
0   libsystem_kernel.dylib         0x9579fa6a __pthread_kill + 10
1   libsystem_c.dylib             0x9783facf pthread_kill + 101
2   libsystem_c.dylib             0x978764f8 abort + 168
3   libsystem_c.dylib             0x97858da3 free + 428
4   pgAdmin3-Debug                 0x005cd105 _libssh2_channel_read + 373
5   pgAdmin3-Debug                 0x005cd21a libssh2_channel_read_ex + 154
6   pgAdmin3-Debug                 0x005c90c8 CSubThread::Entry() + 760
7   libwx_base_carbonu-2.8.0.dylib 0x015159e7
wxThreadInternal::MacThreadStart(void*) + 155
8   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
9   libsystem_c.dylib             0x9783e557 _pthread_start + 344
10  libsystem_c.dylib             0x97828cee thread_start + 34

Thread 4 crashed with X86 Thread State (32-bit):
  eax: 0x00000000  ebx: 0x00000004  ecx: 0xb0201d5c  edx: 0x9579fa6a
  edi: 0xb0207000  esi: 0x00000006  ebp: 0xb0201d78  esp: 0xb0201d5c
   ss: 0x00000023  efl: 0x00000206  eip: 0x9579fa6a   cs: 0x0000000b
   ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
  cr2: 0x031bd000
Logical CPU: 0

Binary Images:
   0x5c000 -   0x8c7ff7 +pgAdmin3-Debug (0)
<F369D1D7-3C67-3C59-956C-E7D9D5A4DC3C>
/Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
  0xbdd000 -   0xc8fff3 +libwx_macu_stc-2.8.0.dylib (9)
<9FA0E41A-986E-3566-9EE2-6E36770591AA>
/usr/local/lib/libwx_macu_stc-2.8.0.dylib
  0xcc9000 -   0xd7affb +libwx_macu_richtext-2.8.0.dylib (9)
<2864E8E2-BCFE-3714-8CEE-A2D39952B9DA>
/usr/local/lib/libwx_macu_richtext-2.8.0.dylib
  0xdcf000 -   0xe15ff3 +libwx_macu_aui-2.8.0.dylib (9)
<55917725-2CBA-3CB5-A5C6-523636675B5C>
/usr/local/lib/libwx_macu_aui-2.8.0.dylib
  0xe3f000 -   0xea3ffb +libwx_macu_xrc-2.8.0.dylib (9)
<A75611FF-93EC-3DFD-A431-AB84F95903D9>
/usr/local/lib/libwx_macu_xrc-2.8.0.dylib
  0xed9000 -   0xee9ffb +libwx_macu_qa-2.8.0.dylib (9)
<59AECB8D-B37B-3179-B510-F08F4A459D76>
/usr/local/lib/libwx_macu_qa-2.8.0.dylib
  0xefd000 -   0xf62ff7 +libwx_macu_html-2.8.0.dylib (9)
<AF1472F1-D5C3-3631-9D98-B77EBEF4DC0F>
/usr/local/lib/libwx_macu_html-2.8.0.dylib
  0xfa8000 -  0x1021ff7 +libwx_macu_adv-2.8.0.dylib (9)
<09C8FC76-01BD-36A4-950D-8A4806273396>
/usr/local/lib/libwx_macu_adv-2.8.0.dylib
 0x107b000 -  0x12fcff3 +libwx_macu_core-2.8.0.dylib (9)
<9D13B673-05DE-3F72-96A7-0185395CFC31>
/usr/local/lib/libwx_macu_core-2.8.0.dylib
 0x1455000 -  0x145eff3 +libwx_base_carbonu_xml-2.8.0.dylib (9)
<E947A667-B081-3837-8D28-CE975268D606>
/usr/local/lib/libwx_base_carbonu_xml-2.8.0.dylib
 0x1464000 -  0x1482ff7 +libwx_base_carbonu_net-2.8.0.dylib (9)
<3052FB55-C0B6-340C-8E27-63F976E6B485>
/usr/local/lib/libwx_base_carbonu_net-2.8.0.dylib
 0x1498000 -  0x157dfef +libwx_base_carbonu-2.8.0.dylib (9)
<56AB58B3-7B68-374C-B132-9ADB93F1660B>
/usr/local/lib/libwx_base_carbonu-2.8.0.dylib
 0x15e6000 -  0x16fefef +libxml2.2.dylib (10.8)
<CA025D0B-A10C-32E5-9A2F-75EF0173B60E> /usr/local/lib/libxml2.2.dylib
 0x1725000 -  0x1752ff7 +libxslt.1.dylib (3.26)
<7B167347-7009-3315-9D84-E41393F487DB> /usr/local/lib/libxslt.1.dylib
 0x175c000 -  0x1776ff7 +libpq.5.dylib (5.4)
<05AE305F-E3CB-3CEE-9498-6C59F302A2C9>
/usr/local/pgsql/lib/libpq.5.dylib
 0x1780000 -  0x189eff3  com.apple.WebKit (8536 - 8536.26.14)
<C98F734D-D579-3F89-9A58-9EE890B1748E>
/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
 0x1950000 -  0x25dfff3  com.apple.WebCore (8536 - 8536.26.14)
<82E97E6B-3F31-39A7-B41F-CD308E6EF238>
/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
 0x2d62000 -  0x2d78ffc  libexpat.1.dylib (12)
<D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
 0x2dcf000 -  0x2e8dff3  ColorSyncDeprecated.dylib (400)
<35E3054C-5DF1-30D4-A368-C4FDB0992373>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
 0x2ee1000 -  0x2ee2ffd  com.apple.textencoding.unicode (2.5 - 2.5)
<4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2>
/System/Library/TextEncodings/Unicode
Encodings.bundle/Contents/MacOS/Unicode Encodings
 0x304a000 -  0x3057ff3  com.apple.Librarian (1.1 - 1)
<88A55A5E-40FF-3234-8394-2317120B79AB>
/System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
 0x31a2000 -  0x31a3ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1)
<098CE576-3239-3B41-9141-A5BE6E476C84>
/System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/DictationServicesCore.framework/DictationServicesCore
 0x31b1000 -  0x31b5fff  com.apple.CommonCocoaPanels (4.0 - 16)
<7676B15F-69E2-39D2-9F35-9D2959A99079>
/System/Library/CoreServices/CommonCocoaPanels.bundle/Contents/MacOS/CommonCocoaPanels
0x8fe5b000 - 0x8fe8de57  dyld (210.2.3)
<23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
0x90007000 - 0x90008fff  libquarantine.dylib (52)
<D526310F-DC77-37EA-8F5F-83928EFA3262>
/usr/lib/system/libquarantine.dylib
0x90038000 - 0x90064ff7  libsystem_info.dylib (406.17)
<AA5611DB-A944-3072-B6BE-ACAB08689547>
/usr/lib/system/libsystem_info.dylib
0x90065000 - 0x90068ff9  libCGXType.A.dylib (324.6)
<3004616B-51F6-3B9D-8B85-DCCA3DF9BC10>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x90069000 - 0x901f2ff7  com.apple.vImage (6.0 - 6.0)
<1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x901f3000 - 0x90235ff7  libauto.dylib (185.1)
<B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
0x9034f000 - 0x9076cfff  FaceCoreLight (2.4.1)
<571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
/System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x9076d000 - 0x907ffffb  libvMisc.dylib (380.6)
<6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x90800000 - 0x90801fff  libDiagnosticMessagesClient.dylib (8)
<39B3D25A-148A-3936-B800-0D393A00E64F>
/usr/lib/libDiagnosticMessagesClient.dylib
0x90802000 - 0x90802fff  com.apple.ApplicationServices (45 - 45)
<677C4ACC-9D12-366F-8A87-B898AC806DD9>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x90803000 - 0x90805fff  libCVMSPluginSupport.dylib (8.6.1)
<8A174BD9-992E-351D-8F9A-DF6991723ABE>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x90843000 - 0x90843fff  com.apple.Accelerate.vecLib (3.8 - vecLib
3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x90844000 - 0x9089bff7  com.apple.ScalableUserInterface (1.0 - 1)
<2B5E454B-BC49-3E85-B54D-1950397C448C>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x9089c000 - 0x90916ff7  com.apple.securityfoundation (6.0 - 55115.4)
<A959B2F5-9D9D-3C93-A62A-7399594CF238>
/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x90917000 - 0x90917fff  libSystem.B.dylib (169.3)
<81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
0x90943000 - 0x909a0fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0)
<9549B81F-4425-34EE-802B-F462068DC0C5>
/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x909a1000 - 0x909bfff3  com.apple.openscripting (1.3.6 - 148.2)
<55738D66-CC15-3F43-9265-00C3322D39C4>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x909c0000 - 0x909e4fff  libJPEG.dylib (845)
<547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x909e5000 - 0x909effff  com.apple.speech.recognition.framework (4.1.5
- 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x909f0000 - 0x90a10ffd  com.apple.ChunkingLibrary (2.0 - 133.2)
<FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E>
/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x90a89000 - 0x90b81ff9  libsqlite3.dylib (138.1)
<AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
0x90b82000 - 0x90b8dfff  libcommonCrypto.dylib (60026)
<A6C6EDB8-7E69-3827-81F3-9A74D0935461>
/usr/lib/system/libcommonCrypto.dylib
0x90b8e000 - 0x90b9affa  com.apple.CrashReporterSupport (10.8.2 - 415)
<BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21>
/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x90b9b000 - 0x90ba4ff9  com.apple.CommonAuth (3.0 - 2.0)
<A1A6CC3D-AA88-3519-A305-9B5D76C5D63B>
/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x90ba5000 - 0x90bb2fff  libGL.dylib (8.6.1)
<C7A3917A-C444-33CC-8599-BB9CD8C12BC4>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x90e21000 - 0x90e21fff  com.apple.Carbon (154 - 155)
<604ADD9D-5835-3294-842E-3A4AEBCCB548>
/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x90e22000 - 0x90e4bff7  libRIP.A.dylib (324.6)
<7976E6A2-A489-33F5-A727-7634DDE3B761>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x90e53000 - 0x90e59fff  libGFXShared.dylib (8.6.1)
<E32A7266-FCDD-352C-9C2A-8939265974AF>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x90e5a000 - 0x90ea8ffb  libFontRegistry.dylib (100)
<3B8350C2-4D8F-38C4-A22E-2F855D7E83D1>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x90ea9000 - 0x90f2eff7  com.apple.SearchKit (1.4.0 - 1.4.0)
<454E950F-291C-3E95-8F35-05CA0AD6B327>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x90f72000 - 0x90f9fffb  com.apple.CoreServicesInternal (154.2 -
154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x90fa2000 - 0x90fabffd  com.apple.audio.SoundManager (4.0 - 4.0)
<ABC5FE40-B222-36EB-9905-5C8C4BFD8C87>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x90fac000 - 0x912c9ff3  com.apple.Foundation (6.8 - 945.11)
<03B242AC-519C-3683-AA52-E73536B3D55F>
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x912ca000 - 0x9130cffb  com.apple.RemoteViewServices (2.0 - 80.5)
<60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9>
/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x9130d000 - 0x915b0ffb  com.apple.CoreImage (8.2.2 - 1.0.1)
<85BFFB09-D765-3F5F-AF65-FB136DDCAEF3>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x915b1000 - 0x91620ffb  com.apple.Heimdal (3.0 - 2.0)
<1ABF438B-30E6-3165-968C-E2EA1A9DF1FD>
/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x91621000 - 0x91678ff3  com.apple.HIServices (1.20 - 417)
<561A770B-8523-3D09-A763-11F872779A4C>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x91679000 - 0x91784ff7  libJP2.dylib (845)
<D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91785000 - 0x9178dfff  libcopyfile.dylib (89)
<4963541B-0254-371B-B29A-B6806888949B>
/usr/lib/system/libcopyfile.dylib
0x9178e000 - 0x917e7fff  com.apple.AE (645.3 - 645.3)
<6745659F-006D-3F25-94D6-DF944E9A01FD>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91885000 - 0x9191cff7  com.apple.ink.framework (10.8.2 - 150)
<D90FF7BC-6B90-39F1-AC52-670269947C58>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x9191d000 - 0x91b99ff7  com.apple.QuickTime (7.7.1 - 2599.13)
<FE609160-E1EF-341D-9B6A-205D3E03A4D2>
/System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x91b9a000 - 0x91bacff7  libdispatch.dylib (228.23)
<86EF7D45-2D97-3465-A449-95038AE5DABA>
/usr/lib/system/libdispatch.dylib
0x91bb0000 - 0x91bb2fff  libdyld.dylib (210.2.3)
<05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
0x91bb3000 - 0x91bc0ff7  com.apple.AppleFSCompression (49 - 1.0)
<166AA1F8-E50A-3533-A3B5-8737C5118CC3>
/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x91bc1000 - 0x91c06ff5  com.apple.opencl (2.1.20 - 2.1.20)
<41C4AE6E-67B6-33E2-A9B6-BF6F01580B16>
/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x91c51000 - 0x91c5bfff  libsystem_notify.dylib (98.5)
<7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
/usr/lib/system/libsystem_notify.dylib
0x91d6d000 - 0x91d74ff3  com.apple.NetFS (5.0 - 4.0)
<1F7041F2-4E97-368C-8F5D-24153D81BBDB>
/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x91d75000 - 0x91ddbfff  com.apple.print.framework.PrintCore (8.1 -
387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x91de6000 - 0x91dedffb  libunwind.dylib (35.1)
<E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
0x91e68000 - 0x91e76ff7  libz.1.dylib (43)
<245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
0x91e77000 - 0x91e78fff  libdnsinfo.dylib (453.18)
<41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F>
/usr/lib/system/libdnsinfo.dylib
0x91e79000 - 0x91e83ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
<9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x91ede000 - 0x91f8dff7  com.apple.CoreText (260.0 - 275.16)
<873ADCD9-D361-3753-A220-CDD289196AD8>
/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x91f8e000 - 0x91f8efff  com.apple.Accelerate (1.8 - Accelerate 1.8)
<4EC0548E-3A3F-310D-A366-47B51D5B6398>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91f8f000 - 0x91f90fff  libsystem_sandbox.dylib (220)
<4E42390B-25EC-3530-AF01-337E430C16EB>
/usr/lib/system/libsystem_sandbox.dylib
0x91f91000 - 0x91fd6ff7  com.apple.NavigationServices (3.7 - 200)
<F6531764-6E43-3AF3-ACDD-8A5551EF016A>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x91fd7000 - 0x91fd8fff  liblangid.dylib (116)
<E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
0x91fd9000 - 0x92071fff  com.apple.CoreServices.OSServices (557.4 -
557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x926ff000 - 0x92702ff7  com.apple.TCC (1.0 - 1)
<437D76CD-6437-3B55-BE2C-A53508858256>
/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x92861000 - 0x92876fff  com.apple.ImageCapture (8.0 - 8.0)
<B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x9290f000 - 0x9292cff7  libresolv.9.dylib (51)
<B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
0x9292d000 - 0x9292dfff  com.apple.CoreServices (57 - 57)
<956C6C6D-A5DD-314F-9C57-4A61D41F30CE>
/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x92d2e000 - 0x92d3eff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
<875363E7-6D02-3229-A9DD-E5A5568A7D61>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x92e16000 - 0x92e22ffe  libkxld.dylib (2050.18.24)
<48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
0x92e23000 - 0x93128ff7  com.apple.CoreServices.CarbonCore (1037.3 -
1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x93129000 - 0x93129fff  com.apple.vecLib (3.8 - vecLib 3.8)
<83160DD1-5614-3E34-80EB-97041016EF1F>
/System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x9312a000 - 0x93185fff  com.apple.htmlrendering (77 - 1.1.4)
<5C0C669F-AE07-3983-B38F-EB829B5CE609>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x93186000 - 0x931aafff  com.apple.PerformanceAnalysis (1.16 - 16)
<18DE0F9F-1264-394D-AC56-6B2A1771DFBE>
/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x931ab000 - 0x93220ff7  com.apple.ApplicationServices.ATS (332 -
341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x93221000 - 0x93224ff7  libcompiler_rt.dylib (30)
<CE5DBDB4-0124-3E2B-9105-989DF98DD108>
/usr/lib/system/libcompiler_rt.dylib
0x93225000 - 0x93287fff  libc++.1.dylib (65.1)
<C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
0x93288000 - 0x9333cfff  com.apple.coreui (2.0 - 181.1)
<C15ABF35-B7F5-34ED-A461-386DAF65D96B>
/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x9333d000 - 0x936f5ffa  libLAPACK.dylib (1073.4)
<9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x93702000 - 0x93702ffd  libOpenScriptingUtil.dylib (148.2)
<907E25B1-4F50-3461-B8D5-733C687EB534>
/usr/lib/libOpenScriptingUtil.dylib
0x93703000 - 0x9371cfff  com.apple.Kerberos (2.0 - 1)
<9BDE8F4D-DBC3-34D1-852C-898D3655A611>
/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x9394e000 - 0x93b0affd  libicucore.A.dylib (491.11.1)
<B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
0x93b3b000 - 0x93b3cfff  libremovefile.dylib (23.1)
<98622D14-DAAB-3AD8-A5D9-C322BF572A98>
/usr/lib/system/libremovefile.dylib
0x93cb4000 - 0x93d4efff  com.apple.CoreSymbolication (3.0 - 87)
<6A27BBE5-6EF0-3D5D-A485-2145826B9796>
/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x93d4f000 - 0x93d50ffd  com.apple.TrustEvaluationAgent (2.0 - 23)
<E42347C0-2D3C-36A4-9200-757FFA61B388>
/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x93d51000 - 0x93e3aff7  libxml2.2.dylib (22.3)
<015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
0x93e45000 - 0x93e45fff  com.apple.Cocoa (6.7 - 19)
<354094F0-F36B-36F9-BF5F-FD60590FBEB9>
/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x93e46000 - 0x93e52ff7  com.apple.NetAuth (4.0 - 4.0)
<4983C4B8-9D95-3C4D-897E-07743326487E>
/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x93e53000 - 0x93e86ff5  libssl.0.9.8.dylib (47)
<3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
0x93e87000 - 0x93eefff7  com.apple.framework.IOKit (2.0 - 755.18.10)
<9A80E97E-544F-3A45-916D-6DB7ED217E33>
/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x93f5c000 - 0x93fb6fff  com.apple.Symbolication (1.3 - 93)
<684ECF0D-D416-3DF8-8B5B-3902953853A8>
/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x9402a000 - 0x940caff7  com.apple.QD (3.42 - 285)
<1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x947d3000 - 0x9492bffb  com.apple.audio.toolbox.AudioToolbox (1.8 -
1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1>
/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9492c000 - 0x94930ffc  libGIF.dylib (845)
<714E9F0D-D7A3-3F58-B46E-FCBE0F144B23>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x94931000 - 0x94a2fff7  libFontParser.dylib (84.5)
<B3006327-7B2D-3966-A56A-BD85F1D71641>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x94a30000 - 0x94a37ffe  com.apple.agl (3.2.1 - AGL-3.2.1)
<8E0411D3-19F7-30E1-92A2-337F7F0EBCDA>
/System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x94a38000 - 0x94b29ffc  libiconv.2.dylib (34)
<B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
0x94b2a000 - 0x94b5bfff  com.apple.DictionaryServices (1.2 - 184.4)
<0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x94b5c000 - 0x94b6fff9  com.apple.MultitouchSupport.framework (235.28
- 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A>
/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x94f59000 - 0x95170fff  com.apple.CoreData (106.1 - 407.7)
<17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x95171000 - 0x95172ffd  libunc.dylib (25)
<58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
0x954ec000 - 0x954efffc  libpam.2.dylib (20)
<FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
0x954f0000 - 0x954fefff  com.apple.opengl (1.8.6 - 1.8.6)
<1AD1AE7B-B57B-35B5-B571-32A34F0DA737>
/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x9578b000 - 0x957a5ffc  libsystem_kernel.dylib (2050.18.24)
<C17D49D0-7961-3B67-B443-C788C6E5AA76>
/usr/lib/system/libsystem_kernel.dylib
0x957a6000 - 0x957cbffb  com.apple.framework.familycontrols (4.1 -
410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1>
/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x95a66000 - 0x95a6affe  libcache.dylib (57)
<834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
0x95e0b000 - 0x95e0effd  libCoreVMClient.dylib (24.4)
<C54E8FD0-61EC-3DC8-8631-54288AC66AC8>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x95e0f000 - 0x95f5cffb  com.apple.CFNetwork (596.2.3 - 596.2.3)
<1221EF86-659B-3136-AB57-0CC6B130CDA2>
/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x95f5d000 - 0x95f69ff8  libbz2.1.0.dylib (29)
<7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
0x95f6a000 - 0x96077ff3  com.apple.ImageIO.framework (3.2.0 - 845)
<BF959BCB-C30A-3680-B7C2-91B327B2B63B>
/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x96078000 - 0x960c6ff3  com.apple.SystemConfiguration (1.12.2 -
1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988>
/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x960cc000 - 0x960d0fff  com.apple.IOSurface (86.0.3 - 86.0.3)
<E3A4DB0A-1C1A-31E3-A550-5C0E1C874509>
/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x960d1000 - 0x96135fff  com.apple.datadetectorscore (4.0 - 269.1)
<4D155F09-1A60-325A-BCAC-1B858C2C051B>
/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x96136000 - 0x962aeff5  com.apple.QuartzCore (1.8 - 304.0)
<0B0EC55A-9084-3E28-9A84-1813CE3FAA9B>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x962af000 - 0x962bdfff  libxar.1.dylib (105)
<343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
0x962c2000 - 0x963cf057  libobjc.A.dylib (532.2)
<FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
0x963d0000 - 0x9644cffb  libType1Scaler.dylib (101.1)
<0D94D786-29F7-33DB-B64B-B264FA5EACD2>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
0x9644d000 - 0x96483ffb  com.apple.DebugSymbols (98 - 98)
<9A9ADA0A-E487-3C8F-9998-286EE04C235A>
/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x96484000 - 0x964a1fff  libCRFSuite.dylib (33)
<C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
0x964a2000 - 0x964e3ff7  libcups.2.dylib (327)
<F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
0x964e4000 - 0x966ccff3  com.apple.CoreFoundation (6.8 - 744.12)
<E939CEA0-493C-3233-9983-5070981BB350>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x966cd000 - 0x967e9ff7  com.apple.desktopservices (1.7.2 - 1.7.2)
<8E74D101-8398-34F1-A463-B4950680A597>
/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x968df000 - 0x969c0fff  libcrypto.0.9.8.dylib (47)
<D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
0x969c1000 - 0x96a3dff3  com.apple.Metadata (10.7.0 - 707.3)
<6B6A6216-23D0-34CE-8099-BEE9BA42501E>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x96a3e000 - 0x96a46fff  com.apple.DiskArbitration (2.5.1 - 2.5.1)
<25A7232F-9B6A-3746-A3A8-12479D086B1E>
/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x96a4b000 - 0x96a4efff  com.apple.help (1.3.2 - 42)
<AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x96a4f000 - 0x96a4fffd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
<4C13DEA2-1EB0-3D06-901A-DB93184C06F0>
/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x97789000 - 0x977bcff3  com.apple.GSS (3.0 - 2.0)
<B1D719C1-B000-3BE3-B747-329D608585DD>
/System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x977bd000 - 0x977c4fff  liblaunch.dylib (442.26.2)
<310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
0x97828000 - 0x978e5feb  libsystem_c.dylib (825.25)
<B1F6916A-F558-38B5-A18C-D9733625FDC9>
/usr/lib/system/libsystem_c.dylib
0x978e6000 - 0x978eafff  com.apple.CommonPanels (1.2.5 - 94)
<6B3E7E53-7708-3DA2-8C50-59C2B4735DE1>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x978eb000 - 0x984a7ffb  com.apple.AppKit (6.8 - 1187.34)
<06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x984a8000 - 0x984acff7  libmacho.dylib (829)
<5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
0x984ad000 - 0x988effff  com.apple.CoreGraphics (1.600.0 - 324.6)
<66556166-F9A7-3EEC-A562-46061C7A79E4>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x988f0000 - 0x98906fff  com.apple.CFOpenDirectory (10.8 - 151.10)
<56C3F276-BD1F-3031-8CF9-8F4F481A534E>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x98907000 - 0x98915ff3  libsystem_network.dylib (77.10)
<7FBF5A15-97BA-3721-943E-E77F0C40DBE1>
/usr/lib/system/libsystem_network.dylib
0x98916000 - 0x9893bff7  com.apple.CoreVideo (1.8 - 99.3)
<5B872AC0-E82D-3475-A3F9-FD95F380560D>
/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x989da000 - 0x989e2fff  com.apple.CommerceCore (1.0 - 26)
<AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5>
/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x989e3000 - 0x98aa1ff3  com.apple.ColorSync (4.8.0 - 4.8.0)
<EFEDCB37-4F20-3CEC-A185-5D2976E11BAC>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x98aa2000 - 0x98aa2fff  libkeymgr.dylib (25)
<D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
0x98aa3000 - 0x98b0bfe7  libvDSP.dylib (380.6)
<55780308-4DCA-3B10-9703-EAFC3E13A3FA>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x98bd6000 - 0x98be0fff  libCSync.A.dylib (324.6)
<D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x98be1000 - 0x98c45ff3  libstdc++.6.dylib (56)
<F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
0x98c51000 - 0x98c70ff3  com.apple.Ubiquity (1.2 - 243.10)
<D2C9F356-1681-31D2-B292-5227E2DDEB0B>
/System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x98c71000 - 0x98c78fff  libsystem_dnssd.dylib (379.32.1)
<6A505284-2382-3F27-B96F-15FFDACF004E>
/usr/lib/system/libsystem_dnssd.dylib
0x98c79000 - 0x98caefff  libTrueTypeScaler.dylib (84.5)
<2598F930-5E6B-37D7-B1E6-18181A972C6E>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x98cc0000 - 0x98cfbfe7  libGLImage.dylib (8.6.1)
<A3442557-18D5-332E-8859-423D5A20EBBE>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x98cfc000 - 0x98d13fff  com.apple.GenerationalStorage (1.1 - 132.2)
<93694E0D-35D3-3633-976E-F354CBD92F54>
/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x98d14000 - 0x98d16ffb  libRadiance.dylib (845)
<3F87840F-217D-3074-A29D-919BAAED2F4A>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x98d17000 - 0x98debfff  com.apple.backup.framework (1.4.1 - 1.4.1)
<55F2A679-9B21-3F43-A580-4C2ECF6A5FC5>
/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x98dec000 - 0x98df0fff  com.apple.OpenDirectory (10.8 - 151.10)
<A1858D81-086F-3BF5-87E3-9B70409FFDF6>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x98f26000 - 0x98f72fff  libcorecrypto.dylib (106.2)
<20EBADBA-D6D6-36F0-AE80-168E9AF13DB6>
/usr/lib/system/libcorecrypto.dylib
0x98fdd000 - 0x99087fff  com.apple.LaunchServices (539.7 - 539.7)
<AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x99097000 - 0x990dbfff  libGLU.dylib (8.6.1)
<06BAFDCA-800C-35E3-B1A3-F05E105B86AB>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x990dc000 - 0x990f1fff  com.apple.speech.synthesis.framework (4.1.12
- 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x990f2000 - 0x9910eff7  libPng.dylib (845)
<14C43094-C670-3575-BF9B-3A967E05EAC0>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x9910f000 - 0x993cffff  com.apple.security (7.0 - 55179.1)
<CB470E48-621B-34D9-9E78-8B773358CB6B>
/System/Library/Frameworks/Security.framework/Versions/A/Security
0x993d0000 - 0x9941fff6  libTIFF.dylib (845)
<989A2EB9-3A49-3157-8E9C-B16E6005BC64>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x99420000 - 0x99420fff  libsystem_blocks.dylib (59)
<3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
/usr/lib/system/libsystem_blocks.dylib
0x9943b000 - 0x99468ffe  libsystem_m.dylib (3022.6)
<9975D9C3-3B71-38E3-AA21-C5C5F9D9C431>
/usr/lib/system/libsystem_m.dylib
0x994ba000 - 0x994d7fff  libxpc.dylib (140.41)
<1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
0x994d8000 - 0x99613ff7  libBLAS.dylib (1073.4)
<FF74A147-05E1-37C4-BC10-7DEB57FE5326>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9963a000 - 0x99663fff  libxslt.1.dylib (11.3)
<0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
0x99664000 - 0x998bcff1  com.apple.JavaScriptCore (8536 - 8536.26.7)
<75629E05-65FE-3699-8CDC-80C95015CF42>
/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x998bd000 - 0x998dffff  libc++abi.dylib (24.4)
<06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
0x998e0000 - 0x99cc3ff3  com.apple.HIToolbox (2.0 - 625)
<5A312E41-9940-363E-B891-90C4672E6850>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x99cc4000 - 0x99cd6fff  libbsm.0.dylib (32)
<DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
0x99cd7000 - 0x99cddfff  com.apple.print.framework.Print (8.0 - 258)
<12AEAD24-6924-3923-9E4A-C5D21231E639>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x99cde000 - 0x99ce0fff  com.apple.securityhi (4.0 - 55002)
<62E3AE75-61CB-341E-B2A0-CFC985A2BF7F>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x9a55e000 - 0x9a59dff7  com.apple.bom (12.0 - 192)
<0637E52C-D151-37B3-904F-8656B2FD44DD>
/System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 2
    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: 3456
    thread_create: 1
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=164.5M resident=135.0M(82%)
swapped_out_or_unallocated=29.4M(18%)
Writable regions: Total=120.5M written=9140K(7%) resident=23.7M(20%)
swapped_out=0K(0%) unallocated=96.8M(80%)

REGION TYPE                      VIRTUAL
===========                      =======
ATS (font support)                 32.9M
ATS (font support) (reserved)         4K        reserved VM address
space (unallocated)
CG backing stores                  9236K
CG shared images                   1216K
CoreServices                       3168K
MALLOC                             49.3M
MALLOC guard page                    48K
Memory tag=240                        4K
Memory tag=242                       12K
Memory tag=35                      7160K
Stack                              66.0M
VM_ALLOCATE                        16.5M
__DATA                             8108K
__DATA/__OBJC                       176K
__IMAGE                             528K
__LINKEDIT                         43.6M
__OBJC                             1704K
__OBJC/__DATA                        36K
__PAGEZERO                            4K
__TEXT                            120.8M
__UNICODE                           544K
mapped file                       119.5M
shared memory                       308K
===========                      =======
TOTAL                             480.3M
TOTAL, minus reserved VM space    480.3M

Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core
i7, 2.8 GHz, 8 GB, SMC 1.58f16
Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
0x31364A53533531323634485A2D3147314131
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
0x31364A53533531323634485A2D3147314131
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93),
Broadcom BCM43xx 1.0 (5.106.98.81.22)
Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming
serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: ST9500420ASG, 500.11 GB
Serial ATA Device: MATSHITADVD-R   UJ-898
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id,
0x0237, 0xfa120000 / 5
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218,
0xfa113000 / 7
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3




--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Attachment

Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:


On Mon, Nov 5, 2012 at 5:49 PM, Akshay Joshi <akshay.joshi@enterprisedb.com> wrote:


On Mon, Nov 5, 2012 at 5:42 PM, Dave Page <dpage@pgadmin.org> wrote:
Nope - just try connecting, disconnecting, connecting (lather, rinse,
repeat) and see what happens.

  Yes. It is reproducible will work on it.

     I have tried a lot to figure out the cause of the bug, but unable to find it yet. It is not reproducible on Windows and Linux(Ubuntu), only
     reproducible on MAC OSX. For the error "SSL SYSCALL error: EOF detected" I have googled and found it is because of network problem, but
     there is no network problem at our end.
 
     Will working on the same. Any pointers or suggestions??
 

On Mon, Nov 5, 2012 at 12:11 PM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>
> On Fri, Nov 2, 2012 at 10:03 PM, Dave Page <dpage@pgadmin.org> wrote:
>>
>> Hi
>>
>> On Fri, Nov 2, 2012 at 1:16 PM, Akshay Joshi
>> <akshay.joshi@enterprisedb.com> wrote:
>> >
>> >> If we're going to ignore saved passwords though, we probably need to
>> >> warn the user when they enable tunnelling (a message box if the option
>> >> is checked perhaps, and then un-check it).
>> >
>> >
>> >   Fixed. Attached is the new patch.
>>
>> OK, that's looking much better. I've updated the patch to fix a merge
>> issue and tweak a message - please find the attached.
>
>
>    Attached is the complete patch with your changes.
>>
>>
>> I have been seeing a crash during connection though. It was working in
>> my initial three or four tests, but now it seems to crash nearly every
>> time :-(. I'm using an identity file with a pass phrase, to connect to
>> a server inside our network (you can probably guess which one, but
>> that's not for public consumption :-p). The initial connection works,
>> and it seems to get halfway through restoring the environment (so it's
>> obviously connected to the server and run some queries), then I get
>> the crash below.
>
>
>    I have not found any crash on my MAC machine. Is there any specific steps
> to reproduce it??.
>>
>>
>> In trying to reproduce it, I've also seen "SSL SYSCALL error: EOF
>> detected" at what looks like the same point, on one occasion.
>>
>> Process:         pgadmin3 [53513]
>> Path:
>> /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
>> Identifier:      pgadmin3
>> Version:         0
>> Code Type:       X86 (Native)
>> Parent Process:  launchd [228]
>> User ID:         501
>>
>> Date/Time:       2012-11-02 16:28:07.061 +0000
>> OS Version:      Mac OS X 10.8.2 (12C60)
>> Report Version:  10
>>
>> Interval Since Last Report:          586084 sec
>> Crashes Since Last Report:           38
>> Per-App Crashes Since Last Report:   8
>> Anonymous UUID:                      627C9BF8-3515-D883-1FBE-1FE4EB9B0BA0
>>
>> Crashed Thread:  4
>>
>> Exception Type:  EXC_CRASH (SIGABRT)
>> Exception Codes: 0x0000000000000000, 0x0000000000000000
>>
>> Application Specific Information:
>> *** error for object 0x7bd04000: pointer being freed was not allocated
>>
>>
>> Thread 0:: Dispatch queue: com.apple.main-thread
>> 0   libsystem_kernel.dylib         0x957a0d2e __poll + 10
>> 1   libpq.5.dylib                 0x0176674b pqSocketCheck + 347
>> 2   libpq.5.dylib                 0x017668a9 pqWait + 41
>> 3   libpq.5.dylib                 0x01765e64 PQgetResult + 180
>> 4   libpq.5.dylib                 0x0176634b PQexecFinish + 155
>> 5   pgAdmin3-Debug                 0x000c5000
>> pgConn::ExecuteSet(wxString const&) + 230
>> 6   pgAdmin3-Debug                 0x0041a374
>> pgDatabase::ExecuteSet(wxString const&) + 70
>> 7   pgAdmin3-Debug                 0x004d90d9
>> pgTableFactory::CreateObjects(pgCollection*, ctlTree*, wxString
>> const&) + 7195
>> 8   pgAdmin3-Debug                 0x005ac3b7
>> pgaCollectionFactory::CreateObjects(pgCollection*, ctlTree*, wxString
>> const&) + 47
>> 9   pgAdmin3-Debug                 0x003f7f43
>> pgCollection::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
>> ctlSQLBox*) + 143
>> 10  pgAdmin3-Debug                 0x000b3427
>> ctlTree::AppendObject(pgObject*, pgObject*) + 259
>> 11  pgAdmin3-Debug                 0x000b355b
>> ctlTree::AppendCollection(pgObject*, pgaFactory&) + 47
>> 12  pgAdmin3-Debug                 0x0049af21
>> pgSchemaBase::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
>> ctlSQLBox*) + 4371
>> 13  pgAdmin3-Debug                 0x00474858
>> pgObject::ShowTree(frmMain*, ctlTree*, ctlListView*, ctlSQLBox*) + 588
>> 14  pgAdmin3-Debug                 0x0026bfde
>> frmMain::setDisplay(pgObject*, ctlListView*, ctlSQLBox*) + 60
>> 15  pgAdmin3-Debug                 0x0026cdb6
>> frmMain::execSelChange(wxTreeItemId, bool) + 1158
>> 16  pgAdmin3-Debug                 0x00269a33
>> frmMain::OnTreeSelChanged(wxTreeEvent&) + 61
>> 17  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 18  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 19  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 20  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 21  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 22  libwx_macu_core-2.8.0.dylib   0x011a1eea
>> wxWindowBase::TryParent(wxEvent&) + 66
>> 23  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
>> wxEvtHandler::ProcessEvent(wxEvent&) + 237
>> 24  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 25  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 26  libwx_macu_core-2.8.0.dylib   0x011d73d7
>> wxGenericTreeCtrl::DoSelectItem(wxTreeItemId const&, bool, bool) + 743
>> 27  libwx_macu_core-2.8.0.dylib   0x011d7485
>> wxGenericTreeCtrl::SelectItem(wxTreeItemId const&, bool) + 95
>> 28  pgAdmin3-Debug                 0x002bce34
>> frmMain::ReconnectServer(pgServer*, bool) + 1018
>> 29  pgAdmin3-Debug                 0x00269b7c
>> frmMain::OnSelActivated(wxTreeEvent&) + 126
>> 30  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 31  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 32  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 33  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 34  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 35  libwx_macu_core-2.8.0.dylib   0x011a1eea
>> wxWindowBase::TryParent(wxEvent&) + 66
>> 36  libwx_base_carbonu-2.8.0.dylib 0x0151ea97
>> wxEvtHandler::ProcessEvent(wxEvent&) + 237
>> 37  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 38  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 39  libwx_macu_core-2.8.0.dylib   0x011d35e0
>> wxGenericTreeCtrl::OnMouse(wxMouseEvent&) + 3078
>> 40  libwx_base_carbonu-2.8.0.dylib 0x0149d130
>> wxAppConsole::HandleEvent(wxEvtHandler*, void
>> (wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
>> 41  libwx_base_carbonu-2.8.0.dylib 0x0151e25b
>> wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
>> wxEvtHandler*, wxEvent&) + 125
>> 42  libwx_base_carbonu-2.8.0.dylib 0x0151f371
>> wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
>> 43  libwx_base_carbonu-2.8.0.dylib 0x0151ea6c
>> wxEvtHandler::ProcessEvent(wxEvent&) + 194
>> 44  libwx_base_carbonu-2.8.0.dylib 0x0151ea83
>> wxEvtHandler::ProcessEvent(wxEvent&) + 217
>> 45  libwx_macu_core-2.8.0.dylib   0x011c958c
>> wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
>> 46  libwx_macu_core-2.8.0.dylib   0x010f3f36
>> wxMacTopLevelMouseEventHandler(OpaqueEventHandlerCallRef*,
>> OpaqueEventRef*, void*) + 1286
>> 47  libwx_macu_core-2.8.0.dylib   0x010f1108
>> wxMacTopLevelEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
>> void*) + 4344
>> 48  com.apple.HIToolbox           0x99a8cb6b
>> _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
>> void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) +
>> 36
>> 49  com.apple.HIToolbox           0x99914594
>> DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
>> HandlerCallRec*) + 1343
>> 50  com.apple.HIToolbox           0x99913980
>> SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
>> HandlerCallRec*) + 430
>> 51  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
>> 52  com.apple.HIToolbox           0x999477b7
>> ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*,
>> OpaqueEventRef*, void*) + 2141
>> 53  com.apple.HIToolbox           0x99914a3f
>> DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
>> HandlerCallRec*) + 2538
>> 54  com.apple.HIToolbox           0x99913980
>> SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
>> HandlerCallRec*) + 430
>> 55  com.apple.HIToolbox           0x99927855 SendEventToEventTarget + 88
>> 56  libwx_macu_core-2.8.0.dylib   0x01093075
>> wxApp::MacHandleOneEvent(void*) + 41
>> 57  libwx_macu_core-2.8.0.dylib   0x01093168 wxApp::MacDoOneEvent() + 144
>> 58  libwx_macu_core-2.8.0.dylib   0x010ac38e wxEventLoop::Dispatch() + 32
>> 59  libwx_macu_core-2.8.0.dylib   0x0114ce45 wxEventLoopManual::Run() +
>> 131
>> 60  libwx_macu_core-2.8.0.dylib   0x011264eb wxAppBase::MainLoop() + 67
>> 61  libwx_base_carbonu-2.8.0.dylib 0x014d2dae wxEntry(int&, wchar_t**) +
>> 110
>> 62  libwx_base_carbonu-2.8.0.dylib 0x014d2e62 wxEntry(int&, char**) + 50
>> 63  pgAdmin3-Debug                 0x0007460e main + 30
>> 64  libdyld.dylib                 0x91bb2725 start + 1
>>
>> Thread 1:: Dispatch queue: com.apple.libdispatch-manager
>> 0   libsystem_kernel.dylib         0x957a09ae kevent + 10
>> 1   libdispatch.dylib             0x91b9ec71 _dispatch_mgr_invoke + 993
>> 2   libdispatch.dylib             0x91b9e7a9 _dispatch_mgr_thread + 53
>>
>> Thread 2:
>> 0   libsystem_kernel.dylib         0x9579ee9a __accept + 10
>> 1   pgAdmin3-Debug                 0x005c8926 CSSHTunnelThread::Entry() +
>> 136
>> 2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 5   libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 3:
>> 0   libsystem_kernel.dylib         0x9579fbe6 __select + 10
>> 1   pgAdmin3-Debug                 0x005c91c0 CSubThread::Entry() + 1008
>> 2   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 3   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 4   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 5   libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 4 Crashed:
>> 0   libsystem_kernel.dylib         0x9579fa6a __pthread_kill + 10
>> 1   libsystem_c.dylib             0x9783facf pthread_kill + 101
>> 2   libsystem_c.dylib             0x978764f8 abort + 168
>> 3   libsystem_c.dylib             0x97858da3 free + 428
>> 4   pgAdmin3-Debug                 0x005cd105 _libssh2_channel_read + 373
>> 5   pgAdmin3-Debug                 0x005cd21a libssh2_channel_read_ex +
>> 154
>> 6   pgAdmin3-Debug                 0x005c90c8 CSubThread::Entry() + 760
>> 7   libwx_base_carbonu-2.8.0.dylib 0x015159e7
>> wxThreadInternal::MacThreadStart(void*) + 155
>> 8   com.apple.CoreServices.CarbonCore 0x92eb9a7b PrivateMPEntryPoint + 68
>> 9   libsystem_c.dylib             0x9783e557 _pthread_start + 344
>> 10  libsystem_c.dylib             0x97828cee thread_start + 34
>>
>> Thread 4 crashed with X86 Thread State (32-bit):
>>   eax: 0x00000000  ebx: 0x00000004  ecx: 0xb0201d5c  edx: 0x9579fa6a
>>   edi: 0xb0207000  esi: 0x00000006  ebp: 0xb0201d78  esp: 0xb0201d5c
>>    ss: 0x00000023  efl: 0x00000206  eip: 0x9579fa6a   cs: 0x0000000b
>>    ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
>>   cr2: 0x031bd000
>> Logical CPU: 0
>>
>> Binary Images:
>>    0x5c000 -   0x8c7ff7 +pgAdmin3-Debug (0)
>> <F369D1D7-3C67-3C59-956C-E7D9D5A4DC3C>
>> /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
>>   0xbdd000 -   0xc8fff3 +libwx_macu_stc-2.8.0.dylib (9)
>> <9FA0E41A-986E-3566-9EE2-6E36770591AA>
>> /usr/local/lib/libwx_macu_stc-2.8.0.dylib
>>   0xcc9000 -   0xd7affb +libwx_macu_richtext-2.8.0.dylib (9)
>> <2864E8E2-BCFE-3714-8CEE-A2D39952B9DA>
>> /usr/local/lib/libwx_macu_richtext-2.8.0.dylib
>>   0xdcf000 -   0xe15ff3 +libwx_macu_aui-2.8.0.dylib (9)
>> <55917725-2CBA-3CB5-A5C6-523636675B5C>
>> /usr/local/lib/libwx_macu_aui-2.8.0.dylib
>>   0xe3f000 -   0xea3ffb +libwx_macu_xrc-2.8.0.dylib (9)
>> <A75611FF-93EC-3DFD-A431-AB84F95903D9>
>> /usr/local/lib/libwx_macu_xrc-2.8.0.dylib
>>   0xed9000 -   0xee9ffb +libwx_macu_qa-2.8.0.dylib (9)
>> <59AECB8D-B37B-3179-B510-F08F4A459D76>
>> /usr/local/lib/libwx_macu_qa-2.8.0.dylib
>>   0xefd000 -   0xf62ff7 +libwx_macu_html-2.8.0.dylib (9)
>> <AF1472F1-D5C3-3631-9D98-B77EBEF4DC0F>
>> /usr/local/lib/libwx_macu_html-2.8.0.dylib
>>   0xfa8000 -  0x1021ff7 +libwx_macu_adv-2.8.0.dylib (9)
>> <09C8FC76-01BD-36A4-950D-8A4806273396>
>> /usr/local/lib/libwx_macu_adv-2.8.0.dylib
>>  0x107b000 -  0x12fcff3 +libwx_macu_core-2.8.0.dylib (9)
>> <9D13B673-05DE-3F72-96A7-0185395CFC31>
>> /usr/local/lib/libwx_macu_core-2.8.0.dylib
>>  0x1455000 -  0x145eff3 +libwx_base_carbonu_xml-2.8.0.dylib (9)
>> <E947A667-B081-3837-8D28-CE975268D606>
>> /usr/local/lib/libwx_base_carbonu_xml-2.8.0.dylib
>>  0x1464000 -  0x1482ff7 +libwx_base_carbonu_net-2.8.0.dylib (9)
>> <3052FB55-C0B6-340C-8E27-63F976E6B485>
>> /usr/local/lib/libwx_base_carbonu_net-2.8.0.dylib
>>  0x1498000 -  0x157dfef +libwx_base_carbonu-2.8.0.dylib (9)
>> <56AB58B3-7B68-374C-B132-9ADB93F1660B>
>> /usr/local/lib/libwx_base_carbonu-2.8.0.dylib
>>  0x15e6000 -  0x16fefef +libxml2.2.dylib (10.8)
>> <CA025D0B-A10C-32E5-9A2F-75EF0173B60E> /usr/local/lib/libxml2.2.dylib
>>  0x1725000 -  0x1752ff7 +libxslt.1.dylib (3.26)
>> <7B167347-7009-3315-9D84-E41393F487DB> /usr/local/lib/libxslt.1.dylib
>>  0x175c000 -  0x1776ff7 +libpq.5.dylib (5.4)
>> <05AE305F-E3CB-3CEE-9498-6C59F302A2C9>
>> /usr/local/pgsql/lib/libpq.5.dylib
>>  0x1780000 -  0x189eff3  com.apple.WebKit (8536 - 8536.26.14)
>> <C98F734D-D579-3F89-9A58-9EE890B1748E>
>> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
>>  0x1950000 -  0x25dfff3  com.apple.WebCore (8536 - 8536.26.14)
>> <82E97E6B-3F31-39A7-B41F-CD308E6EF238>
>>
>> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
>>  0x2d62000 -  0x2d78ffc  libexpat.1.dylib (12)
>> <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
>>  0x2dcf000 -  0x2e8dff3  ColorSyncDeprecated.dylib (400)
>> <35E3054C-5DF1-30D4-A368-C4FDB0992373>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
>>  0x2ee1000 -  0x2ee2ffd  com.apple.textencoding.unicode (2.5 - 2.5)
>> <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2>
>> /System/Library/TextEncodings/Unicode
>> Encodings.bundle/Contents/MacOS/Unicode Encodings
>>  0x304a000 -  0x3057ff3  com.apple.Librarian (1.1 - 1)
>> <88A55A5E-40FF-3234-8394-2317120B79AB>
>> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
>>  0x31a2000 -  0x31a3ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1)
>> <098CE576-3239-3B41-9141-A5BE6E476C84>
>>
>> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/DictationServicesCore.framework/DictationServicesCore
>>  0x31b1000 -  0x31b5fff  com.apple.CommonCocoaPanels (4.0 - 16)
>> <7676B15F-69E2-39D2-9F35-9D2959A99079>
>>
>> /System/Library/CoreServices/CommonCocoaPanels.bundle/Contents/MacOS/CommonCocoaPanels
>> 0x8fe5b000 - 0x8fe8de57  dyld (210.2.3)
>> <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
>> 0x90007000 - 0x90008fff  libquarantine.dylib (52)
>> <D526310F-DC77-37EA-8F5F-83928EFA3262>
>> /usr/lib/system/libquarantine.dylib
>> 0x90038000 - 0x90064ff7  libsystem_info.dylib (406.17)
>> <AA5611DB-A944-3072-B6BE-ACAB08689547>
>> /usr/lib/system/libsystem_info.dylib
>> 0x90065000 - 0x90068ff9  libCGXType.A.dylib (324.6)
>> <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
>> 0x90069000 - 0x901f2ff7  com.apple.vImage (6.0 - 6.0)
>> <1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
>> 0x901f3000 - 0x90235ff7  libauto.dylib (185.1)
>> <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
>> 0x9034f000 - 0x9076cfff  FaceCoreLight (2.4.1)
>> <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
>>
>> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
>> 0x9076d000 - 0x907ffffb  libvMisc.dylib (380.6)
>> <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
>> 0x90800000 - 0x90801fff  libDiagnosticMessagesClient.dylib (8)
>> <39B3D25A-148A-3936-B800-0D393A00E64F>
>> /usr/lib/libDiagnosticMessagesClient.dylib
>> 0x90802000 - 0x90802fff  com.apple.ApplicationServices (45 - 45)
>> <677C4ACC-9D12-366F-8A87-B898AC806DD9>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
>> 0x90803000 - 0x90805fff  libCVMSPluginSupport.dylib (8.6.1)
>> <8A174BD9-992E-351D-8F9A-DF6991723ABE>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
>> 0x90843000 - 0x90843fff  com.apple.Accelerate.vecLib (3.8 - vecLib
>> 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
>> 0x90844000 - 0x9089bff7  com.apple.ScalableUserInterface (1.0 - 1)
>> <2B5E454B-BC49-3E85-B54D-1950397C448C>
>>
>> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
>> 0x9089c000 - 0x90916ff7  com.apple.securityfoundation (6.0 - 55115.4)
>> <A959B2F5-9D9D-3C93-A62A-7399594CF238>
>>
>> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
>> 0x90917000 - 0x90917fff  libSystem.B.dylib (169.3)
>> <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
>> 0x90943000 - 0x909a0fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0)
>> <9549B81F-4425-34EE-802B-F462068DC0C5>
>> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
>> 0x909a1000 - 0x909bfff3  com.apple.openscripting (1.3.6 - 148.2)
>> <55738D66-CC15-3F43-9265-00C3322D39C4>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
>> 0x909c0000 - 0x909e4fff  libJPEG.dylib (845)
>> <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
>> 0x909e5000 - 0x909effff  com.apple.speech.recognition.framework (4.1.5
>> - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
>> 0x909f0000 - 0x90a10ffd  com.apple.ChunkingLibrary (2.0 - 133.2)
>> <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E>
>>
>> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
>> 0x90a89000 - 0x90b81ff9  libsqlite3.dylib (138.1)
>> <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
>> 0x90b82000 - 0x90b8dfff  libcommonCrypto.dylib (60026)
>> <A6C6EDB8-7E69-3827-81F3-9A74D0935461>
>> /usr/lib/system/libcommonCrypto.dylib
>> 0x90b8e000 - 0x90b9affa  com.apple.CrashReporterSupport (10.8.2 - 415)
>> <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21>
>>
>> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
>> 0x90b9b000 - 0x90ba4ff9  com.apple.CommonAuth (3.0 - 2.0)
>> <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B>
>>
>> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
>> 0x90ba5000 - 0x90bb2fff  libGL.dylib (8.6.1)
>> <C7A3917A-C444-33CC-8599-BB9CD8C12BC4>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
>> 0x90e21000 - 0x90e21fff  com.apple.Carbon (154 - 155)
>> <604ADD9D-5835-3294-842E-3A4AEBCCB548>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
>> 0x90e22000 - 0x90e4bff7  libRIP.A.dylib (324.6)
>> <7976E6A2-A489-33F5-A727-7634DDE3B761>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
>> 0x90e53000 - 0x90e59fff  libGFXShared.dylib (8.6.1)
>> <E32A7266-FCDD-352C-9C2A-8939265974AF>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
>> 0x90e5a000 - 0x90ea8ffb  libFontRegistry.dylib (100)
>> <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
>> 0x90ea9000 - 0x90f2eff7  com.apple.SearchKit (1.4.0 - 1.4.0)
>> <454E950F-291C-3E95-8F35-05CA0AD6B327>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
>> 0x90f72000 - 0x90f9fffb  com.apple.CoreServicesInternal (154.2 -
>> 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
>>
>> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
>> 0x90fa2000 - 0x90fabffd  com.apple.audio.SoundManager (4.0 - 4.0)
>> <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
>> 0x90fac000 - 0x912c9ff3  com.apple.Foundation (6.8 - 945.11)
>> <03B242AC-519C-3683-AA52-E73536B3D55F>
>> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
>> 0x912ca000 - 0x9130cffb  com.apple.RemoteViewServices (2.0 - 80.5)
>> <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9>
>>
>> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
>> 0x9130d000 - 0x915b0ffb  com.apple.CoreImage (8.2.2 - 1.0.1)
>> <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3>
>>
>> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
>> 0x915b1000 - 0x91620ffb  com.apple.Heimdal (3.0 - 2.0)
>> <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD>
>> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
>> 0x91621000 - 0x91678ff3  com.apple.HIServices (1.20 - 417)
>> <561A770B-8523-3D09-A763-11F872779A4C>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
>> 0x91679000 - 0x91784ff7  libJP2.dylib (845)
>> <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
>> 0x91785000 - 0x9178dfff  libcopyfile.dylib (89)
>> <4963541B-0254-371B-B29A-B6806888949B>
>> /usr/lib/system/libcopyfile.dylib
>> 0x9178e000 - 0x917e7fff  com.apple.AE (645.3 - 645.3)
>> <6745659F-006D-3F25-94D6-DF944E9A01FD>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
>> 0x91885000 - 0x9191cff7  com.apple.ink.framework (10.8.2 - 150)
>> <D90FF7BC-6B90-39F1-AC52-670269947C58>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
>> 0x9191d000 - 0x91b99ff7  com.apple.QuickTime (7.7.1 - 2599.13)
>> <FE609160-E1EF-341D-9B6A-205D3E03A4D2>
>> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
>> 0x91b9a000 - 0x91bacff7  libdispatch.dylib (228.23)
>> <86EF7D45-2D97-3465-A449-95038AE5DABA>
>> /usr/lib/system/libdispatch.dylib
>> 0x91bb0000 - 0x91bb2fff  libdyld.dylib (210.2.3)
>> <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
>> 0x91bb3000 - 0x91bc0ff7  com.apple.AppleFSCompression (49 - 1.0)
>> <166AA1F8-E50A-3533-A3B5-8737C5118CC3>
>>
>> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
>> 0x91bc1000 - 0x91c06ff5  com.apple.opencl (2.1.20 - 2.1.20)
>> <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16>
>> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
>> 0x91c51000 - 0x91c5bfff  libsystem_notify.dylib (98.5)
>> <7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
>> /usr/lib/system/libsystem_notify.dylib
>> 0x91d6d000 - 0x91d74ff3  com.apple.NetFS (5.0 - 4.0)
>> <1F7041F2-4E97-368C-8F5D-24153D81BBDB>
>> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
>> 0x91d75000 - 0x91ddbfff  com.apple.print.framework.PrintCore (8.1 -
>> 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
>> 0x91de6000 - 0x91dedffb  libunwind.dylib (35.1)
>> <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
>> 0x91e68000 - 0x91e76ff7  libz.1.dylib (43)
>> <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
>> 0x91e77000 - 0x91e78fff  libdnsinfo.dylib (453.18)
>> <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F>
>> /usr/lib/system/libdnsinfo.dylib
>> 0x91e79000 - 0x91e83ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
>> <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
>>
>> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
>> 0x91ede000 - 0x91f8dff7  com.apple.CoreText (260.0 - 275.16)
>> <873ADCD9-D361-3753-A220-CDD289196AD8>
>> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
>> 0x91f8e000 - 0x91f8efff  com.apple.Accelerate (1.8 - Accelerate 1.8)
>> <4EC0548E-3A3F-310D-A366-47B51D5B6398>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
>> 0x91f8f000 - 0x91f90fff  libsystem_sandbox.dylib (220)
>> <4E42390B-25EC-3530-AF01-337E430C16EB>
>> /usr/lib/system/libsystem_sandbox.dylib
>> 0x91f91000 - 0x91fd6ff7  com.apple.NavigationServices (3.7 - 200)
>> <F6531764-6E43-3AF3-ACDD-8A5551EF016A>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
>> 0x91fd7000 - 0x91fd8fff  liblangid.dylib (116)
>> <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
>> 0x91fd9000 - 0x92071fff  com.apple.CoreServices.OSServices (557.4 -
>> 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
>> 0x926ff000 - 0x92702ff7  com.apple.TCC (1.0 - 1)
>> <437D76CD-6437-3B55-BE2C-A53508858256>
>> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
>> 0x92861000 - 0x92876fff  com.apple.ImageCapture (8.0 - 8.0)
>> <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
>> 0x9290f000 - 0x9292cff7  libresolv.9.dylib (51)
>> <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
>> 0x9292d000 - 0x9292dfff  com.apple.CoreServices (57 - 57)
>> <956C6C6D-A5DD-314F-9C57-4A61D41F30CE>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
>> 0x92d2e000 - 0x92d3eff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
>> <875363E7-6D02-3229-A9DD-E5A5568A7D61>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
>> 0x92e16000 - 0x92e22ffe  libkxld.dylib (2050.18.24)
>> <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
>> 0x92e23000 - 0x93128ff7  com.apple.CoreServices.CarbonCore (1037.3 -
>> 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
>> 0x93129000 - 0x93129fff  com.apple.vecLib (3.8 - vecLib 3.8)
>> <83160DD1-5614-3E34-80EB-97041016EF1F>
>> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
>> 0x9312a000 - 0x93185fff  com.apple.htmlrendering (77 - 1.1.4)
>> <5C0C669F-AE07-3983-B38F-EB829B5CE609>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
>> 0x93186000 - 0x931aafff  com.apple.PerformanceAnalysis (1.16 - 16)
>> <18DE0F9F-1264-394D-AC56-6B2A1771DFBE>
>>
>> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
>> 0x931ab000 - 0x93220ff7  com.apple.ApplicationServices.ATS (332 -
>> 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
>> 0x93221000 - 0x93224ff7  libcompiler_rt.dylib (30)
>> <CE5DBDB4-0124-3E2B-9105-989DF98DD108>
>> /usr/lib/system/libcompiler_rt.dylib
>> 0x93225000 - 0x93287fff  libc++.1.dylib (65.1)
>> <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
>> 0x93288000 - 0x9333cfff  com.apple.coreui (2.0 - 181.1)
>> <C15ABF35-B7F5-34ED-A461-386DAF65D96B>
>> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
>> 0x9333d000 - 0x936f5ffa  libLAPACK.dylib (1073.4)
>> <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
>> 0x93702000 - 0x93702ffd  libOpenScriptingUtil.dylib (148.2)
>> <907E25B1-4F50-3461-B8D5-733C687EB534>
>> /usr/lib/libOpenScriptingUtil.dylib
>> 0x93703000 - 0x9371cfff  com.apple.Kerberos (2.0 - 1)
>> <9BDE8F4D-DBC3-34D1-852C-898D3655A611>
>> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
>> 0x9394e000 - 0x93b0affd  libicucore.A.dylib (491.11.1)
>> <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
>> 0x93b3b000 - 0x93b3cfff  libremovefile.dylib (23.1)
>> <98622D14-DAAB-3AD8-A5D9-C322BF572A98>
>> /usr/lib/system/libremovefile.dylib
>> 0x93cb4000 - 0x93d4efff  com.apple.CoreSymbolication (3.0 - 87)
>> <6A27BBE5-6EF0-3D5D-A485-2145826B9796>
>>
>> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
>> 0x93d4f000 - 0x93d50ffd  com.apple.TrustEvaluationAgent (2.0 - 23)
>> <E42347C0-2D3C-36A4-9200-757FFA61B388>
>>
>> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
>> 0x93d51000 - 0x93e3aff7  libxml2.2.dylib (22.3)
>> <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
>> 0x93e45000 - 0x93e45fff  com.apple.Cocoa (6.7 - 19)
>> <354094F0-F36B-36F9-BF5F-FD60590FBEB9>
>> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
>> 0x93e46000 - 0x93e52ff7  com.apple.NetAuth (4.0 - 4.0)
>> <4983C4B8-9D95-3C4D-897E-07743326487E>
>> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
>> 0x93e53000 - 0x93e86ff5  libssl.0.9.8.dylib (47)
>> <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
>> 0x93e87000 - 0x93eefff7  com.apple.framework.IOKit (2.0 - 755.18.10)
>> <9A80E97E-544F-3A45-916D-6DB7ED217E33>
>> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
>> 0x93f5c000 - 0x93fb6fff  com.apple.Symbolication (1.3 - 93)
>> <684ECF0D-D416-3DF8-8B5B-3902953853A8>
>>
>> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
>> 0x9402a000 - 0x940caff7  com.apple.QD (3.42 - 285)
>> <1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
>> 0x947d3000 - 0x9492bffb  com.apple.audio.toolbox.AudioToolbox (1.8 -
>> 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1>
>> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
>> 0x9492c000 - 0x94930ffc  libGIF.dylib (845)
>> <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
>> 0x94931000 - 0x94a2fff7  libFontParser.dylib (84.5)
>> <B3006327-7B2D-3966-A56A-BD85F1D71641>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
>> 0x94a30000 - 0x94a37ffe  com.apple.agl (3.2.1 - AGL-3.2.1)
>> <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA>
>> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
>> 0x94a38000 - 0x94b29ffc  libiconv.2.dylib (34)
>> <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
>> 0x94b2a000 - 0x94b5bfff  com.apple.DictionaryServices (1.2 - 184.4)
>> <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
>> 0x94b5c000 - 0x94b6fff9  com.apple.MultitouchSupport.framework (235.28
>> - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A>
>>
>> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
>> 0x94f59000 - 0x95170fff  com.apple.CoreData (106.1 - 407.7)
>> <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
>> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
>> 0x95171000 - 0x95172ffd  libunc.dylib (25)
>> <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
>> 0x954ec000 - 0x954efffc  libpam.2.dylib (20)
>> <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
>> 0x954f0000 - 0x954fefff  com.apple.opengl (1.8.6 - 1.8.6)
>> <1AD1AE7B-B57B-35B5-B571-32A34F0DA737>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
>> 0x9578b000 - 0x957a5ffc  libsystem_kernel.dylib (2050.18.24)
>> <C17D49D0-7961-3B67-B443-C788C6E5AA76>
>> /usr/lib/system/libsystem_kernel.dylib
>> 0x957a6000 - 0x957cbffb  com.apple.framework.familycontrols (4.1 -
>> 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1>
>>
>> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
>> 0x95a66000 - 0x95a6affe  libcache.dylib (57)
>> <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
>> 0x95e0b000 - 0x95e0effd  libCoreVMClient.dylib (24.4)
>> <C54E8FD0-61EC-3DC8-8631-54288AC66AC8>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
>> 0x95e0f000 - 0x95f5cffb  com.apple.CFNetwork (596.2.3 - 596.2.3)
>> <1221EF86-659B-3136-AB57-0CC6B130CDA2>
>> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
>> 0x95f5d000 - 0x95f69ff8  libbz2.1.0.dylib (29)
>> <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
>> 0x95f6a000 - 0x96077ff3  com.apple.ImageIO.framework (3.2.0 - 845)
>> <BF959BCB-C30A-3680-B7C2-91B327B2B63B>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
>> 0x96078000 - 0x960c6ff3  com.apple.SystemConfiguration (1.12.2 -
>> 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988>
>>
>> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
>> 0x960cc000 - 0x960d0fff  com.apple.IOSurface (86.0.3 - 86.0.3)
>> <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509>
>> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
>> 0x960d1000 - 0x96135fff  com.apple.datadetectorscore (4.0 - 269.1)
>> <4D155F09-1A60-325A-BCAC-1B858C2C051B>
>>
>> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
>> 0x96136000 - 0x962aeff5  com.apple.QuartzCore (1.8 - 304.0)
>> <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B>
>> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
>> 0x962af000 - 0x962bdfff  libxar.1.dylib (105)
>> <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
>> 0x962c2000 - 0x963cf057  libobjc.A.dylib (532.2)
>> <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
>> 0x963d0000 - 0x9644cffb  libType1Scaler.dylib (101.1)
>> <0D94D786-29F7-33DB-B64B-B264FA5EACD2>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
>> 0x9644d000 - 0x96483ffb  com.apple.DebugSymbols (98 - 98)
>> <9A9ADA0A-E487-3C8F-9998-286EE04C235A>
>>
>> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
>> 0x96484000 - 0x964a1fff  libCRFSuite.dylib (33)
>> <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
>> 0x964a2000 - 0x964e3ff7  libcups.2.dylib (327)
>> <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
>> 0x964e4000 - 0x966ccff3  com.apple.CoreFoundation (6.8 - 744.12)
>> <E939CEA0-493C-3233-9983-5070981BB350>
>>
>> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
>> 0x966cd000 - 0x967e9ff7  com.apple.desktopservices (1.7.2 - 1.7.2)
>> <8E74D101-8398-34F1-A463-B4950680A597>
>>
>> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
>> 0x968df000 - 0x969c0fff  libcrypto.0.9.8.dylib (47)
>> <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
>> 0x969c1000 - 0x96a3dff3  com.apple.Metadata (10.7.0 - 707.3)
>> <6B6A6216-23D0-34CE-8099-BEE9BA42501E>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
>> 0x96a3e000 - 0x96a46fff  com.apple.DiskArbitration (2.5.1 - 2.5.1)
>> <25A7232F-9B6A-3746-A3A8-12479D086B1E>
>>
>> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
>> 0x96a4b000 - 0x96a4efff  com.apple.help (1.3.2 - 42)
>> <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
>> 0x96a4f000 - 0x96a4fffd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
>> <4C13DEA2-1EB0-3D06-901A-DB93184C06F0>
>> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
>> 0x97789000 - 0x977bcff3  com.apple.GSS (3.0 - 2.0)
>> <B1D719C1-B000-3BE3-B747-329D608585DD>
>> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
>> 0x977bd000 - 0x977c4fff  liblaunch.dylib (442.26.2)
>> <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
>> 0x97828000 - 0x978e5feb  libsystem_c.dylib (825.25)
>> <B1F6916A-F558-38B5-A18C-D9733625FDC9>
>> /usr/lib/system/libsystem_c.dylib
>> 0x978e6000 - 0x978eafff  com.apple.CommonPanels (1.2.5 - 94)
>> <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
>> 0x978eb000 - 0x984a7ffb  com.apple.AppKit (6.8 - 1187.34)
>> <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C>
>> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
>> 0x984a8000 - 0x984acff7  libmacho.dylib (829)
>> <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
>> 0x984ad000 - 0x988effff  com.apple.CoreGraphics (1.600.0 - 324.6)
>> <66556166-F9A7-3EEC-A562-46061C7A79E4>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
>> 0x988f0000 - 0x98906fff  com.apple.CFOpenDirectory (10.8 - 151.10)
>> <56C3F276-BD1F-3031-8CF9-8F4F481A534E>
>>
>> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
>> 0x98907000 - 0x98915ff3  libsystem_network.dylib (77.10)
>> <7FBF5A15-97BA-3721-943E-E77F0C40DBE1>
>> /usr/lib/system/libsystem_network.dylib
>> 0x98916000 - 0x9893bff7  com.apple.CoreVideo (1.8 - 99.3)
>> <5B872AC0-E82D-3475-A3F9-FD95F380560D>
>> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
>> 0x989da000 - 0x989e2fff  com.apple.CommerceCore (1.0 - 26)
>> <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5>
>>
>> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
>> 0x989e3000 - 0x98aa1ff3  com.apple.ColorSync (4.8.0 - 4.8.0)
>> <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
>> 0x98aa2000 - 0x98aa2fff  libkeymgr.dylib (25)
>> <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
>> 0x98aa3000 - 0x98b0bfe7  libvDSP.dylib (380.6)
>> <55780308-4DCA-3B10-9703-EAFC3E13A3FA>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
>> 0x98bd6000 - 0x98be0fff  libCSync.A.dylib (324.6)
>> <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
>> 0x98be1000 - 0x98c45ff3  libstdc++.6.dylib (56)
>> <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
>> 0x98c51000 - 0x98c70ff3  com.apple.Ubiquity (1.2 - 243.10)
>> <D2C9F356-1681-31D2-B292-5227E2DDEB0B>
>> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
>> 0x98c71000 - 0x98c78fff  libsystem_dnssd.dylib (379.32.1)
>> <6A505284-2382-3F27-B96F-15FFDACF004E>
>> /usr/lib/system/libsystem_dnssd.dylib
>> 0x98c79000 - 0x98caefff  libTrueTypeScaler.dylib (84.5)
>> <2598F930-5E6B-37D7-B1E6-18181A972C6E>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
>> 0x98cc0000 - 0x98cfbfe7  libGLImage.dylib (8.6.1)
>> <A3442557-18D5-332E-8859-423D5A20EBBE>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
>> 0x98cfc000 - 0x98d13fff  com.apple.GenerationalStorage (1.1 - 132.2)
>> <93694E0D-35D3-3633-976E-F354CBD92F54>
>>
>> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
>> 0x98d14000 - 0x98d16ffb  libRadiance.dylib (845)
>> <3F87840F-217D-3074-A29D-919BAAED2F4A>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
>> 0x98d17000 - 0x98debfff  com.apple.backup.framework (1.4.1 - 1.4.1)
>> <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5>
>> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
>> 0x98dec000 - 0x98df0fff  com.apple.OpenDirectory (10.8 - 151.10)
>> <A1858D81-086F-3BF5-87E3-9B70409FFDF6>
>>
>> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
>> 0x98f26000 - 0x98f72fff  libcorecrypto.dylib (106.2)
>> <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6>
>> /usr/lib/system/libcorecrypto.dylib
>> 0x98fdd000 - 0x99087fff  com.apple.LaunchServices (539.7 - 539.7)
>> <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
>>
>> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
>> 0x99097000 - 0x990dbfff  libGLU.dylib (8.6.1)
>> <06BAFDCA-800C-35E3-B1A3-F05E105B86AB>
>>
>> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
>> 0x990dc000 - 0x990f1fff  com.apple.speech.synthesis.framework (4.1.12
>> - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
>>
>> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
>> 0x990f2000 - 0x9910eff7  libPng.dylib (845)
>> <14C43094-C670-3575-BF9B-3A967E05EAC0>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
>> 0x9910f000 - 0x993cffff  com.apple.security (7.0 - 55179.1)
>> <CB470E48-621B-34D9-9E78-8B773358CB6B>
>> /System/Library/Frameworks/Security.framework/Versions/A/Security
>> 0x993d0000 - 0x9941fff6  libTIFF.dylib (845)
>> <989A2EB9-3A49-3157-8E9C-B16E6005BC64>
>>
>> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
>> 0x99420000 - 0x99420fff  libsystem_blocks.dylib (59)
>> <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
>> /usr/lib/system/libsystem_blocks.dylib
>> 0x9943b000 - 0x99468ffe  libsystem_m.dylib (3022.6)
>> <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431>
>> /usr/lib/system/libsystem_m.dylib
>> 0x994ba000 - 0x994d7fff  libxpc.dylib (140.41)
>> <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
>> 0x994d8000 - 0x99613ff7  libBLAS.dylib (1073.4)
>> <FF74A147-05E1-37C4-BC10-7DEB57FE5326>
>>
>> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
>> 0x9963a000 - 0x99663fff  libxslt.1.dylib (11.3)
>> <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
>> 0x99664000 - 0x998bcff1  com.apple.JavaScriptCore (8536 - 8536.26.7)
>> <75629E05-65FE-3699-8CDC-80C95015CF42>
>>
>> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
>> 0x998bd000 - 0x998dffff  libc++abi.dylib (24.4)
>> <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
>> 0x998e0000 - 0x99cc3ff3  com.apple.HIToolbox (2.0 - 625)
>> <5A312E41-9940-363E-B891-90C4672E6850>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
>> 0x99cc4000 - 0x99cd6fff  libbsm.0.dylib (32)
>> <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
>> 0x99cd7000 - 0x99cddfff  com.apple.print.framework.Print (8.0 - 258)
>> <12AEAD24-6924-3923-9E4A-C5D21231E639>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
>> 0x99cde000 - 0x99ce0fff  com.apple.securityhi (4.0 - 55002)
>> <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F>
>>
>> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
>> 0x9a55e000 - 0x9a59dff7  com.apple.bom (12.0 - 192)
>> <0637E52C-D151-37B3-904F-8656B2FD44DD>
>> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
>>
>> External Modification Summary:
>>   Calls made by other processes targeting this process:
>>     task_for_pid: 2
>>     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: 3456
>>     thread_create: 1
>>     thread_set_state: 0
>>
>> VM Region Summary:
>> ReadOnly portion of Libraries: Total=164.5M resident=135.0M(82%)
>> swapped_out_or_unallocated=29.4M(18%)
>> Writable regions: Total=120.5M written=9140K(7%) resident=23.7M(20%)
>> swapped_out=0K(0%) unallocated=96.8M(80%)
>>
>> REGION TYPE                      VIRTUAL
>> ===========                      =======
>> ATS (font support)                 32.9M
>> ATS (font support) (reserved)         4K        reserved VM address
>> space (unallocated)
>> CG backing stores                  9236K
>> CG shared images                   1216K
>> CoreServices                       3168K
>> MALLOC                             49.3M
>> MALLOC guard page                    48K
>> Memory tag=240                        4K
>> Memory tag=242                       12K
>> Memory tag=35                      7160K
>> Stack                              66.0M
>> VM_ALLOCATE                        16.5M
>> __DATA                             8108K
>> __DATA/__OBJC                       176K
>> __IMAGE                             528K
>> __LINKEDIT                         43.6M
>> __OBJC                             1704K
>> __OBJC/__DATA                        36K
>> __PAGEZERO                            4K
>> __TEXT                            120.8M
>> __UNICODE                           544K
>> mapped file                       119.5M
>> shared memory                       308K
>> ===========                      =======
>> TOTAL                             480.3M
>> TOTAL, minus reserved VM space    480.3M
>>
>> Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core
>> i7, 2.8 GHz, 8 GB, SMC 1.58f16
>> Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
>> Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
>> Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
>> 0x31364A53533531323634485A2D3147314131
>> Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C,
>> 0x31364A53533531323634485A2D3147314131
>> AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93),
>> Broadcom BCM43xx 1.0 (5.106.98.81.22)
>> Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming
>> serial ports
>> Network Service: AirPort, AirPort, en1
>> Serial ATA Device: ST9500420ASG, 500.11 GB
>> Serial ATA Device: MATSHITADVD-R   UJ-898
>> USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
>> USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id,
>> 0x0237, 0xfa120000 / 5
>> USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403,
>> 0xfa130000 / 4
>> USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
>> USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218,
>> 0xfa113000 / 7
>> USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
>> USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
>> USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
>>
>>
>>
>>
>> --
>> Dave Page
>> Blog: http://pgsnake.blogspot.com
>> Twitter: @pgsnake
>>
>> EnterpriseDB UK: http://www.enterprisedb.com
>> The Enterprise PostgreSQL Company
>
>
>
>
> --
> Akshay Joshi
> Senior Software Engineer
> EnterpriseDB Corporation
> The Enterprise PostgreSQL Company
> Phone: +91 20-3058-9522
> Mobile: +91 976-788-8246
>



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246




--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
On Tue, Nov 6, 2012 at 11:35 AM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>
> On Mon, Nov 5, 2012 at 5:49 PM, Akshay Joshi <akshay.joshi@enterprisedb.com>
> wrote:
>>
>>
>>
>> On Mon, Nov 5, 2012 at 5:42 PM, Dave Page <dpage@pgadmin.org> wrote:
>>>
>>> Nope - just try connecting, disconnecting, connecting (lather, rinse,
>>> repeat) and see what happens.
>>
>>
>>   Yes. It is reproducible will work on it.
>
>
>      I have tried a lot to figure out the cause of the bug, but unable to
> find it yet. It is not reproducible on Windows and Linux(Ubuntu), only
>      reproducible on MAC OSX. For the error "SSL SYSCALL error: EOF
> detected" I have googled and found it is because of network problem, but
>      there is no network problem at our end.
>
>      Will working on the same. Any pointers or suggestions??

Sorry, no concrete ideas. I assume it's not just that the tunnel is
being closed hastily at the merest blip of a problem, which is
actually recoverable? It might be worth pinging the libssh2 guys (and
checking for any updates to the code from them).


--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:
Hi 

I have updated the libssh2 code with the latest version for SSHTunneling. I have tested it on Windows, Ubuntu and MAC OSX. With the previous version of libssh2 we were facing some problem on MAC OSX. We have faced error "SSL SYSCALL error: EOF detected". I haven't found any error on MAC OSX, it is working fine at my end. 

Attached is the latest patch for SSH Tunneling.


On Tue, Nov 6, 2012 at 6:06 PM, Dave Page <dpage@pgadmin.org> wrote:
On Tue, Nov 6, 2012 at 11:35 AM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>
> On Mon, Nov 5, 2012 at 5:49 PM, Akshay Joshi <akshay.joshi@enterprisedb.com>
> wrote:
>>
>>
>>
>> On Mon, Nov 5, 2012 at 5:42 PM, Dave Page <dpage@pgadmin.org> wrote:
>>>
>>> Nope - just try connecting, disconnecting, connecting (lather, rinse,
>>> repeat) and see what happens.
>>
>>
>>   Yes. It is reproducible will work on it.
>
>
>      I have tried a lot to figure out the cause of the bug, but unable to
> find it yet. It is not reproducible on Windows and Linux(Ubuntu), only
>      reproducible on MAC OSX. For the error "SSL SYSCALL error: EOF
> detected" I have googled and found it is because of network problem, but
>      there is no network problem at our end.
>
>      Will working on the same. Any pointers or suggestions??

Sorry, no concrete ideas. I assume it's not just that the tunnel is
being closed hastily at the merest blip of a problem, which is
actually recoverable? It might be worth pinging the libssh2 guys (and
checking for any updates to the code from them).


--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246
Attachment

Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
Hi

On Tue, Apr 9, 2013 at 10:35 AM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
> Hi
>
> I have updated the libssh2 code with the latest version for SSHTunneling. I
> have tested it on Windows, Ubuntu and MAC OSX. With the previous version of
> libssh2 we were facing some problem on MAC OSX. We have faced error "SSL
> SYSCALL error: EOF detected". I haven't found any error on MAC OSX, it is
> working fine at my end.
>
> Attached is the latest patch for SSH Tunneling.

Thanks. I'm seeing the following link failure here:

Undefined symbols for architecture i386:
  "_deflate", referenced from:
      _comp_method_zlib_comp in comp.o
  "_deflateEnd", referenced from:
      _comp_method_zlib_dtor in comp.o
  "_deflateInit_", referenced from:
      _comp_method_zlib_init in comp.o
  "_inflate", referenced from:
      _comp_method_zlib_decomp in comp.o
  "_inflateEnd", referenced from:
      _comp_method_zlib_dtor in comp.o
  "_inflateInit_", referenced from:
      _comp_method_zlib_init in comp.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status
make[3]: *** [pgadmin3] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

This is on OS X Mountain Lion, with i686-apple-darwin11-llvm-gcc-4.2
(GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00).
I've attached the configure log in case it helps. I know you've tested
on Dhiraj's Mac - is he on ML?

Also, I've made some minor changes in the master branch to the
boostrap script and configure.ac.in that you'll need to merge against
- that should be trivial though. In addition, on line 29 of
configure.ac.in, please change AM_CONFIG_HEADER to AC_CONFIG_HEADERS,
as the former has now been deprecated.


--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

Attachment

Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:



On Tue, Apr 9, 2013 at 9:00 PM, Dave Page <dpage@pgadmin.org> wrote:
Hi

On Tue, Apr 9, 2013 at 10:35 AM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
> Hi
>
> I have updated the libssh2 code with the latest version for SSHTunneling. I
> have tested it on Windows, Ubuntu and MAC OSX. With the previous version of
> libssh2 we were facing some problem on MAC OSX. We have faced error "SSL
> SYSCALL error: EOF detected". I haven't found any error on MAC OSX, it is
> working fine at my end.
>
> Attached is the latest patch for SSH Tunneling.

Thanks. I'm seeing the following link failure here:

Undefined symbols for architecture i386:
  "_deflate", referenced from:
      _comp_method_zlib_comp in comp.o
  "_deflateEnd", referenced from:
      _comp_method_zlib_dtor in comp.o
  "_deflateInit_", referenced from:
      _comp_method_zlib_init in comp.o
  "_inflate", referenced from:
      _comp_method_zlib_decomp in comp.o
  "_inflateEnd", referenced from:
      _comp_method_zlib_dtor in comp.o
  "_inflateInit_", referenced from:
      _comp_method_zlib_init in comp.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status
make[3]: *** [pgadmin3] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

This is on OS X Mountain Lion, with i686-apple-darwin11-llvm-gcc-4.2
(GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00).
I've attached the configure log in case it helps. I know you've tested
on Dhiraj's Mac - is he on ML?

    We have compiled and tested it on OS X Snow Leopard 10.6.8, with i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3). I'll work on figuring out the above error.

Also, I've made some minor changes in the master branch to the
boostrap script and configure.ac.in that you'll need to merge against
- that should be trivial though. In addition, on line 29 of
configure.ac.in, please change AM_CONFIG_HEADER to AC_CONFIG_HEADERS,
as the former has now been deprecated.

  OK. Will do that. 


--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
On Wed, Apr 10, 2013 at 7:28 AM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
>
>
>
> On Tue, Apr 9, 2013 at 9:00 PM, Dave Page <dpage@pgadmin.org> wrote:
>>
>> Hi
>>
>> On Tue, Apr 9, 2013 at 10:35 AM, Akshay Joshi
>> <akshay.joshi@enterprisedb.com> wrote:
>> > Hi
>> >
>> > I have updated the libssh2 code with the latest version for
>> > SSHTunneling. I
>> > have tested it on Windows, Ubuntu and MAC OSX. With the previous version
>> > of
>> > libssh2 we were facing some problem on MAC OSX. We have faced error "SSL
>> > SYSCALL error: EOF detected". I haven't found any error on MAC OSX, it
>> > is
>> > working fine at my end.
>> >
>> > Attached is the latest patch for SSH Tunneling.
>>
>> Thanks. I'm seeing the following link failure here:
>>
>> Undefined symbols for architecture i386:
>>   "_deflate", referenced from:
>>       _comp_method_zlib_comp in comp.o
>>   "_deflateEnd", referenced from:
>>       _comp_method_zlib_dtor in comp.o
>>   "_deflateInit_", referenced from:
>>       _comp_method_zlib_init in comp.o
>>   "_inflate", referenced from:
>>       _comp_method_zlib_decomp in comp.o
>>   "_inflateEnd", referenced from:
>>       _comp_method_zlib_dtor in comp.o
>>   "_inflateInit_", referenced from:
>>       _comp_method_zlib_init in comp.o
>> ld: symbol(s) not found for architecture i386
>> collect2: ld returned 1 exit status
>> make[3]: *** [pgadmin3] Error 1
>> make[2]: *** [all] Error 2
>> make[1]: *** [all-recursive] Error 1
>> make: *** [all] Error 2
>>
>> This is on OS X Mountain Lion, with i686-apple-darwin11-llvm-gcc-4.2
>> (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00).
>> I've attached the configure log in case it helps. I know you've tested
>> on Dhiraj's Mac - is he on ML?
>
>
>     We have compiled and tested it on OS X Snow Leopard 10.6.8, with
> i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3).
> I'll work on figuring out the above error.

OK. I had a thought earlier about what it might be (an environmental
issue). Let me check that out later, before you spend any time on it
in case it is something specific to my machine.

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: pgAdmin with SSHTunneling support

From
Dave Page
Date:
On Wed, Apr 10, 2013 at 9:23 AM, Dave Page <dpage@pgadmin.org> wrote:
> On Wed, Apr 10, 2013 at 7:28 AM, Akshay Joshi
> <akshay.joshi@enterprisedb.com> wrote:
>>
>>
>>
>> On Tue, Apr 9, 2013 at 9:00 PM, Dave Page <dpage@pgadmin.org> wrote:
>>>
>>> Hi
>>>
>>> On Tue, Apr 9, 2013 at 10:35 AM, Akshay Joshi
>>> <akshay.joshi@enterprisedb.com> wrote:
>>> > Hi
>>> >
>>> > I have updated the libssh2 code with the latest version for
>>> > SSHTunneling. I
>>> > have tested it on Windows, Ubuntu and MAC OSX. With the previous version
>>> > of
>>> > libssh2 we were facing some problem on MAC OSX. We have faced error "SSL
>>> > SYSCALL error: EOF detected". I haven't found any error on MAC OSX, it
>>> > is
>>> > working fine at my end.
>>> >
>>> > Attached is the latest patch for SSH Tunneling.
>>>
>>> Thanks. I'm seeing the following link failure here:
>>>
>>> Undefined symbols for architecture i386:
>>>   "_deflate", referenced from:
>>>       _comp_method_zlib_comp in comp.o
>>>   "_deflateEnd", referenced from:
>>>       _comp_method_zlib_dtor in comp.o
>>>   "_deflateInit_", referenced from:
>>>       _comp_method_zlib_init in comp.o
>>>   "_inflate", referenced from:
>>>       _comp_method_zlib_decomp in comp.o
>>>   "_inflateEnd", referenced from:
>>>       _comp_method_zlib_dtor in comp.o
>>>   "_inflateInit_", referenced from:
>>>       _comp_method_zlib_init in comp.o
>>> ld: symbol(s) not found for architecture i386
>>> collect2: ld returned 1 exit status
>>> make[3]: *** [pgadmin3] Error 1
>>> make[2]: *** [all] Error 2
>>> make[1]: *** [all-recursive] Error 1
>>> make: *** [all] Error 2
>>>
>>> This is on OS X Mountain Lion, with i686-apple-darwin11-llvm-gcc-4.2
>>> (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00).
>>> I've attached the configure log in case it helps. I know you've tested
>>> on Dhiraj's Mac - is he on ML?
>>
>>
>>     We have compiled and tested it on OS X Snow Leopard 10.6.8, with
>> i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3).
>> I'll work on figuring out the above error.
>
> OK. I had a thought earlier about what it might be (an environmental
> issue). Let me check that out later, before you spend any time on it
> in case it is something specific to my machine.

So the link error was fixed by adding -lz to LDFLAGS.

I then managed to connect to a server through a tunnel - it rendered
most of the treeview (it was an existing server, so tried to restore
the environment), then before the busy cursor was turned off, I got a
crash:

Process:         pgadmin3 [38536]
Path:            /Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
Identifier:      pgadmin3
Version:         0
Code Type:       X86 (Native)
Parent Process:  launchd [157]
User ID:         501

Date/Time:       2013-04-10 17:04:38.934 +0100
OS Version:      Mac OS X 10.8.3 (12D78)
Report Version:  10

Interval Since Last Report:          584778 sec
Crashes Since Last Report:           2
Per-App Crashes Since Last Report:   1
Anonymous UUID:                      34F3DD35-C71F-79C9-B2EA-D7BF99A45B05

Crashed Thread:  3

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
Assertion failed: (remainbuf >= 0), function _libssh2_transport_read,
file libssh2/transport.c, line 345.


Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib         0x9030ed2e __poll + 10
1   libpq.5.dylib                 0x01643f4b pqSocketCheck + 347
2   libpq.5.dylib                 0x016440a9 pqWait + 41
3   libpq.5.dylib                 0x016436b4 PQgetResult + 180
4   libpq.5.dylib                 0x01643b4b PQexecFinish + 155
5   pgAdmin3-Debug                 0x000de260
pgConn::ExecuteSet(wxString const&) + 230
6   pgAdmin3-Debug                 0x00435304
pgDatabase::ExecuteSet(wxString const&) + 70
7   pgAdmin3-Debug                 0x0052e06d
pgViewFactory::CreateObjects(pgCollection*, ctlTree*, wxString const&)
+ 853
8   pgAdmin3-Debug                 0x005c8037
pgaCollectionFactory::CreateObjects(pgCollection*, ctlTree*, wxString
const&) + 47
9   pgAdmin3-Debug                 0x00412bd3
pgCollection::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
ctlSQLBox*) + 143
10  pgAdmin3-Debug                 0x000cc687
ctlTree::AppendObject(pgObject*, pgObject*) + 259
11  pgAdmin3-Debug                 0x000cc7bb
ctlTree::AppendCollection(pgObject*, pgaFactory&) + 47
12  pgAdmin3-Debug                 0x004b66b7
pgSchemaBase::ShowTreeDetail(ctlTree*, frmMain*, ctlListView*,
ctlSQLBox*) + 5145
13  pgAdmin3-Debug                 0x0048fce8
pgObject::ShowTree(frmMain*, ctlTree*, ctlListView*, ctlSQLBox*) + 588
14  pgAdmin3-Debug                 0x00285a6e
frmMain::setDisplay(pgObject*, ctlListView*, ctlSQLBox*) + 60
15  pgAdmin3-Debug                 0x002868ed
frmMain::execSelChange(wxTreeItemId, bool) + 1325
16  pgAdmin3-Debug                 0x002834c3
frmMain::OnTreeSelChanged(wxTreeEvent&) + 61
17  libwx_base_carbonu-2.8.0.dylib 0x014e9130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
18  libwx_base_carbonu-2.8.0.dylib 0x0156a25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
19  libwx_base_carbonu-2.8.0.dylib 0x0156b371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
20  libwx_base_carbonu-2.8.0.dylib 0x0156aa6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
21  libwx_base_carbonu-2.8.0.dylib 0x0156aa83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
22  libwx_macu_core-2.8.0.dylib   0x011d8eca
wxWindowBase::TryParent(wxEvent&) + 66
23  libwx_base_carbonu-2.8.0.dylib 0x0156aa97
wxEvtHandler::ProcessEvent(wxEvent&) + 237
24  libwx_base_carbonu-2.8.0.dylib 0x0156aa83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
25  libwx_macu_core-2.8.0.dylib   0x0120056c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
26  libwx_macu_core-2.8.0.dylib   0x0120e3b7
wxGenericTreeCtrl::DoSelectItem(wxTreeItemId const&, bool, bool) + 743
27  libwx_macu_core-2.8.0.dylib   0x0120e465
wxGenericTreeCtrl::SelectItem(wxTreeItemId const&, bool) + 95
28  pgAdmin3-Debug                 0x002d6a34
frmMain::ReconnectServer(pgServer*, bool) + 1018
29  pgAdmin3-Debug                 0x0028360c
frmMain::OnSelActivated(wxTreeEvent&) + 126
30  libwx_base_carbonu-2.8.0.dylib 0x014e9130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
31  libwx_base_carbonu-2.8.0.dylib 0x0156a25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
32  libwx_base_carbonu-2.8.0.dylib 0x0156b371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
33  libwx_base_carbonu-2.8.0.dylib 0x0156aa6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
34  libwx_base_carbonu-2.8.0.dylib 0x0156aa83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
35  libwx_macu_core-2.8.0.dylib   0x011d8eca
wxWindowBase::TryParent(wxEvent&) + 66
36  libwx_base_carbonu-2.8.0.dylib 0x0156aa97
wxEvtHandler::ProcessEvent(wxEvent&) + 237
37  libwx_base_carbonu-2.8.0.dylib 0x0156aa83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
38  libwx_macu_core-2.8.0.dylib   0x0120056c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
39  libwx_macu_core-2.8.0.dylib   0x0120a5c0
wxGenericTreeCtrl::OnMouse(wxMouseEvent&) + 3078
40  libwx_base_carbonu-2.8.0.dylib 0x014e9130
wxAppConsole::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent&), wxEvent&) const + 42
41  libwx_base_carbonu-2.8.0.dylib 0x0156a25b
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&,
wxEvtHandler*, wxEvent&) + 125
42  libwx_base_carbonu-2.8.0.dylib 0x0156b371
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 221
43  libwx_base_carbonu-2.8.0.dylib 0x0156aa6c
wxEvtHandler::ProcessEvent(wxEvent&) + 194
44  libwx_base_carbonu-2.8.0.dylib 0x0156aa83
wxEvtHandler::ProcessEvent(wxEvent&) + 217
45  libwx_macu_core-2.8.0.dylib   0x0120056c
wxScrollHelperEvtHandler::ProcessEvent(wxEvent&) + 40
46  libwx_macu_core-2.8.0.dylib   0x0112af16
wxMacTopLevelMouseEventHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 1286
47  libwx_macu_core-2.8.0.dylib   0x011280e8
wxMacTopLevelEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*) + 4344
48  com.apple.HIToolbox           0x9967f9bb
_InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) +
36
49  com.apple.HIToolbox           0x99507394
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 1343
50  com.apple.HIToolbox           0x99506780
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 430
51  com.apple.HIToolbox           0x9951a655 SendEventToEventTarget + 88
52  com.apple.HIToolbox           0x9953a5c7
ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 2141
53  com.apple.HIToolbox           0x9950783f
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 2538
54  com.apple.HIToolbox           0x99506780
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 430
55  com.apple.HIToolbox           0x9951a655 SendEventToEventTarget + 88
56  libwx_macu_core-2.8.0.dylib   0x010ca055
wxApp::MacHandleOneEvent(void*) + 41
57  libwx_macu_core-2.8.0.dylib   0x010ca148 wxApp::MacDoOneEvent() + 144
58  libwx_macu_core-2.8.0.dylib   0x010e336e wxEventLoop::Dispatch() + 32
59  libwx_macu_core-2.8.0.dylib   0x01183e25 wxEventLoopManual::Run() + 131
60  libwx_macu_core-2.8.0.dylib   0x0115d4cb wxAppBase::MainLoop() + 67
61  libwx_base_carbonu-2.8.0.dylib 0x0151edae wxEntry(int&, wchar_t**) + 110
62  libwx_base_carbonu-2.8.0.dylib 0x0151ee62 wxEntry(int&, char**) + 50
63  pgAdmin3-Debug                 0x0008d82e main + 30
64  libdyld.dylib                 0x93fef725 start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib         0x9030e9ae kevent + 10
1   libdispatch.dylib             0x91363c71 _dispatch_mgr_invoke + 993
2   libdispatch.dylib             0x913637a9 _dispatch_mgr_thread + 53

Thread 2:
0   libsystem_kernel.dylib         0x9030ce9a __accept + 10
1   pgAdmin3-Debug                 0x005e45b6 CSSHTunnelThread::Entry() + 136
2   libwx_base_carbonu-2.8.0.dylib 0x015619e7
wxThreadInternal::MacThreadStart(void*) + 155
3   com.apple.CoreServices.CarbonCore 0x98e2aa7b PrivateMPEntryPoint + 68
4   libsystem_c.dylib             0x94bcf5b7 _pthread_start + 344
5   libsystem_c.dylib             0x94bb9d4e thread_start + 34

Thread 3 Crashed:
0   libsystem_kernel.dylib         0x9030da6a __pthread_kill + 10
1   libsystem_c.dylib             0x94bd0b2f pthread_kill + 101
2   libsystem_c.dylib             0x94c074ec abort + 168
3   libsystem_c.dylib             0x94c15d2b __assert_rtn + 326
4   pgAdmin3-Debug                 0x005fd36a _libssh2_transport_read + 1674
5   pgAdmin3-Debug                 0x005e8c5b _libssh2_channel_read + 59
6   pgAdmin3-Debug                 0x005e8eaa libssh2_channel_read_ex + 154
7   pgAdmin3-Debug                 0x005e4d58 CSubThread::Entry() + 760
8   libwx_base_carbonu-2.8.0.dylib 0x015619e7
wxThreadInternal::MacThreadStart(void*) + 155
9   com.apple.CoreServices.CarbonCore 0x98e2aa7b PrivateMPEntryPoint + 68
10  libsystem_c.dylib             0x94bcf5b7 _pthread_start + 344
11  libsystem_c.dylib             0x94bb9d4e thread_start + 34

Thread 4:
0   libsystem_c.dylib             0x94c45398 __vfprintf + 4927
1   libsystem_c.dylib             0x94c3c5a7 vsprintf_l + 183
2   libsystem_c.dylib             0x94c374ec sprintf_l + 41
3   libsystem_c.dylib             0x94c3fedd _st_fmt + 986
4   libsystem_c.dylib             0x94c3fa12 strftime_l$UNIX2003 + 126
5   libsystem_c.dylib             0x94c40af2 strftime$UNIX2003 + 74
6   libwx_base_carbonu-2.8.0.dylib 0x01555c23 wxStrftime(wchar_t*,
unsigned long, wchar_t const*, tm const*) + 115
7   libwx_base_carbonu-2.8.0.dylib 0x014f3f79
wxDateTime::Format(wchar_t const*, wxDateTime::TimeZone const&) const
+ 659
8   pgAdmin3-Debug                 0x005d55a2
sysLogger::DoLog(unsigned long, wchar_t const*, long) + 274
9   libwx_base_carbonu-2.8.0.dylib 0x0152cf38 wxLog::OnLog(unsigned
long, wchar_t const*, long) + 206
10  libwx_base_carbonu-2.8.0.dylib 0x0152d1d9 wxVLogInfo(wchar_t
const*, char*) + 89
11  libwx_base_carbonu-2.8.0.dylib 0x0152d24b wxLogInfo(wchar_t
const*, ...) + 27
12  pgAdmin3-Debug                 0x005e4c80 CSubThread::Entry() + 544
13  libwx_base_carbonu-2.8.0.dylib 0x015619e7
wxThreadInternal::MacThreadStart(void*) + 155
14  com.apple.CoreServices.CarbonCore 0x98e2aa7b PrivateMPEntryPoint + 68
15  libsystem_c.dylib             0x94bcf5b7 _pthread_start + 344
16  libsystem_c.dylib             0x94bb9d4e thread_start + 34

Thread 3 crashed with X86 Thread State (32-bit):
  eax: 0x00000000  ebx: 0xac6fc13c  ecx: 0xb0283cdc  edx: 0x9030da6a
  edi: 0xb0289000  esi: 0x00000006  ebp: 0xb0283cf8  esp: 0xb0283cdc
   ss: 0x00000023  efl: 0x00000206  eip: 0x9030da6a   cs: 0x0000000b
   ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
  cr2: 0x030a8000
Logical CPU: 0

Binary Images:
   0x75000 -   0x8e6fff +pgAdmin3-Debug (0)
<3392C8CB-43E3-302E-9D01-58A903E49DB1>
/Users/USER/*/pgAdmin3-Debug.app/Contents/MacOS/pgAdmin3-Debug
  0xbff000 -   0xcb1ff3 +libwx_macu_stc-2.8.0.dylib (9)
<1CE42E13-AB70-3AA4-BE3D-92EAAE36974E>
/usr/local/lib/libwx_macu_stc-2.8.0.dylib
  0xcee000 -   0xd9fffb +libwx_macu_richtext-2.8.0.dylib (9)
<8FE5A087-6FBA-3B10-8254-A71CB00A5DF3>
/usr/local/lib/libwx_macu_richtext-2.8.0.dylib
  0xdf7000 -   0xe3dff3 +libwx_macu_aui-2.8.0.dylib (9)
<0CAD5454-41AE-3E66-8D60-E8B06CBCC35A>
/usr/local/lib/libwx_macu_aui-2.8.0.dylib
  0xe6a000 -   0xeceffb +libwx_macu_xrc-2.8.0.dylib (9)
<2F3B0CB2-8D12-3F75-8C99-0A876A2FF9AA>
/usr/local/lib/libwx_macu_xrc-2.8.0.dylib
  0xf07000 -   0xf17ffb +libwx_macu_qa-2.8.0.dylib (9)
<367B266C-D445-327E-B566-F8BE17C6F1A2>
/usr/local/lib/libwx_macu_qa-2.8.0.dylib
  0xf2c000 -   0xf91ff7 +libwx_macu_html-2.8.0.dylib (9)
<5586161E-3F2C-3F89-A68F-9D9DBEFF253A>
/usr/local/lib/libwx_macu_html-2.8.0.dylib
  0xfd9000 -  0x1052ff7 +libwx_macu_adv-2.8.0.dylib (9)
<444AA0F1-7501-3679-84F8-E17208C05121>
/usr/local/lib/libwx_macu_adv-2.8.0.dylib
 0x10b2000 -  0x1333ff3 +libwx_macu_core-2.8.0.dylib (9)
<2516A55C-28F9-34AC-A15A-A6F89741BA14>
/usr/local/lib/libwx_macu_core-2.8.0.dylib
 0x149f000 -  0x14a8ff3 +libwx_base_carbonu_xml-2.8.0.dylib (9)
<8BFC5220-8D47-3985-8450-6062C8249869>
/usr/local/lib/libwx_base_carbonu_xml-2.8.0.dylib
 0x14af000 -  0x14cdff7 +libwx_base_carbonu_net-2.8.0.dylib (9)
<AAB4106C-4422-381D-8B0B-3846B6ECFD13>
/usr/local/lib/libwx_base_carbonu_net-2.8.0.dylib
 0x14e4000 -  0x15c9fef +libwx_base_carbonu-2.8.0.dylib (9)
<AE0E437E-014F-3C84-8580-EB14F17D3974>
/usr/local/lib/libwx_base_carbonu-2.8.0.dylib
 0x1639000 -  0x1654ff7 +libpq.5.dylib (0)
<CB0D4FC6-D546-33B9-BBEA-F75E7EFFF6CB>
/usr/local/pgsql/lib/libpq.5.dylib
 0x165d000 -  0x177cffb  com.apple.WebKit (8536 - 8536.28.10)
<C181C3FB-91E3-38AB-A709-6B61935B3AD8>
/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
 0x182f000 -  0x24c2ffb  com.apple.WebCore (8536 - 8536.28.10)
<AA738A8C-808D-302A-B58D-404C58075C45>
/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
 0x2c47000 -  0x2c5dffc  libexpat.1.dylib (12)
<D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
 0x2cb4000 -  0x2d72ff3  ColorSyncDeprecated.dylib (400)
<A959DD25-E448-3563-B74E-E58C69961C76>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
 0x2dce000 -  0x2dcfffd  com.apple.textencoding.unicode (2.5 - 2.5)
<4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2>
/System/Library/TextEncodings/Unicode
Encodings.bundle/Contents/MacOS/Unicode Encodings
 0x2f5c000 -  0x2f69ff3  com.apple.Librarian (1.1 - 1)
<68F8F983-5F16-3BA5-BDA7-1A5451CC02BB>
/System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
 0x7a43000 -  0x7a4bffd  libcldcpuengine.dylib (2.2.16)
<0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4>
/System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
 0x7a54000 -  0x7a58fff  com.apple.CommonCocoaPanels (4.0 - 16)
<81E2A455-0607-3A73-8FDA-8B26C874D8FF>
/System/Library/CoreServices/CommonCocoaPanels.bundle/Contents/MacOS/CommonCocoaPanels
 0x7a65000 -  0x7a65ff5 +cl_kernels (???)
<E0077490-0C31-4812-8DE1-AF076A3E62F3> cl_kernels
 0x7a67000 -  0x7af9fff  unorm8_bgra.dylib (2.2.16)
<1298D118-0B14-3F3D-B2CA-348A1C67183E>
/System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
 0x8c8a000 -  0x8c8bffd  com.apple.ironwoodcore (1.1.1 - 1.1.1)
<098CE576-3239-3B41-9141-A5BE6E476C84>

/System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/DictationServicesCore.framework/DictationServicesCore
0x8fe74000 - 0x8fea6e57  dyld (210.2.3)
<23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
0x902f9000 - 0x90313ffc  libsystem_kernel.dylib (2050.22.13)
<70C520E8-0394-3DFB-823B-FE8C251C169A>
/usr/lib/system/libsystem_kernel.dylib
0x90314000 - 0x90632ff3  com.apple.Foundation (6.8 - 945.16)
<C4D95341-B4FF-30AC-815A-A23C019C57A3>
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x90633000 - 0x90645fff  libbsm.0.dylib (32)
<DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
0x90646000 - 0x9064affe  libcache.dylib (57)
<834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
0x9067c000 - 0x90683fff  liblaunch.dylib (442.26.2)
<310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
0x90684000 - 0x906f3ffb  com.apple.Heimdal (3.0 - 2.0)
<964D9952-B0F2-34F6-8265-1823C0D5EAB8>
/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x906f4000 - 0x906fbff3  com.apple.NetFS (5.0 - 4.0)
<FD429432-6DA7-3B41-9889-0E8B4ECB8A4F>
/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x9079e000 - 0x90896ff9  libsqlite3.dylib (138.1)
<AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
0x90897000 - 0x908d9ffb  com.apple.RemoteViewServices (2.0 - 80.6)
<AE962502-4539-3893-A2EB-9D384652AEAC>
/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x908da000 - 0x908e1fff  libsystem_dnssd.dylib (379.37)
<49A44FB3-559D-3C7E-AA40-23F5A8E612AC>
/usr/lib/system/libsystem_dnssd.dylib
0x908e2000 - 0x9093dfff  com.apple.htmlrendering (77 - 1.1.4)
<CD33B313-7E85-3AC0-9EFF-6B0C05F10135>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x90999000 - 0x909a5ffe  libkxld.dylib (2050.22.13)
<ED37AAAA-B1C0-3ADF-A897-3D580A845843> /usr/lib/system/libkxld.dylib
0x909a6000 - 0x909acffc  libCGXCoreImage.A.dylib (331.0.4)
<70A73377-8145-3488-A046-1DB05C6B9D01>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x909ea000 - 0x909f4ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
<9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x909f5000 - 0x90a13ff3  com.apple.openscripting (1.3.6 - 148.3)
<F3422C02-5ACB-343A-987B-A2D58EA2F5A8>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x90a14000 - 0x90a1ffff  libcommonCrypto.dylib (60027)
<8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9>
/usr/lib/system/libcommonCrypto.dylib
0x90a20000 - 0x90ce0ff3  com.apple.security (7.0 - 55179.11)
<165A3105-9ADF-329B-93FC-3C8EFAEDDD13>
/System/Library/Frameworks/Security.framework/Versions/A/Security
0x90ce1000 - 0x90cefff7  libz.1.dylib (43)
<245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
0x90cf0000 - 0x90d09fff  com.apple.Kerberos (2.0 - 1)
<8413EDD3-7E01-3D47-83FD-C14A5235DCD2>
/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x91107000 - 0x91111fff  com.apple.speech.recognition.framework (4.1.5
- 4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921>

/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x91112000 - 0x91115fff  com.apple.help (1.3.2 - 42)
<2B727B38-0E18-3108-9735-F65958924A91>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x91116000 - 0x91116ffd  libOpenScriptingUtil.dylib (148.3)
<87895E27-88E2-3249-8D0E-B17E76FB00C1>
/usr/lib/libOpenScriptingUtil.dylib
0x91117000 - 0x9115cff7  com.apple.NavigationServices (3.7 - 200)
<6AB1A00C-BC94-3889-BA95-40A454B720CE>

/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x9115d000 - 0x911b7ffb  com.apple.AE (645.6 - 645.6)
<44556FF7-A869-399A-AEBB-F4E9263D9152>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x911b8000 - 0x911e3fff  com.apple.shortcut (2.2 - 2.2)
<6E4DD034-A28E-3419-B197-7BB13D2B7C3E>
/System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x911e6000 - 0x9135eff5  com.apple.QuartzCore (1.8 - 304.2)
<FB737C74-C460-32A3-9107-D2112BAE6EBC>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9135f000 - 0x91371ff7  libdispatch.dylib (228.23)
<86EF7D45-2D97-3465-A449-95038AE5DABA>
/usr/lib/system/libdispatch.dylib
0x91372000 - 0x9137fff7  com.apple.HelpData (2.1.4 - 85)
<487CCA0C-BC34-332A-964E-68173DA1EF10>
/System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x91380000 - 0x913e6fff  com.apple.print.framework.PrintCore (8.3 -
387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x913e7000 - 0x91409fff  libc++abi.dylib (26)
<3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
0x9140a000 - 0x9146cfff  libc++.1.dylib (65.1)
<35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
0x9146d000 - 0x9146efff  libDiagnosticMessagesClient.dylib (8)
<39B3D25A-148A-3936-B800-0D393A00E64F>
/usr/lib/libDiagnosticMessagesClient.dylib
0x916dd000 - 0x916ddfff  com.apple.CoreServices (57 - 57)
<83B793A6-720D-31F6-A76A-89EBB2644346>
/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x916de000 - 0x91735ff7  com.apple.ScalableUserInterface (1.0 - 1)
<4B538E02-4F41-37FF-81F6-ED43DE0E78CC>

/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x917e1000 - 0x9180aff7  libRIP.A.dylib (331.0.4)
<FE496AFC-420A-3712-BC79-FC8C63ADB73D>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x9180b000 - 0x9180cfff  libremovefile.dylib (23.2)
<9813B2DB-2374-3AA2-99B6-AA2E9897B249>
/usr/lib/system/libremovefile.dylib
0x9180d000 - 0x91840ffb  com.apple.GSS (3.0 - 2.0)
<9566A96D-C296-3ABD-A12A-E274C81C0B25>
/System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x918df000 - 0x91927ff5  com.apple.opencl (2.2.18 - 2.2.18)
<004A1DE4-49C6-3938-8B54-CD1DC23BDBE5>
/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x91928000 - 0x91958ff3  libtidy.A.dylib (15.10)
<F2F4E000-E305-3089-91E6-3DB0ED07E74A> /usr/lib/libtidy.A.dylib
0x91959000 - 0x91a66ff3  com.apple.ImageIO.framework (3.2.0 - 849)
<B34C2380-51F6-38B1-BB6C-C2E5185D90EF>
/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91a67000 - 0x91a71fff  libsystem_notify.dylib (98.5)
<7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
/usr/lib/system/libsystem_notify.dylib
0x91a72000 - 0x91a96fff  com.apple.PerformanceAnalysis (1.16 - 16)
<7B7EAA0B-5208-32DB-B083-D4B62F37EC46>
/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x91aa1000 - 0x91aa1fff  com.apple.ApplicationServices (45 - 45)
<B23FD836-ECA1-3DF8-B043-9CA9779BE9DB>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x91aa2000 - 0x91abffff  libCRFSuite.dylib (33)
<8E6E8815-406E-3A89-B96E-908FEFC27F0A> /usr/lib/libCRFSuite.dylib
0x91ac0000 - 0x91b04ff7  libGLU.dylib (8.7.25)
<0CC1A4D8-C095-3F2B-B55C-FDEBEA0E9CFE>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x91b05000 - 0x91ba0fff  com.apple.CoreSymbolication (3.0 - 117)
<F705A8CD-A04A-3A84-970A-7B04BC05DA97>
/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x91ba1000 - 0x91bd2fff  com.apple.DictionaryServices (1.2 - 184.4)
<CCB46C81-57C6-3F45-B77C-4D29E4CD6BA6>

/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x91bd3000 - 0x91c22ff6  libTIFF.dylib (849)
<229EBA67-A2D3-30B7-8177-3CA5503360EC>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91c9d000 - 0x91cd2fff  libTrueTypeScaler.dylib (84.6)
<B7DB746B-7A61-38EF-8CA7-408ED9C14A02>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x91cd3000 - 0x91cf2ff3  com.apple.Ubiquity (1.2 - 243.15)
<E10A2937-D671-3D14-AF8D-BA25E601F458>
/System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x91cf3000 - 0x91d0ffff  libPng.dylib (849)
<BF2CB6F5-A2F1-35A4-93F7-ACA6D7F02084>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91d10000 - 0x91d14fff  com.apple.CommonPanels (1.2.5 - 94)
<7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x91d61000 - 0x91d61fff  libkeymgr.dylib (25)
<D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
0x91d62000 - 0x91de7ff7  com.apple.SearchKit (1.4.0 - 1.4.0)
<4E947DC1-7985-3111-A864-58EDD6D955DC>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x91de8000 - 0x91ed9ffc  libiconv.2.dylib (34)
<B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
0x91eda000 - 0x91fd7ff7  com.apple.DiskImagesFramework (10.8.3 - 345)
<26D0C7F8-E87E-3511-8388-8EE616A39D6D>
/System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x9202f000 - 0x9205cffe  libsystem_m.dylib (3022.6)
<93CEEC8C-FAB5-313C-B0BB-0F4E91E6B878>
/usr/lib/system/libsystem_m.dylib
0x9205d000 - 0x920c1fff  com.apple.datadetectorscore (4.1 - 269.2)
<B4D53047-C613-32F8-9E08-0154EA81B487>
/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x920c2000 - 0x920c2fff  libsystem_blocks.dylib (59)
<3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
/usr/lib/system/libsystem_blocks.dylib
0x920c3000 - 0x920e7fff  libJPEG.dylib (849)
<CD42C17E-6B13-35BE-B585-9AE69CEA534F>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x920e8000 - 0x920ebff7  com.apple.TCC (1.0 - 1)
<ABE3CE50-C948-30B1-A343-837D8E7BA9F0>
/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x920ec000 - 0x92183ff7  com.apple.ink.framework (10.8.2 - 150)
<A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x92190000 - 0x923a7fff  com.apple.CoreData (106.1 - 407.7)
<17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x923a8000 - 0x92624ff7  com.apple.QuickTime (7.7.1 - 2599.24)
<5B1CA228-A6B3-39DF-A5CC-F981E59DAD1D>
/System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x92625000 - 0x92625ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
<D35BA73D-1E56-3A1D-9F9F-971F3BF8C136>
/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x92626000 - 0x92643ff7  libresolv.9.dylib (51)
<B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
0x92cdd000 - 0x92ce0ffc  libCoreVMClient.dylib (32.3)
<35B63A60-DF0A-3FB3-ABB8-164B246A43CC>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x92ce1000 - 0x92ce7fff  libGFXShared.dylib (8.7.25)
<4268BFAF-4529-3B40-A8B9-66F176AC20CF>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x92ce8000 - 0x92d4cff3  libstdc++.6.dylib (56)
<F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
0x92d4d000 - 0x92d5bff3  libsystem_network.dylib (77.10)
<11CAF6A8-17CF-3178-9348-57C5ED494BA8>
/usr/lib/system/libsystem_network.dylib
0x92d5c000 - 0x92deeffb  libvMisc.dylib (380.6)
<6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x92def000 - 0x92df3ff7  libmacho.dylib (829)
<5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
0x92df4000 - 0x93211fff  FaceCoreLight (2.4.1)
<571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
/System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x93212000 - 0x932f3fff  libcrypto.0.9.8.dylib (47)
<219227B4-75D2-3CCC-B241-4BE8F8E1D4AB> /usr/lib/libcrypto.0.9.8.dylib
0x932f4000 - 0x93333ff7  com.apple.bom (12.0 - 192)
<D245FA22-3B6C-3872-B485-BE84AD9098B2>
/System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x93334000 - 0x93359ffb  com.apple.framework.familycontrols (4.1 -
410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD>
/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x9346b000 - 0x934b9ffb  libFontRegistry.dylib (100)
<97D8F15F-F072-3AF0-8EF8-50C41781951C>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x93512000 - 0x93516fff  com.apple.OpenDirectory (10.8 - 151.10)
<E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x93517000 - 0x93518fff  libdnsinfo.dylib (453.19)
<3B523729-84A8-3D0B-B58C-3FC185060E67>
/usr/lib/system/libdnsinfo.dylib
0x93519000 - 0x93671ffb  com.apple.audio.toolbox.AudioToolbox (1.8 -
1.8) <0D36953C-9897-3E9B-8C70-847E90B203A2>
/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x93672000 - 0x93676ffc  libGIF.dylib (849)
<2F1DE1C6-4779-35A6-8ED5-BBF8ADD5962A>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x93677000 - 0x9367bfff  com.apple.IOSurface (86.0.4 - 86.0.4)
<6431ACB6-561B-314F-9A2A-FAC1578FCC86>
/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x9367c000 - 0x93685ff9  com.apple.CommonAuth (3.0 - 2.0)
<34C4768C-EF8D-3DBA-AFB7-09148C8672DB>
/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x93686000 - 0x936ddff3  com.apple.HIServices (1.20 - 417)
<561A770B-8523-3D09-A763-11F872779A4C>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x936ed000 - 0x93747fff  com.apple.Symbolication (1.3 - 93)
<4A794D1C-DE02-3183-87BF-0008A602E4D3>
/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x93748000 - 0x9377bff5  libssl.0.9.8.dylib (47)
<84896B24-4941-3149-A4CF-2BAD0F621002> /usr/lib/libssl.0.9.8.dylib
0x93788000 - 0x937adff7  com.apple.CoreVideo (1.8 - 99.4)
<A26DE896-32E0-3D5E-BA89-02AD23FA96B3>
/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x937ae000 - 0x937b1ffc  libpam.2.dylib (20)
<FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
0x937b2000 - 0x937c0fff  libxar.1.dylib (105)
<6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
0x937c1000 - 0x937cbfff  libCSync.A.dylib (331.0.4)
<71A7B331-C8A2-322C-AFB0-062EE9C3B848>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x937d2000 - 0x93820ff3  com.apple.SystemConfiguration (1.12.2 -
1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568>
/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x93821000 - 0x93836fff  com.apple.ImageCapture (8.0 - 8.0)
<F681CA5B-2871-32CF-8E9F-9220EB387407>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x93839000 - 0x9383affd  com.apple.TrustEvaluationAgent (2.0 - 23)
<E42347C0-2D3C-36A4-9200-757FFA61B388>
/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x9383b000 - 0x93842ffb  libunwind.dylib (35.1)
<E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
0x93872000 - 0x9389fffb  com.apple.CoreServicesInternal (154.2 -
154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x938a0000 - 0x93b43ff3  com.apple.CoreImage (8.2.4 - 1.0.1)
<BA4EE8D7-FE72-3CC3-801F-B69D8A8B426F>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x93c78000 - 0x93cbaff7  libauto.dylib (185.1)
<B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
0x93cbb000 - 0x93cc4fff  com.apple.DiskArbitration (2.5.2 - 2.5.2)
<89822A83-B450-3363-8E9C-9B80CB4450B1>
/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x93cc5000 - 0x93eadffb  com.apple.CoreFoundation (6.8 - 744.18)
<68AFEE40-0078-347E-9DEE-32CFE0062A10>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x93f66000 - 0x93fa8ff7  libcups.2.dylib (327.3)
<C7A4A315-FA15-354B-8BC9-BE824C4EFF6D> /usr/lib/libcups.2.dylib
0x93fa9000 - 0x93fb5ff8  libbz2.1.0.dylib (29)
<7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
0x93fb6000 - 0x93fecffb  com.apple.DebugSymbols (98 - 98)
<D0293694-C381-30DF-8DD9-D1B04CD0E5F0>
/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x93fed000 - 0x93feffff  libdyld.dylib (210.2.3)
<05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
0x93ff0000 - 0x93ff1fff  libquarantine.dylib (52)
<D526310F-DC77-37EA-8F5F-83928EFA3262>
/usr/lib/system/libquarantine.dylib
0x93ff2000 - 0x93ff8fff  com.apple.print.framework.Print (8.0 - 258)
<3E10C488-C390-33BD-8A4F-568E3021811D>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x93ff9000 - 0x94002ffd  com.apple.audio.SoundManager (4.0 - 4.0)
<6A0B4A5D-6320-37E4-A1CA-91189777848C>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x94003000 - 0x9400cfff  com.apple.CommerceCore (1.0 - 26.1)
<8C28115C-6EC1-316D-9237-F4FBCBB778C5>

/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x94bb9000 - 0x94c76feb  libsystem_c.dylib (825.26)
<6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63>
/usr/lib/system/libsystem_c.dylib
0x94c77000 - 0x94c77fff  com.apple.Accelerate.vecLib (3.8 - vecLib
3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x94c78000 - 0x94c88ff7  libsasl2.2.dylib (166)
<D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
0x94ce3000 - 0x94ce3fff  libSystem.B.dylib (169.3)
<B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
0x94ce4000 - 0x94cebffe  com.apple.agl (3.2.1 - AGL-3.2.1)
<48407521-A4A3-3D28-8784-29E36AA04804>
/System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x94cec000 - 0x94da0fff  com.apple.coreui (2.0 - 181.1)
<6BEEE83E-C878-3FE6-B521-8B32B3A35409>
/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x94da1000 - 0x9595dff7  com.apple.AppKit (6.8 - 1187.37)
<6FBB3467-04F9-395F-8EA8-C84347C5BE43>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x95961000 - 0x95aeaff7  com.apple.vImage (6.0 - 6.0)
<1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x95aeb000 - 0x95aeeff9  libCGXType.A.dylib (331.0.4)
<981B13D6-4E8B-3468-92D3-FE436B48C0DA>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x95aef000 - 0x95af0ffd  libunc.dylib (25)
<5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
0x9682b000 - 0x96912ff7  libxml2.2.dylib (22.3)
<56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
0x96913000 - 0x96915fff  com.apple.securityhi (4.0 - 55002)
<79E3B880-3AB7-3BF3-9CDF-117A45599545>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x96d9f000 - 0x96dabff7  com.apple.NetAuth (4.0 - 4.0)
<52D23F12-0718-341D-B9DF-16C814022250>
/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x96dae000 - 0x97007ff8  com.apple.JavaScriptCore (8536 - 8536.28.10)
<B02A662A-7DE6-3C9D-AB08-AA746D48FF2B>
/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x97008000 - 0x97015ff7  com.apple.AppleFSCompression (49 - 1.0)
<9A066D13-6E85-36FC-8B58-FD46E51751CE>
/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x97016000 - 0x9703ffff  libxslt.1.dylib (11.3)
<0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
0x9709a000 - 0x9709bfff  liblangid.dylib (116)
<E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
0x9709c000 - 0x971d7ff7  libBLAS.dylib (1073.4)
<FF74A147-05E1-37C4-BC10-7DEB57FE5326>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x97ab0000 - 0x97b2aff3  com.apple.securityfoundation (6.0 - 55115.4)
<8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC>
/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x97b2b000 - 0x97bd5fff  com.apple.LaunchServices (539.7 - 539.7)
<AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>

/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x97bd9000 - 0x97cf5ffb  com.apple.desktopservices (1.7.3 - 1.7.3)
<7157C51D-C695-3C9E-B532-F551E7E55B56>
/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x97cf6000 - 0x97d8efff  com.apple.CoreServices.OSServices (557.6 -
557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x97d8f000 - 0x97e9c057  libobjc.A.dylib (532.2)
<FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
0x97e9d000 - 0x97eb3fff  com.apple.CFOpenDirectory (10.8 - 151.10)
<3640B988-F915-3E0D-897C-CB04C95BA601>

/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x97eb4000 - 0x97f2dffb  libType1Scaler.dylib (101.1)
<C12C5169-4E91-3148-934F-8A9CAB8546C6>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
0x98047000 - 0x98089fff  libcurl.4.dylib (69.2)
<8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
0x9808a000 - 0x9808cffb  libRadiance.dylib (849)
<EAF7C74F-2A71-3A07-82E1-4FADEAFCF201>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x980d8000 - 0x980d8fff  com.apple.Cocoa (6.7 - 19)
<01AA482A-677A-31CA-9EC9-05C57FDDE427>
/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x980d9000 - 0x98141ff7  com.apple.framework.IOKit (2.0.1 - 755.22.5)
<F9A70D23-1108-3616-9DE3-6C5730CA7AB2>
/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x98142000 - 0x982feffd  libicucore.A.dylib (491.11.2)
<59A23F06-16AD-35F8-BA58-D17305232402> /usr/lib/libicucore.A.dylib
0x98590000 - 0x98948ffa  libLAPACK.dylib (1073.4)
<9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x98949000 - 0x9895cff9  com.apple.MultitouchSupport.framework (235.29
- 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE>
/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x9895d000 - 0x98994ffa  com.apple.LDAPFramework (2.4.28 - 194.5)
<B7BAC5B9-ABA9-3799-B8B5-D2DED9383C24>
/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x98995000 - 0x98a53ff3  com.apple.ColorSync (4.8.0 - 4.8.0)
<B534DE6A-3AF0-307C-B274-A4FCFC5BC696>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x98c85000 - 0x98d90ff7  libJP2.dylib (849)
<B2D0E844-C390-376C-91D9-F3501B5C7A83>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x98d94000 - 0x99099ff7  com.apple.CoreServices.CarbonCore (1037.5 -
1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x9909a000 - 0x990affff  com.apple.speech.synthesis.framework (4.1.12
- 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x990b4000 - 0x990c4ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
<C6076983-A02E-389E-BFC6-008EECC4C896>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x990c5000 - 0x99123ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1)
<953DD669-8C6E-387D-AB3F-D8C8965347DF>
/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x99124000 - 0x99170fff  libcorecrypto.dylib (106.2)
<20EBADBA-D6D6-36F0-AE80-168E9AF13DB6>
/usr/lib/system/libcorecrypto.dylib
0x99171000 - 0x99173ffd  libCVMSPluginSupport.dylib (8.7.25)
<C8FC6227-5209-3138-89CD-03CAD11F3EC3>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x99174000 - 0x99180ffa  com.apple.CrashReporterSupport (10.8.3 - 417)
<A4A45B14-8992-3739-82BC-3C5E5C2686F9>
/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x99181000 - 0x9919efff  libxpc.dylib (140.42)
<1E419D55-C5C1-33FF-B52E-6C7FFBEA5E1F> /usr/lib/system/libxpc.dylib
0x991f0000 - 0x991f0fff  com.apple.vecLib (3.8 - vecLib 3.8)
<83160DD1-5614-3E34-80EB-97041016EF1F>
/System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x991f1000 - 0x9921dff7  libsystem_info.dylib (406.17)
<2731CC70-DF2E-3BD1-AE73-A3B83C531756>
/usr/lib/system/libsystem_info.dylib
0x99244000 - 0x99392fff  com.apple.CFNetwork (596.3.3 - 596.3.3)
<EC7EF37B-B00E-374D-9E8F-E4E22D741059>
/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x99393000 - 0x9940fff3  com.apple.Metadata (10.7.0 - 707.5)
<F2BC2AB4-A87A-3D37-A496-AC21EF3E1244>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x99410000 - 0x9941ffff  libGL.dylib (8.7.25)
<818E3E6B-9B00-3117-8157-9E95CB59A47B>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x994a9000 - 0x994c9ffd  com.apple.ChunkingLibrary (2.0 - 133.3)
<FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48>
/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x994ca000 - 0x994d2fff  libcopyfile.dylib (89)
<4963541B-0254-371B-B29A-B6806888949B>
/usr/lib/system/libcopyfile.dylib
0x994d3000 - 0x998b6fff  com.apple.HIToolbox (2.0 - 626.1)
<ECC3F04F-C4B7-35BF-B10E-183B749DAB92>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x998b7000 - 0x99957ff7  com.apple.QD (3.42 - 285)
<1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x99958000 - 0x99958fff  com.apple.Accelerate (1.8 - Accelerate 1.8)
<4EC0548E-3A3F-310D-A366-47B51D5B6398>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x99959000 - 0x99959fff  com.apple.Carbon (154 - 155)
<C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C>
/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x9995a000 - 0x9999afff  com.apple.MediaKit (14 - 687)
<8735A76E-7766-33F5-B3D2-86630070A1BA>
/System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x99b1f000 - 0x99b20fff  libsystem_sandbox.dylib (220.2)
<61A79095-1978-3AAA-B0E0-658BC8E5F045>
/usr/lib/system/libsystem_sandbox.dylib
0x99b21000 - 0x99b5cfef  libGLImage.dylib (8.7.25)
<6C0B2148-032A-3911-AB21-2E07606E3D9A>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x99b64000 - 0x99b7bfff  com.apple.GenerationalStorage (1.1 - 132.3)
<DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63>
/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x99b7c000 - 0x99fbeff3  com.apple.CoreGraphics (1.600.0 - 331.0.4)
<BC041647-FB5A-3D07-A253-F3D34E25BF6C>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x99fbf000 - 0x9a034ff7  com.apple.ApplicationServices.ATS (332 -
341.1) <1D81B09C-98DB-3CDB-990B-459FAE3D8D7A>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x9a035000 - 0x9a0e4ff7  com.apple.CoreText (260.0 - 275.16)
<7716C57B-E059-3B30-BBA8-AD7FF6EE3D35>
/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x9a0e5000 - 0x9a1b9ff3  com.apple.backup.framework (1.4.2 - 1.4.2)
<0473EB45-E9BF-3C10-B235-A6E2B960A88F>
/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x9a20f000 - 0x9a30dff7  libFontParser.dylib (84.6)
<7D3EB3CC-527E-3A74-816A-59CAFD2260A4>

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x9a375000 - 0x9a3ddfe7  libvDSP.dylib (380.6)
<55780308-4DCA-3B10-9703-EAFC3E13A3FA>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x9a679000 - 0x9a67cff7  libcompiler_rt.dylib (30)
<CE5DBDB4-0124-3E2B-9105-989DF98DD108>
/usr/lib/system/libcompiler_rt.dylib
0x9a67d000 - 0x9a753fff  com.apple.DiscRecording (7.0 - 7000.2.4)
<528052A0-FCFB-3867-BCDF-EE0F8A998C1C>
/System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x9a754000 - 0x9a762fff  com.apple.opengl (1.8.7 - 1.8.7)
<0631EC1D-833B-39D2-A907-A9F7617E5504>
/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL


--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: pgAdmin with SSHTunneling support

From
Akshay Joshi
Date:
Hi Dave


On Wed, Apr 10, 2013 at 11:58 AM, Akshay Joshi <akshay.joshi@enterprisedb.com> wrote:



On Tue, Apr 9, 2013 at 9:00 PM, Dave Page <dpage@pgadmin.org> wrote:
Hi

On Tue, Apr 9, 2013 at 10:35 AM, Akshay Joshi
<akshay.joshi@enterprisedb.com> wrote:
> Hi
>
> I have updated the libssh2 code with the latest version for SSHTunneling. I
> have tested it on Windows, Ubuntu and MAC OSX. With the previous version of
> libssh2 we were facing some problem on MAC OSX. We have faced error "SSL
> SYSCALL error: EOF detected". I haven't found any error on MAC OSX, it is
> working fine at my end.
>
> Attached is the latest patch for SSH Tunneling.

Thanks. I'm seeing the following link failure here:

Undefined symbols for architecture i386:
  "_deflate", referenced from:
      _comp_method_zlib_comp in comp.o
  "_deflateEnd", referenced from:
      _comp_method_zlib_dtor in comp.o
  "_deflateInit_", referenced from:
      _comp_method_zlib_init in comp.o
  "_inflate", referenced from:
      _comp_method_zlib_decomp in comp.o
  "_inflateEnd", referenced from:
      _comp_method_zlib_dtor in comp.o
  "_inflateInit_", referenced from:
      _comp_method_zlib_init in comp.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status
make[3]: *** [pgadmin3] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

This is on OS X Mountain Lion, with i686-apple-darwin11-llvm-gcc-4.2
(GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00).
I've attached the configure log in case it helps. I know you've tested
on Dhiraj's Mac - is he on ML?

    We have compiled and tested it on OS X Snow Leopard 10.6.8, with i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3). I'll work on figuring out the above error.

Also, I've made some minor changes in the master branch to the
boostrap script and configure.ac.in that you'll need to merge against
- that should be trivial though. In addition, on line 29 of
configure.ac.in, please change AM_CONFIG_HEADER to AC_CONFIG_HEADERS,
as the former has now been deprecated.

  OK. Will do that.
 
      I have merged SSHTunneling code with the master branch. Attached is the updated patch. I didn't get time to work on the crash that you have faced, will start working on it in 1-2 days.      
 


--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246
Attachment