High Finder and quicklookd CPU Usage Causing Finder to Crash

Joined
Jan 22, 2010
Messages
192
Reaction score
5
Points
18
Computer: Mac Mini (late 2014)
OSX: El Capitan (version 10.11.6)

The Activity Monitor shows that the Finder and quicklookd applications are currently running between 100-200 percent.
As a result, the Finder window constantly shows a "not responding" message in the Force Quit Applications window.

The "not responding" message returns shortly after forcing the Finder application to quit.
The com.apple.finder.plist file in the Library > Preferences window is not currently present.

There is also lots of storage space available (1.22 TB out of 2.11 TB) so that's not the issue.
Spotlight may not be indexing since there is no indexing status message when a file is typed into the Spotlight seach box.

Running First Aid on Disk Utility also has no effect on fixing the non-responsive Finder issue.
Terminal text for the Finder and quicklookd applications is copy and pasted below.

Thanks for any tips on how to fix the constant "not responding" issue with the Finder application.

----------------------------------------------

wws-Mac-mini:~$ sudo iosnoop -n quicklookd
Password:

dtrace: invalid probe specifier
/*
* Command line arguments
*/
inline int OPT_dump = 0;
inline int OPT_device = 0;
inline int OPT_delta = 0;
inline int OPT_devname = 0;
inline int OPT_file = 0;
inline int OPT_args = 0;
inline int OPT_ins = 0;
inline int OPT_nums = 0;
inline int OPT_dtime = 0;
inline int OPT_mount = 0;
inline int OPT_start = 0;
inline int OPT_pid = 0;
inline int OPT_name = 1;
inline int OPT_end = 0;
inline int OPT_endstr = 0;
inline int FILTER = 1;
inline int PID = 0;
inline string DEVICE = ".";
inline string FILENAME = ".";
inline string MOUNT = ".";
inline string NAME = "quicklookd";

#pragma D option quiet
#pragma D option switchrate=10hz

/*
* Print header
*/
dtrace:::BEGIN
{
last_event[""] = 0;

/* print optional headers */
OPT_start ? printf("%-14s ","STIME") : 1;
OPT_end ? printf("%-14s ","TIME") : 1;
OPT_endstr ? printf("%-20s ","STRTIME") : 1;
OPT_devname ? printf("%-7s ","DEVICE") : 1;
OPT_ins ? printf("%-3s ","INS") : 1;
OPT_nums ? printf("%-3s %-3s ","MAJ","MIN") : 1;
OPT_delta ? printf("%-10s ","DELTA") : 1;
OPT_dtime ? printf("%-10s ","DTIME") : 1;

/* print main headers */
OPT_dump ?
printf("%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s\n",
"TIME", "STIME", "DELTA", "DEVICE", "INS", "MAJ", "MIN", "UID",
"PID", "PPID", "D", "BLOCK", "SIZE", "MOUNT", "FILE", "PATH",
"COMM","ARGS") :
printf("%5s %5s %1s %8s %6s ", "UID", "PID", "D", "BLOCK", "SIZE");
OPT_args == 0 ? printf("%10s %s\n", "COMM", "PATHNAME") : 1;
OPT_args == 1 ? printf("%28s %s\n", "PATHNAME", "ARGS") : 1;
}

/*
* Check event is being traced
*/
io:::start
{
/* default is to trace unless filtering, */
self->ok = FILTER ? 0 : 1;

/* check each filter, */
(OPT_device == 1 && DEVICE == args[1]->dev_statname)? self->ok = 1 : 1;
(OPT_file == 1 && FILENAME == args[2]->fi_pathname) ? self->ok = 1 : 1;
(OPT_mount == 1 && MOUNT == args[2]->fi_mount) ? self->ok = 1 : 1;
(OPT_name == 1 && NAME == strstr(NAME, execname)) ? self->ok = 1 : 1;
(OPT_name == 1 && execname == strstr(execname, NAME)) ? self->ok = 1 : 1;
(OPT_pid == 1 && PID == pid) ? self->ok = 1 : 1;
}

/*
* Reset last_event for disk idle -> start
* this prevents idle time being counted as disk time.
*/
io:::start
/! pending[args[1]->dev_statname]/
{
/* save last disk event */
last_event[args[1]->dev_statname] = timestamp;
}

/*
* Store entry details
*/
io:::start
/self->ok/
{
/* these are used as a unique disk event key, */
this->dev = args[0]->b_edev;
this->blk = args[0]->b_blkno;

/* save disk event details, */
start_uid[this->dev, this->blk] = (int)uid;
start_pid[this->dev, this->blk] = pid;
start_ppid[this->dev, this->blk] = ppid;
start_args[this->dev, this->blk] = (char *)curpsinfo->pr_psargs;
start_comm[this->dev, this->blk] = execname;
start_time[this->dev, this->blk] = timestamp;

/* increase disk event pending count */
pending[args[1]->dev_statname]++;

self->ok = 0;
}

/*
* Process and Print completion
*/
io:::done
/start_time[args[0]->b_edev, args[0]->b_blkno]/
{
/* decrease disk event pending count */
pending[args[1]->dev_statname]--;

/*
* Process details
*/

/* fetch entry values */
this->dev = args[0]->b_edev;
this->blk = args[0]->b_blkno;
this->suid = start_uid[this->dev, this->blk];
this->spid = start_pid[this->dev, this->blk];
this->sppid = start_ppid[this->dev, this->blk];
self->sargs = (int)start_args[this->dev, this->blk] == 0 ?
"" : start_args[this->dev, this->blk];
self->scomm = start_comm[this->dev, this->blk];
this->stime = start_time[this->dev, this->blk];
this->etime = timestamp; /* endtime */
this->delta = this->etime - this->stime;
this->dtime = last_event[args[1]->dev_statname] == 0 ? 0 :
timestamp - last_event[args[1]->dev_statname];

/* memory cleanup */
start_uid[this->dev, this->blk] = 0;
start_pid[this->dev, this->blk] = 0;
start_ppid[this->dev, this->blk] = 0;
start_args[this->dev, this->blk] = 0;
start_time[this->dev, this->blk] = 0;
start_comm[this->dev, this->blk] = 0;
start_rw[this->dev, this->blk] = 0;

/*
* Print details
*/

/* print optional fields */
OPT_start ? printf("%-14d ", this->stime/1000) : 1;
OPT_end ? printf("%-14d ", this->etime/1000) : 1;
OPT_endstr ? printf("%-20Y ", walltimestamp) : 1;
OPT_devname ? printf("%-7s ", args[1]->dev_statname) : 1;
OPT_ins ? printf("%3d ", args[1]->dev_instance) : 1;
OPT_nums ? printf("%3d %3d ",
args[1]->dev_major, args[1]->dev_minor) : 1;
OPT_delta ? printf("%-10d ", this->delta/1000) : 1;
OPT_dtime ? printf("%-10d ", this->dtime/1000) : 1;

/* print main fields */
OPT_dump ?
printf("%d %d %d %s %d %d %d %d %d %d %s %d %d %s %s %s %s %S\n",
this->etime/1000, this->stime/1000, this->delta/1000,
args[1]->dev_statname, args[1]->dev_instance, args[1]->dev_major,
args[1]->dev_minor, this->suid, this->spid, this->sppid,
args[0]->b_flags & B_READ ? "R" : "W",
args[0]->b_blkno, args[0]->b_bcount, args[2]->fi_mount,
args[2]->fi_name, args[2]->fi_pathname, self->scomm, self->sargs) :
printf("%5d %5d %1s %8d %6d ",
this->suid, this->spid, args[0]->b_flags & B_READ ? "R" : "W",
args[0]->b_blkno, args[0]->b_bcount);
OPT_args == 0 ? printf("%10s %s\n", self->scomm, args[2]->fi_pathname)
: 1;
OPT_args == 1 ? printf("%28s %S\n",
args[2]->fi_pathname, self->sargs) : 1;

/* save last disk event */
last_event[args[1]->dev_statname] = timestamp;

/* cleanup */
self->scomm = 0;
self->sargs = 0;
}

/*
* Prevent pending from underflowing
* this can happen if this program is started during disk events.
*/
io:::done
/pending[args[1]->dev_statname] < 0/
{
pending[args[1]->dev_statname] = 0;
}
: probe description io:::start does not match any probes
wws-Mac-mini:~$

------------------------------------------------------------------------------

Last login: Mon Feb 12 08:15:46 on ttys000
wws-Mac-mini:~ $ sudo iosnoop -n finder
Password:

dtrace: invalid probe specifier
/*
* Command line arguments
*/
inline int OPT_dump = 0;
inline int OPT_device = 0;
inline int OPT_delta = 0;
inline int OPT_devname = 0;
inline int OPT_file = 0;
inline int OPT_args = 0;
inline int OPT_ins = 0;
inline int OPT_nums = 0;
inline int OPT_dtime = 0;
inline int OPT_mount = 0;
inline int OPT_start = 0;
inline int OPT_pid = 0;
inline int OPT_name = 1;
inline int OPT_end = 0;
inline int OPT_endstr = 0;
inline int FILTER = 1;
inline int PID = 0;
inline string DEVICE = ".";
inline string FILENAME = ".";
inline string MOUNT = ".";
inline string NAME = "finder";

#pragma D option quiet
#pragma D option switchrate=10hz

/*
* Print header
*/
dtrace:::BEGIN
{
last_event[""] = 0;

/* print optional headers */
OPT_start ? printf("%-14s ","STIME") : 1;
OPT_end ? printf("%-14s ","TIME") : 1;
OPT_endstr ? printf("%-20s ","STRTIME") : 1;
OPT_devname ? printf("%-7s ","DEVICE") : 1;
OPT_ins ? printf("%-3s ","INS") : 1;
OPT_nums ? printf("%-3s %-3s ","MAJ","MIN") : 1;
OPT_delta ? printf("%-10s ","DELTA") : 1;
OPT_dtime ? printf("%-10s ","DTIME") : 1;

/* print main headers */
OPT_dump ?
printf("%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s\n",
"TIME", "STIME", "DELTA", "DEVICE", "INS", "MAJ", "MIN", "UID",
"PID", "PPID", "D", "BLOCK", "SIZE", "MOUNT", "FILE", "PATH",
"COMM","ARGS") :
printf("%5s %5s %1s %8s %6s ", "UID", "PID", "D", "BLOCK", "SIZE");
OPT_args == 0 ? printf("%10s %s\n", "COMM", "PATHNAME") : 1;
OPT_args == 1 ? printf("%28s %s\n", "PATHNAME", "ARGS") : 1;
}

/*
* Check event is being traced
*/
io:::start
{
/* default is to trace unless filtering, */
self->ok = FILTER ? 0 : 1;

/* check each filter, */
(OPT_device == 1 && DEVICE == args[1]->dev_statname)? self->ok = 1 : 1;
(OPT_file == 1 && FILENAME == args[2]->fi_pathname) ? self->ok = 1 : 1;
(OPT_mount == 1 && MOUNT == args[2]->fi_mount) ? self->ok = 1 : 1;
(OPT_name == 1 && NAME == strstr(NAME, execname)) ? self->ok = 1 : 1;
(OPT_name == 1 && execname == strstr(execname, NAME)) ? self->ok = 1 : 1;
(OPT_pid == 1 && PID == pid) ? self->ok = 1 : 1;
}

/*
* Reset last_event for disk idle -> start
* this prevents idle time being counted as disk time.
*/
io:::start
/! pending[args[1]->dev_statname]/
{
/* save last disk event */
last_event[args[1]->dev_statname] = timestamp;
}

/*
* Store entry details
*/
io:::start
/self->ok/
{
/* these are used as a unique disk event key, */
this->dev = args[0]->b_edev;
this->blk = args[0]->b_blkno;

/* save disk event details, */
start_uid[this->dev, this->blk] = (int)uid;
start_pid[this->dev, this->blk] = pid;
start_ppid[this->dev, this->blk] = ppid;
start_args[this->dev, this->blk] = (char *)curpsinfo->pr_psargs;
start_comm[this->dev, this->blk] = execname;
start_time[this->dev, this->blk] = timestamp;

/* increase disk event pending count */
pending[args[1]->dev_statname]++;

self->ok = 0;
}

/*
* Process and Print completion
*/
io:::done
/start_time[args[0]->b_edev, args[0]->b_blkno]/
{
/* decrease disk event pending count */
pending[args[1]->dev_statname]--;

/*
* Process details
*/

/* fetch entry values */
this->dev = args[0]->b_edev;
this->blk = args[0]->b_blkno;
this->suid = start_uid[this->dev, this->blk];
this->spid = start_pid[this->dev, this->blk];
this->sppid = start_ppid[this->dev, this->blk];
self->sargs = (int)start_args[this->dev, this->blk] == 0 ?
"" : start_args[this->dev, this->blk];
self->scomm = start_comm[this->dev, this->blk];
this->stime = start_time[this->dev, this->blk];
this->etime = timestamp; /* endtime */
this->delta = this->etime - this->stime;
this->dtime = last_event[args[1]->dev_statname] == 0 ? 0 :
timestamp - last_event[args[1]->dev_statname];

/* memory cleanup */
start_uid[this->dev, this->blk] = 0;
start_pid[this->dev, this->blk] = 0;
start_ppid[this->dev, this->blk] = 0;
start_args[this->dev, this->blk] = 0;
start_time[this->dev, this->blk] = 0;
start_comm[this->dev, this->blk] = 0;
start_rw[this->dev, this->blk] = 0;

/*
* Print details
*/

/* print optional fields */
OPT_start ? printf("%-14d ", this->stime/1000) : 1;
OPT_end ? printf("%-14d ", this->etime/1000) : 1;
OPT_endstr ? printf("%-20Y ", walltimestamp) : 1;
OPT_devname ? printf("%-7s ", args[1]->dev_statname) : 1;
OPT_ins ? printf("%3d ", args[1]->dev_instance) : 1;
OPT_nums ? printf("%3d %3d ",
args[1]->dev_major, args[1]->dev_minor) : 1;
OPT_delta ? printf("%-10d ", this->delta/1000) : 1;
OPT_dtime ? printf("%-10d ", this->dtime/1000) : 1;

/* print main fields */
OPT_dump ?
printf("%d %d %d %s %d %d %d %d %d %d %s %d %d %s %s %s %s %S\n",
this->etime/1000, this->stime/1000, this->delta/1000,
args[1]->dev_statname, args[1]->dev_instance, args[1]->dev_major,
args[1]->dev_minor, this->suid, this->spid, this->sppid,
args[0]->b_flags & B_READ ? "R" : "W",
args[0]->b_blkno, args[0]->b_bcount, args[2]->fi_mount,
args[2]->fi_name, args[2]->fi_pathname, self->scomm, self->sargs) :
printf("%5d %5d %1s %8d %6d ",
this->suid, this->spid, args[0]->b_flags & B_READ ? "R" : "W",
args[0]->b_blkno, args[0]->b_bcount);
OPT_args == 0 ? printf("%10s %s\n", self->scomm, args[2]->fi_pathname)
: 1;
OPT_args == 1 ? printf("%28s %S\n",
args[2]->fi_pathname, self->sargs) : 1;

/* save last disk event */
last_event[args[1]->dev_statname] = timestamp;

/* cleanup */
self->scomm = 0;
self->sargs = 0;
}

/*
* Prevent pending from underflowing
* this can happen if this program is started during disk events.
*/
io:::done
/pending[args[1]->dev_statname] < 0/
{
pending[args[1]->dev_statname] = 0;
}
: probe description io:::start does not match any probes
wws-Mac-mini:~ $
 
OP
S
Joined
Jan 22, 2010
Messages
192
Reaction score
5
Points
18
The com.apple.finder.plist file has now appeared in the Library > Preferences window.
So I deleted this file, rebooted the computer and found that Finder usage is still around 100 percent in the Activity Monitor.

The Finder window still crashes with the "not responding" message in the Force Quit Applications window.
 
Joined
Jan 1, 2009
Messages
15,510
Reaction score
3,871
Points
113
Location
Winchester, VA
Your Mac's Specs
MBP 16" 2023 (M3 Pro), iPhone 15 Pro, plus ATVs, AWatch, MacMinis (multiple)
Is there a crash report in Console for Finder? That might give you a clue.
 
OP
S
Joined
Jan 22, 2010
Messages
192
Reaction score
5
Points
18
Here is an error message from the Mac Console.

"quicklookd: error returned from the inconserviceagent: null.
Failed to composit image for descriptor."
 
Joined
Jan 1, 2009
Messages
15,510
Reaction score
3,871
Points
113
Location
Winchester, VA
Your Mac's Specs
MBP 16" 2023 (M3 Pro), iPhone 15 Pro, plus ATVs, AWatch, MacMinis (multiple)
I am going to assume that it really was "iconserviceagent" and not "inconserviceagent" and say that from that Finder is trying to open some file to get the icon for the file, is finding something it cannot handle. Try changing the "view" in finder. If you use icons, go to list, if list, go to icons. Just change the display of files to see if the problem goes away. It's a bit of a wild guess, but if that's the only error in console, it's all you have to go on.
 
OP
S
Joined
Jan 22, 2010
Messages
192
Reaction score
5
Points
18
Here is a crash report that may reveal some clues about why the Finder application is constantly crashing.

Process: system_profiler [90599]
Path: /usr/sbin/system_profiler
Identifier: system_profiler
Version: 1042
Code Type: X86-64 (Native)
Parent Process: system_profiler [90597]
Responsible: system_profiler [90599]
User ID: 501

Date/Time: 2018-02-08 06:31:43.227 -0700
OS Version: Mac OS X 10.11.6 (15G19009)
Report Version: 11
Anonymous UUID: 3C62D541-9B6D-899F-5EF3-E72859F774EA


Time Awake Since Boot: 140000 seconds

System Integrity Protection: enabled

Crashed Thread: 1 Dispatch queue: com.apple.root.default-qos

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000020
Exception Note: EXC_CORPSE_NOTIFY

VM Regions Near 0x20:
-->
__TEXT 000000010bf8a000-000000010bf90000 [ 24K] r-x/rwx SM=COW /usr/sbin/system_profiler

Application Specific Information:
arguments: (
"/usr/sbin/system_profiler",
"-nospawn",
"-xml",
SPHardwareDataType,
"-detailLevel",
full
), dataType: SPHardwareDataType

Thread 0:
0 libsystem_kernel.dylib 0x00007fff9b034122 __semwait_signal_nocancel + 10
1 libsystem_c.dylib 0x00007fff92acb318 nanosleep$NOCANCEL + 188
2 libsystem_c.dylib 0x00007fff92af3460 sleep$NOCANCEL + 42
3 libdispatch.dylib 0x00007fff94835755 _dispatch_queue_cleanup2 + 140
4 libsystem_pthread.dylib 0x00007fff8ce513dc _pthread_tsd_cleanup + 555
5 libsystem_pthread.dylib 0x00007fff8ce50f63 _pthread_exit + 117
6 libsystem_pthread.dylib 0x00007fff8ce51c0e pthread_exit + 30
7 libdispatch.dylib 0x00007fff948356ab dispatch_main + 43
8 system_profiler 0x000000010bf8ea28 0x10bf8a000 + 18984
9 libdyld.dylib 0x00007fff98a935ad start + 1

Thread 1 Crashed:: Dispatch queue: com.apple.root.default-qos
0 com.apple.CoreFoundation 0x00007fff91f505c0 CFNumberFormatterSetProperty + 112
1 com.apple.CoreFoundation 0x00007fff91e865d3 __CFStringAppendFormatCore + 12515
2 com.apple.CoreFoundation 0x00007fff91e834c3 _CFStringCreateWithFormatAndArgumentsAux2 + 259
3 com.apple.Foundation 0x00007fff9f055ce5 -[NSPlaceholderString initWithFormat:locale:arguments:] + 153
4 com.apple.Foundation 0x00007fff9f1338ac +[NSString localizedStringWithFormat:] + 199
5 com.apple.SystemProfiler.SPPlatformReporter 0x000000010cb13c48 0x10cb11000 + 11336
6 com.apple.SystemProfiler.SPPlatformReporter 0x000000010cb12b3d 0x10cb11000 + 6973
7 com.apple.framework.SPSupport 0x000000010bfa03f3 -[SPDocument _reportFromBundlesForDataType:] + 441
8 com.apple.framework.SPSupport 0x000000010bfa0aea -[SPDocument reportForDataType:] + 180
9 com.apple.framework.SPSupport 0x000000010bfa0da4 __34-[SPDocument reportsForDataTypes:]_block_invoke + 68
10 libdispatch.dylib 0x00007fff94833029 _dispatch_client_callout2 + 8
11 libdispatch.dylib 0x00007fff948378c1 _dispatch_apply_serial + 42
12 libdispatch.dylib 0x00007fff9482140b _dispatch_client_callout + 8
13 libdispatch.dylib 0x00007fff948325a4 _dispatch_sync_f_invoke + 56
14 libdispatch.dylib 0x00007fff94832c4c dispatch_apply_f + 286
15 com.apple.framework.SPSupport 0x000000010bfa0bf8 -[SPDocument reportsForDataTypes:] + 234
16 com.apple.framework.SPSupport 0x000000010bfa3d5d -[SPDocument xmlPropertyListRepresentationForDataTypes:] + 27
17 system_profiler 0x000000010bf8e867 0x10bf8a000 + 18535
18 system_profiler 0x000000010bf8ea6c 0x10bf8a000 + 19052
19 libdispatch.dylib 0x00007fff9482c93d _dispatch_call_block_and_release + 12
20 libdispatch.dylib 0x00007fff9482140b _dispatch_client_callout + 8
21 libdispatch.dylib 0x00007fff9482603b _dispatch_queue_drain + 754
22 libdispatch.dylib 0x00007fff9482c707 _dispatch_queue_invoke + 549
23 libdispatch.dylib 0x00007fff94824d53 _dispatch_root_queue_drain + 538
24 libdispatch.dylib 0x00007fff94824b00 _dispatch_worker_thread3 + 91
25 libsystem_pthread.dylib 0x00007fff8ce4f4de _pthread_wqthread + 1129
26 libsystem_pthread.dylib 0x00007fff8ce4d341 start_wqthread + 13

Thread 2:: Dispatch queue: com.apple.root.default-qos.overcommit
0 libsystem_kernel.dylib 0x00007fff9b0343aa __sigsuspend_nocancel + 10
1 libdispatch.dylib 0x00007fff948357ca _dispatch_sigsuspend + 21
2 libdispatch.dylib 0x00007fff948357b5 _dispatch_sig_thread + 45

Thread 3:
0 libsystem_kernel.dylib 0x00007fff9b0345e2 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8ce4f578 _pthread_wqthread + 1283
2 libsystem_pthread.dylib 0x00007fff8ce4d341 start_wqthread + 13

Thread 4:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff9b034efa kevent_qos + 10
1 libdispatch.dylib 0x00007fff94827165 _dispatch_mgr_invoke + 216
2 libdispatch.dylib 0x00007fff94826dcd _dispatch_mgr_thread + 52

Thread 5:
0 libsystem_kernel.dylib 0x00007fff9b0345e2 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8ce4f578 _pthread_wqthread + 1283
2 libsystem_pthread.dylib 0x00007fff8ce4d341 start_wqthread + 13

Thread 6:
0 libsystem_kernel.dylib 0x00007fff9b0345e2 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8ce4f578 _pthread_wqthread + 1283
2 libsystem_pthread.dylib 0x00007fff8ce4d341 start_wqthread + 13

Thread 1 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00007fff7ab989e0 rcx: 0x0000000000000000 rdx: 0x0000000000000026
rdi: 0x00007fff7aacc0c8 rsi: 0x00007fff7ab989c8 rbp: 0x000070000007e9b0 rsp: 0x000070000007e360
r8: 0x00007fff921fadc4 r9: 0x00007fff7aacc050 r10: 0x00007fff7ab989f0 r11: 0x00007fbdea400000
r12: 0x0000000000000027 r13: 0xe300e8e09b9cd195 r14: 0x0000000000000000 r15: 0x0000000000000027
rip: 0x00007fff91f505c0 rfl: 0x0000000000010246 cr2: 0x0000000000000020

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


Binary Images:
0x10bf8a000 - 0x10bf8ffff system_profiler (1042) <11219A4A-FC1B-3425-9DCE-D3972A1A1741> /usr/sbin/system_profiler
0x10bf9b000 - 0x10bfa7fff com.apple.framework.SPSupport (10.10 - 915) <DA70FD1E-77E4-3D7F-BDBC-4EA2DC070803> /System/Library/PrivateFrameworks/SPSupport.framework/Versions/A/SPSupport
0x10bfb3000 - 0x10c24dff7 com.apple.security (7.0 - 57337.60.7) <2F185A56-098F-37EC-AE37-CF4AD94A52C5> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x10c3d3000 - 0x10c3d3ff7 liblaunch.dylib (765.70.1) <96D7C3EE-82E2-39AB-870F-B317A030E86D> /usr/lib/system/liblaunch.dylib
0x10c3da000 - 0x10c3ddfff libsystem_sandbox.dylib (460.60.4) <7F7457B0-F83B-34DD-A7AE-0F8937E7C2A0> /usr/lib/system/libsystem_sandbox.dylib
0x10c3eb000 - 0x10c414ff7 libxpc.dylib (765.70.1) <4FB1311F-4032-3F56-BF0B-CFF45D78FB01> /usr/lib/system/libxpc.dylib
0x10c433000 - 0x10c6bafff com.apple.CFNetwork (760.8 - 760.8) <E16FA549-FDA1-38A8-AF2E-30444D7F62C0> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x10c8ac000 - 0x10c8aeff7 com.apple.xpc.ServiceManagement (1.0 - 1) <B4181284-D588-3A20-93F3-B4FA882BC9A8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x10cb11000 - 0x10cb14fff com.apple.SystemProfiler.SPPlatformReporter (14.4.5 - 1445) <245554B6-2800-3A05-AB50-A7917ADD5300> /System/Library/SystemProfiler/SPPlatformReporter.spreporter/Contents/MacOS/SPPlatformReporter
0x7fff68b45000 - 0x7fff68b7ca47 dyld (360.22) <C8E77F6D-CE86-3C5B-8576-2584A799B51E> /usr/lib/dyld
0x7fff891a6000 - 0x7fff891aefff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff89297000 - 0x7fff892a0fff com.apple.icloud.FindMyDevice (1.0 - 1) <B9C741F2-6FAC-3BA7-B6E0-9A910C6E8D4E> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff89ab6000 - 0x7fff89ab6fff com.apple.ApplicationServices (48 - 48) <ADD57D3A-142F-3EF5-BFD8-EACD82164884> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff89acb000 - 0x7fff89b3afff com.apple.SearchKit (1.4.0 - 1.4.0) <F159A888-34CA-36F1-AC8E-EB1B38C9DFB3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff89b3b000 - 0x7fff89b3dff7 libquarantine.dylib (80) <9F031942-56F7-3A85-B18E-C62FFC45FB53> /usr/lib/system/libquarantine.dylib
0x7fff89cea000 - 0x7fff89d38ff7 libcurl.4.dylib (90.2.1) <A787E21B-C479-3243-89AB-6CA54A3914CA> /usr/lib/libcurl.4.dylib
0x7fff89d3e000 - 0x7fff89d4afff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6BA06290-D4A3-351C-87F9-B61EF61FF055> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff8a1eb000 - 0x7fff8a2ddff7 libiconv.2.dylib (44) <F05A0A5A-92A9-3668-8F20-F27CBDA26BE9> /usr/lib/libiconv.2.dylib
0x7fff8a329000 - 0x7fff8a387fff com.apple.SystemConfiguration (1.14 - 1.14) <F083C2B2-6162-358F-9270-98EE9FE58A08> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8a520000 - 0x7fff8a537fff libmarisa.dylib (4) <E4919B03-D9BD-3AF8-B436-C415C98E3F0A> /usr/lib/libmarisa.dylib
0x7fff8a538000 - 0x7fff8a561fff com.apple.ProtectedCloudStorage (1.0 - 1) <D471C1FE-C4A5-3201-BAAB-D3F9F7FC913A> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff8ac07000 - 0x7fff8ac23fff com.apple.GenerationalStorage (2.0 - 239.1) <8C821448-4294-3736-9CEF-467C93785CB9> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff8bbf3000 - 0x7fff8bbf5fff libCVMSPluginSupport.dylib (12.1) <3C429902-B8C5-3612-A272-20E26BE4B8FF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff8bbf6000 - 0x7fff8bbf9fff libCoreVMClient.dylib (119.5) <560D70FB-709F-3030-96C9-F249FCB7DA6D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff8bc59000 - 0x7fff8bc70ff7 libsystem_coretls.dylib (83.40.5) <C90DAE38-4082-381C-A185-2A6A8B677628> /usr/lib/system/libsystem_coretls.dylib
0x7fff8bd2b000 - 0x7fff8bdb3fff com.apple.CoreSymbolication (3.1 - 58048.1) <C42C7600-2BEC-300F-8611-CE0F1C13BB36> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff8becf000 - 0x7fff8bf2bfff libTIFF.dylib (1464) <0328905B-AF97-39D1-A631-E1A4376014CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff8bf2c000 - 0x7fff8c28ef3f libobjc.A.dylib (680) <7489D2D6-1EFD-3414-B18D-2AECCCC90286> /usr/lib/libobjc.A.dylib
0x7fff8c2b3000 - 0x7fff8c2b8ff7 libheimdal-asn1.dylib (453.40.11) <41620070-8AA6-3566-8520-67C65F6FA0DF> /usr/lib/libheimdal-asn1.dylib
0x7fff8ca43000 - 0x7fff8cad9fff com.apple.ColorSync (4.9.0 - 4.9.0) <8FC37E20-6579-3CB2-9D49-BC39FC38DF87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8caf9000 - 0x7fff8cc43ff7 com.apple.coreui (2.1 - 366.1) <A004F065-6CDF-3456-A114-C6B3404D8A50> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8cc57000 - 0x7fff8cc9cff3 libFontRegistry.dylib (155.2) <A70DD497-35F3-34DA-9C19-F4B90080E961> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff8cca2000 - 0x7fff8ccabff7 com.apple.CommonAuth (4.0 - 2.0) <5B980638-76EC-3B49-8B24-690BA48C3CDC> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff8ce4c000 - 0x7fff8ce55ff7 libsystem_pthread.dylib (138.10.4) <88FF5FCA-6275-3F82-BAF6-1B3ED639CC2A> /usr/lib/system/libsystem_pthread.dylib
0x7fff8ce73000 - 0x7fff8ce76ffb libScreenReader.dylib (426.42) <16FC79D1-4573-3E90-945F-CBA22D5185FD> /usr/lib/libScreenReader.dylib
0x7fff8cf27000 - 0x7fff8cf2aff7 libCoreFSCache.dylib (119.5) <2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff8d100000 - 0x7fff8d151ff7 libcups.2.dylib (435.2) <91584A40-214D-33E8-A613-CE22289037C8> /usr/lib/libcups.2.dylib
0x7fff8d16c000 - 0x7fff8d25bffb libxml2.2.dylib (29.15) <75F9E35A-8046-30B8-8B63-5594272E5A7C> /usr/lib/libxml2.2.dylib
0x7fff8d33d000 - 0x7fff8d347fff com.apple.NetAuth (6.0 - 6.0) <D692B1EF-534F-3892-8E2F-2BBA7C8AFD74> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff8d893000 - 0x7fff8d893fff com.apple.Accelerate (1.10 - Accelerate 1.10) <185EC96A-5AF0-3620-A4ED-4D3654D25B39> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8d894000 - 0x7fff8e4bdff7 com.apple.AppKit (6.9 - 1404.47) <F3411F6E-DD87-34D0-8C68-C69B2205E41D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff8e4be000 - 0x7fff8e4c6fef libsystem_platform.dylib (74.40.2) <29A905EF-6777-3C33-82B0-6C3A88C4BA15> /usr/lib/system/libsystem_platform.dylib
0x7fff8e852000 - 0x7fff8e881fc3 libsystem_m.dylib (3105) <26AC4401-331F-37BB-A636-400B9D8B38DE> /usr/lib/system/libsystem_m.dylib
0x7fff8e8f0000 - 0x7fff8e8f2ff7 libsystem_configuration.dylib (802.40.13) <134ED2F5-378A-326B-A985-850ECC73A5C0> /usr/lib/system/libsystem_configuration.dylib
0x7fff8ea45000 - 0x7fff8ea48ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <6932B5EC-0EA9-333D-BF7E-665047392FEC> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff8eab6000 - 0x7fff8ebc9ff7 libvDSP.dylib (563.5) <DECAFACB-E61D-3B8E-A103-CD5EED1A9E9F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff8ed8c000 - 0x7fff8ef32ff7 com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <370E95BC-956C-3962-86CC-0A14CF6A0389> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff8f262000 - 0x7fff8f278ff7 libLinearAlgebra.dylib (1162.2) <FFE54EDF-F06F-3C0A-864A-4CA7BBFD4B2D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff8f279000 - 0x7fff8f281fff com.apple.NetFS (6.0 - 4.0) <842A5346-24C3-3F22-9ECF-E586A10EA1F2> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff8f2e5000 - 0x7fff8f374ff7 libCoreStorage.dylib (517.50.1) <84D30916-0382-3644-9722-394A3D4B9909> /usr/lib/libCoreStorage.dylib
0x7fff8f375000 - 0x7fff8f3b6ff7 libGLU.dylib (12.1) <CD7A5916-3E3C-3EF3-A275-B281016B99CB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff8f4be000 - 0x7fff8f4e0fff com.apple.IconServices (68.1 - 68.1) <CDEEDBE6-F53B-3BA1-82D4-23BCA3DD8949> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff8f4e1000 - 0x7fff8f4fbff3 liblzma.5.dylib (10) <CC03591B-FA57-3CA5-AC81-0D76033AC0CE> /usr/lib/liblzma.5.dylib
0x7fff8f571000 - 0x7fff8f57cff7 libkxld.dylib (3248.73.5) <03C87E04-5E13-3DE6-898C-B1359941D8EE> /usr/lib/system/libkxld.dylib
0x7fff8f976000 - 0x7fff8f9dcff7 libsystem_network.dylib (583.50.1) <B52DAB73-92DC-3DA7-B9F4-B899D66445C1> /usr/lib/system/libsystem_network.dylib
0x7fff8faca000 - 0x7fff8fec6fff libLAPACK.dylib (1162.2) <987E42B0-5108-3065-87F0-9DF7616A8A06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff8fec7000 - 0x7fff8fed9fff libsasl2.2.dylib (209) <11C7D200-0CA5-30F4-A19A-178CA81D48FE> /usr/lib/libsasl2.2.dylib
0x7fff8feda000 - 0x7fff8feffff7 libPng.dylib (1464) <F481B1EF-3A1F-3F1A-88D7-2A2FF5168466> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff90adc000 - 0x7fff90ce7fff libFosl_dynamic.dylib (16.24) <5F9DB82D-FD4B-3952-8531-CE020F93ED49> /usr/lib/libFosl_dynamic.dylib
0x7fff90e87000 - 0x7fff9112dff7 com.apple.CoreData (120 - 641.3) <A29A5491-6169-372B-828F-84EE0CFD4BC4> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff9112e000 - 0x7fff91139fff com.apple.CrashReporterSupport (10.11 - 718) <5BBF1686-1D10-3797-AAFA-D4A7B282A214> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff91167000 - 0x7fff913fdfff libmecabra.dylib (696.5) <EF6C0BD4-5FE8-34FB-8ADF-69A53CEC97A9> /usr/lib/libmecabra.dylib
0x7fff91484000 - 0x7fff91511dd7 com.apple.AppleJPEG (1.0 - 1) <BF7EDBDB-A52D-37F7-BDE4-EAD49310D7A9> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff91568000 - 0x7fff91576fff com.apple.opengl (12.1.0 - 12.1.0) <E07DB6E4-1145-34C5-8A2E-54EB542708DA> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff91586000 - 0x7fff9186bffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) <2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff9186c000 - 0x7fff9186efff com.apple.EFILogin (2.0 - 2) <38150198-DD7F-3C73-BCAA-C74BB376393A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff91910000 - 0x7fff91943ff7 com.apple.MediaKit (16 - 809) <BF8032FE-6645-37F6-A622-BC7EEE3EAABF> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff91949000 - 0x7fff919a7fff com.apple.CoreServices.OSServices (728.13 - 728.13) <B7F4660F-DB0C-3E02-9632-5DBA28994905> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff919a8000 - 0x7fff919c5ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <B48BD275-9CE4-36DB-A74A-695021F9D53A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff91a2b000 - 0x7fff91a3cff7 libsystem_trace.dylib (201.10.3) <D36B59EB-48D7-30D3-A6AE-328D6CA3D2AA> /usr/lib/system/libsystem_trace.dylib
0x7fff91d48000 - 0x7fff91d48fff libenergytrace.dylib (10.40.1) <0A491CA7-3451-3FD5-999A-58AB4362682B> /usr/lib/libenergytrace.dylib
0x7fff91e1e000 - 0x7fff91e45fff com.apple.ChunkingLibrary (167 - 167) <AD7F285C-005E-36BB-98A3-5826413533BE> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff91e4d000 - 0x7fff922c3fff com.apple.CoreFoundation (6.9 - 1259.20) <CFDE34FD-2227-3FD8-A8F9-00D21DCD872B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff9275d000 - 0x7fff92765fff com.apple.AppleSRP (5.0 - 1) <1D026890-0A04-3FDD-92C1-A12B35B05454> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff92766000 - 0x7fff9279aff7 com.apple.CoreVideo (1.8 - 191.3) <1AA24A1B-CB84-3F6B-B6DE-11494542649C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff9279b000 - 0x7fff927a1fff com.apple.IOAccelerator (205.14 - 205.14) <AFCB63A4-BEF6-362B-98C2-912FB1FC5F82> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff927d4000 - 0x7fff92819ff7 com.apple.coreservices.SharedFileList (24.4 - 24.5) <1D2AD77B-778F-3253-A295-3D0A32A8121C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff92882000 - 0x7fff928bcfff com.apple.QD (3.12 - 302) <0FE53180-2895-3D14-A1E7-F82DE1D106E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff928bd000 - 0x7fff929b9ff7 libFontParser.dylib (158.8) <E471503F-C3F1-370C-ABDC-B9152CA6BCAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff92a2f000 - 0x7fff92ac4fff com.apple.ink.framework (10.9 - 214) <1F76CF36-3F79-36B8-BC37-C540AF34B338> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff92ac5000 - 0x7fff92b52fef libsystem_c.dylib (1082.60.1) <56329DD7-DF87-370E-B56B-9AF92AD2E048> /usr/lib/system/libsystem_c.dylib
0x7fff92b68000 - 0x7fff92b6afff com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff92b6d000 - 0x7fff92b6dff7 libkeymgr.dylib (28) <8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0> /usr/lib/system/libkeymgr.dylib
0x7fff92e0f000 - 0x7fff92e1bff7 com.apple.OpenDirectory (10.11 - 194) <31A67AD5-5CC2-350A-96D7-821DF4BC4196> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff92f30000 - 0x7fff92f5aff7 libc++abi.dylib (307.4) <D24E06BF-6522-3C4A-BD0C-11C42BA4D8E8> /usr/lib/libc++abi.dylib
0x7fff92f5b000 - 0x7fff92f62ff7 libcompiler_rt.dylib (62) <A13ECF69-F59F-38AE-8609-7B731450FBCD> /usr/lib/system/libcompiler_rt.dylib
0x7fff92f63000 - 0x7fff92f63fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <054DFE32-737D-3211-9A14-0FC5E1A880E3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff92f64000 - 0x7fff92f69fff com.apple.DiskArbitration (2.7 - 2.7) <8CB47F4A-0FD2-343A-93C8-965174F6F24F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff92f6a000 - 0x7fff92f7bfff libcmph.dylib (6) <BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF> /usr/lib/libcmph.dylib
0x7fff930d3000 - 0x7fff932f4ff7 com.apple.CoreImage (11.4.0 - 366.4.20) <7721BA55-A10E-3425-8392-C5D7C510EAAB> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff93319000 - 0x7fff93338ff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) <84FDA279-9F05-32F9-908F-4E0DAC422311> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff93339000 - 0x7fff93352fff com.apple.CFOpenDirectory (10.11 - 194) <11F95672-55E0-3F9D-9171-5E8C56AEE948> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff9355c000 - 0x7fff947a5ff3 com.apple.CoreGraphics (1.600.0 - 960.7) <FFB90E5E-F8FA-326C-8EF2-F809F9A58830> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff947a6000 - 0x7fff947a9fff com.apple.IOSurface (108.3.2 - 108.3.2) <88A893E9-A0E4-39FC-9A4E-1FB428F577EE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff947b7000 - 0x7fff9481efff com.apple.framework.CoreWiFi (11.0 - 1101.20) <91C5A231-0F7B-3B6A-A2D9-D389DBE9E1EB> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff9481f000 - 0x7fff9484cfff libdispatch.dylib (501.40.12) <C7499857-61A5-3D7D-A5EA-65DCC8C3DF92> /usr/lib/system/libdispatch.dylib
0x7fff9487a000 - 0x7fff9489efff com.apple.MultitouchSupport.framework (304.12 - 304.12) <2B4AC448-89A8-3A3F-947F-06B5BF069DAF> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff94a93000 - 0x7fff94b83ff7 libJP2.dylib (1464) <B75DE70D-C370-331B-9C68-AE5D0B542875> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff94fb7000 - 0x7fff94fbffff libsystem_networkextension.dylib (385.40.36) <66095DC7-6539-38F2-95EE-458F15F6D014> /usr/lib/system/libsystem_networkextension.dylib
0x7fff94fe4000 - 0x7fff94fe5ffb libSystem.B.dylib (1226.10.1) <261DBD02-CC8E-33A0-825F-391C00A4BEA5> /usr/lib/libSystem.B.dylib
0x7fff94fe6000 - 0x7fff95037fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <EA7D4F3B-062B-3C81-A98C-C89264D00D48> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff95038000 - 0x7fff9503dff3 libunwind.dylib (35.3) <F6EB48E5-4D12-359A-AB54-C937FBBE9043> /usr/lib/system/libunwind.dylib
0x7fff9503e000 - 0x7fff9505aff7 libsystem_malloc.dylib (67.40.1) <5748E8B2-F81C-34C6-8B13-456213127678> /usr/lib/system/libsystem_malloc.dylib
0x7fff9505b000 - 0x7fff95141ff7 libcrypto.0.9.8.dylib (59.60.2) <7129EEB8-34EF-3A8F-9541-F5C22571E260> /usr/lib/libcrypto.0.9.8.dylib
0x7fff95142000 - 0x7fff95146fff libpam.2.dylib (20) <CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A> /usr/lib/libpam.2.dylib
0x7fff9580a000 - 0x7fff9580bfff libsystem_blocks.dylib (65) <1244D9D5-F6AA-35BB-B307-86851C24B8E5> /usr/lib/system/libsystem_blocks.dylib
0x7fff95879000 - 0x7fff958e7ff7 com.apple.ApplicationServices.ATS (377 - 394.5) <892FAD85-37FC-39FC-9E6A-7EC00DBA70B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff95913000 - 0x7fff95a41fff com.apple.CoreText (352.0 - 494.15) <E61C7587-A011-38F0-930A-934DF9CD1277> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff95ab8000 - 0x7fff95ee6fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) <E54028EA-4217-3078-A2B1-C52E4214D59E> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff95fee000 - 0x7fff96383fdb com.apple.vImage (8.0 - 8.0) <4BAC9B6F-7482-3580-8787-AB0A5B4D331B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff9638b000 - 0x7fff963a7ff7 libextension.dylib (78) <FD952DA6-BBEC-3CB6-98B3-E1D111C5C54E> /usr/lib/libextension.dylib
0x7fff963a8000 - 0x7fff963a9fff liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib
0x7fff96481000 - 0x7fff96486fff com.apple.TCC (1.0 - 1) <F5EEB2D3-9517-3975-97BE-22CB8E11B8A3> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff96487000 - 0x7fff96605fff com.apple.UIFoundation (1.0 - 436.1) <AABB5267-E7B7-3D75-B051-E665BDA8DEF4> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff96959000 - 0x7fff96961fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) <CC53DC12-9231-3C4F-921B-9A770D463323> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff96994000 - 0x7fff96a44fff com.apple.backup.framework (1.7.4 - 1.7.4) <F304E9D1-991A-379E-9659-BF85C35B4808> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff96e21000 - 0x7fff96e39fef libcompression.dylib (28) <E7601B62-1053-369D-8A9E-91CF86239220> /usr/lib/libcompression.dylib
0x7fff96e3a000 - 0x7fff96e3bfff com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff96e41000 - 0x7fff96e41fff libOpenScriptingUtil.dylib (169.2) <A6D6ECFF-C315-3353-832B-1ADB5F4588CB> /usr/lib/libOpenScriptingUtil.dylib
0x7fff974e2000 - 0x7fff9754dff7 com.apple.framework.CoreWLAN (11.0 - 1101.20) <F91E178D-874A-3080-8C6D-556E07A4C527> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff97679000 - 0x7fff976b3ff7 com.apple.DebugSymbols (132 - 132) <23A42C53-B941-3871-9EE2-4C87A46005B5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff976b4000 - 0x7fff976d8fff libJPEG.dylib (1464) <492AEE9D-5D4B-3063-A380-FA8561103D55> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff976d9000 - 0x7fff976d9fff com.apple.audio.units.AudioUnit (1.13 - 1.13) <378B5292-F216-32AB-B628-8C33A72D7052> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff976da000 - 0x7fff9777efff com.apple.Bluetooth (4.4.6 - 4.4.6f2) <C84D30C1-DC2E-356E-A8C8-DA496CA659CB> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff9777f000 - 0x7fff977bdff7 libGLImage.dylib (12.1) <BB1F1A93-5101-3906-AB17-8D83FCB200F9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff977c2000 - 0x7fff97988ff7 com.apple.ImageIO.framework (3.3.0 - 1462) <78862785-0667-35F6-87C0-A1B1FA3588A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff979b2000 - 0x7fff979b6fff libGIF.dylib (1464) <91BEB042-4459-3632-B24A-E7E8D67CFC8D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff979b7000 - 0x7fff97ac5ff3 com.apple.desktopservices (1.10.3 - 1.10.3) <3A6906D4-C0B8-30D1-B589-0466E5E42B69> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff97bf4000 - 0x7fff97c0fff7 libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib
0x7fff9870e000 - 0x7fff98832fff libsqlite3.dylib (216.4) <280D67B8-F93D-3587-A146-19F36C817548> /usr/lib/libsqlite3.dylib
0x7fff98836000 - 0x7fff9895dfff com.apple.LaunchServices (728.13 - 728.13) <E0F47731-C31C-3DF9-9891-EE0DB89572B8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff98975000 - 0x7fff98980ff7 libcommonCrypto.dylib (60075.50.1) <42368302-BA87-39CD-9590-CB05F35B5A8A> /usr/lib/system/libcommonCrypto.dylib
0x7fff98987000 - 0x7fff98995fff libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib
0x7fff98a0f000 - 0x7fff98a83ff7 com.apple.Heimdal (4.0 - 2.0) <72D36F0E-2D3D-316E-870E-E68BF30F1D7D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff98a8f000 - 0x7fff98a8ffff libmetal_timestamp.dylib (600.0.44.2) <DEEA1127-7A5D-3EF2-A4B2-AE125CBA5DB5> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x7fff98a90000 - 0x7fff98a93ffb libdyld.dylib (360.22) <816EC2BB-152D-3780-A6C1-B614AF7800B8> /usr/lib/system/libdyld.dylib
0x7fff98a99000 - 0x7fff98d8efff com.apple.HIToolbox (2.1.1 - 807.2) <36413C45-36AF-34EF-9C0E-F18B31D1E565> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff98e7e000 - 0x7fff98e9aff3 libresolv.9.dylib (60) <A650B5C8-1950-36A0-86D1-0B2465318BFA> /usr/lib/libresolv.9.dylib
0x7fff98e9b000 - 0x7fff98f4bfe7 libvMisc.dylib (563.5) <40346E9C-FC15-375F-A4FB-FE94EBE490B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff98f4c000 - 0x7fff98f57fff libcsfde.dylib (517.50.1) <843CB697-6902-3B19-89D1-8F4B71F63609> /usr/lib/libcsfde.dylib
0x7fff98f58000 - 0x7fff99165fff libicucore.A.dylib (551.51.6) <142B2AD5-0A50-3382-8213-096E925863F7> /usr/lib/libicucore.A.dylib
0x7fff99591000 - 0x7fff9961aff7 com.apple.PerformanceAnalysis (1.0 - 1) <3046C91B-1100-3F6F-B9F8-F409E6F5AA02> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff9961b000 - 0x7fff9961dff7 libRadiance.dylib (1464) <B0EA74D9-BC3B-3C5F-8D35-C3AADB5BD61F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff9961e000 - 0x7fff9966eff7 com.apple.DiskManagement (8.2 - 953) <3648939C-03F7-37D5-8777-6DD184E11CF6> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff9970e000 - 0x7fff99782ff3 com.apple.securityfoundation (6.0 - 55126) <2B5AA9C0-EA47-3255-923C-6EADC5CC18E1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff997c8000 - 0x7fff9981bff7 libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib
0x7fff99839000 - 0x7fff99862ff7 libxslt.1.dylib (14.6) <ADD24C4F-3B96-304E-8EE5-5F5B0EA62991> /usr/lib/libxslt.1.dylib
0x7fff99874000 - 0x7fff999dbfff libBLAS.dylib (1162.2) <A1398FE0-39D2-33EA-9A0F-B2644EEA29A0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff999dc000 - 0x7fff999effff com.apple.CoreBluetooth (1.0 - 1) <E54CA9A2-A5C6-30C5-9D6E-8472DBA9371E> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff9a423000 - 0x7fff9a427fff libcache.dylib (75) <9548AAE9-2AB7-3525-9ECE-A2A7C4688447> /usr/lib/system/libcache.dylib
0x7fff9a9eb000 - 0x7fff9aa1aff7 com.apple.DictionaryServices (1.2 - 250.3) <30250542-CBAA-39C1-91AA-B57A5DE17594> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff9aa2b000 - 0x7fff9aa77ffb com.apple.HIServices (1.22 - 550) <6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff9ad2e000 - 0x7fff9ad48fff com.apple.Kerberos (3.0 - 1) <1B4744BF-E5AE-38E2-AA56-E22D3270F2E8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff9affa000 - 0x7fff9b01cff7 com.apple.Sharing (442.13.6 - 442.13.6) <DDD2811C-6ECB-32F2-8EE1-69BF9657B4A8> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff9b01d000 - 0x7fff9b03bff7 libsystem_kernel.dylib (3248.73.5) <4765807C-1B75-3D5F-9432-8F2755B45BE8> /usr/lib/system/libsystem_kernel.dylib
0x7fff9b0e5000 - 0x7fff9b0eaff7 libmacho.dylib (875.1) <318264FA-58F1-39D8-8285-1F6254EE410E> /usr/lib/system/libmacho.dylib
0x7fff9b0f7000 - 0x7fff9b1b1fff com.apple.DiscRecording (9.0.1 - 9010.4.3) <540853B2-B123-3560-8023-C92EE229051A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff9b25f000 - 0x7fff9b261ffb libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib
0x7fff9b262000 - 0x7fff9b26afff libcopyfile.dylib (127) <A48637BC-F3F2-34F2-BB68-4C65FD012832> /usr/lib/system/libcopyfile.dylib
0x7fff9b3ed000 - 0x7fff9b433ff7 libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib
0x7fff9b4a5000 - 0x7fff9b4b3ff7 libbz2.1.0.dylib (38) <790B4CA3-9A41-39B2-ACDB-3DF973695B0F> /usr/lib/libbz2.1.0.dylib
0x7fff9b4b4000 - 0x7fff9b4c4fff libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib
0x7fff9b4c5000 - 0x7fff9b693ff3 com.apple.QuartzCore (1.11 - 410.14) <4A6BE7F6-DC2E-39E4-9785-A233ED9B0E6A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff9b694000 - 0x7fff9b6a3ffb com.apple.LangAnalysis (1.7.0 - 1.7.0) <18D21123-A3E7-3851-974A-08E5D4540475> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff9b794000 - 0x7fff9b79cfff libGFXShared.dylib (12.1) <E6609F8E-C0FF-3C81-B38D-08A9B779952A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff9cbba000 - 0x7fff9cbc3ff3 libsystem_notify.dylib (150.40.1) <D48BDE34-0F7E-34CA-A0FF-C578E39987CC> /usr/lib/system/libsystem_notify.dylib
0x7fff9cbd3000 - 0x7fff9cbdefff libGL.dylib (12.1) <70D51643-04AC-3400-8F11-A6FC25985289> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff9cc9d000 - 0x7fff9ccedff7 com.apple.Symbolication (1.4 - 58044) <F70BF765-FBE9-3F1E-85CA-BB2F8E53E8C2> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff9da88000 - 0x7fff9da89fff libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff9db17000 - 0x7fff9db86fff com.apple.datadetectorscore (7.0 - 460) <54109E72-3125-3ABE-B8F7-4894D0F706B4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff9e3f6000 - 0x7fff9e401ff7 libChineseTokenizer.dylib (16) <79B8C67A-3061-3C78-92CD-4650719E68D4> /usr/lib/libChineseTokenizer.dylib
0x7fff9e403000 - 0x7fff9e40bffb libsystem_dnssd.dylib (625.60.4) <80189998-32B0-316C-B5C5-53857486713D> /usr/lib/system/libsystem_dnssd.dylib
0x7fff9e4a5000 - 0x7fff9e4abff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9E5A980A-F455-32D5-BBEE-3BD6018CC45E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff9e4b5000 - 0x7fff9e4ecff7 com.apple.LDAPFramework (2.4.28 - 194.5) <9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff9e4f6000 - 0x7fff9e56bfff com.apple.framework.IOKit (2.0.2 - 1179.50.3) <80452F8B-D168-3848-A5F6-3CF96EBEDD5D> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff9e6e8000 - 0x7fff9e6f4fff com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <71DA00B8-5EA2-326B-8814-59DB25512F65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff9e6f5000 - 0x7fff9e6f6ffb libremovefile.dylib (41) <552EF39E-14D7-363E-9059-4565AC2F894E> /usr/lib/system/libremovefile.dylib
0x7fff9e710000 - 0x7fff9e73bff3 libarchive.2.dylib (33.20.3) <CC63CA40-0077-314D-BF76-82CB77317354> /usr/lib/libarchive.2.dylib
0x7fff9e758000 - 0x7fff9e758fff com.apple.Cocoa (6.11 - 22) <807787AB-D231-3F51-A99B-A9314623C571> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff9e759000 - 0x7fff9e7d0feb libcorecrypto.dylib (335.50.1) <14B4AD6E-C2ED-3161-80C8-0AA018DC5ED7> /usr/lib/system/libcorecrypto.dylib
0x7fff9e7d1000 - 0x7fff9e7e2ff7 libz.1.dylib (61.20.1) <B3EBB42F-48E3-3287-9F0D-308E04D407AC> /usr/lib/libz.1.dylib
0x7fff9e7e3000 - 0x7fff9e81bff7 com.apple.RemoteViewServices (2.0 - 101) <B2881449-8CFE-3D1C-B4BF-155640392533> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff9e81c000 - 0x7fff9e82dfff libSparseBLAS.dylib (1162.2) <EBEB3848-3468-342A-91A6-5C47F2369CD9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff9e82e000 - 0x7fff9e82efff com.apple.CoreServices (728.13 - 728.13) <CE402636-E10E-36B3-B9C6-125CCE4E2D3E> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff9e82f000 - 0x7fff9e858fff libsystem_info.dylib (477.50.4) <FAA9226D-64DE-3769-A6D8-6CABA4B7FF4D> /usr/lib/system/libsystem_info.dylib
0x7fff9ea6b000 - 0x7fff9eabaff7 com.apple.opencl (2.7.0 - 2.7.0) <FD79BF7A-E20F-3CE8-93F0-285E31BDE3C2> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff9eb65000 - 0x7fff9eb65ff7 libunc.dylib (29) <DDB1E947-C775-33B8-B461-63E5EB698F0E> /usr/lib/system/libunc.dylib
0x7fff9ec8f000 - 0x7fff9ec91fff libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib
0x7fff9ed30000 - 0x7fff9ed31fff libsystem_secinit.dylib (20) <32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B> /usr/lib/system/libsystem_secinit.dylib
0x7fff9ed67000 - 0x7fff9edbcfff com.apple.AE (701 - 701) <AD492742-F884-386B-A450-FAC281B9FFA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff9edbd000 - 0x7fff9edffff7 com.apple.Metal (56.6 - 56.6) <30518711-8D00-3759-AA19-800D3C88E693> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff9ee78000 - 0x7fff9eec4fff com.apple.print.framework.PrintCore (11.2 - 472.2) <5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff9eec5000 - 0x7fff9eef6fff com.apple.GSS (4.0 - 2.0) <23A5ACE3-683C-3E32-9A9B-05FC934AFAFB> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff9ef61000 - 0x7fff9ef78ff7 libsystem_asl.dylib (323.50.1) <41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9> /usr/lib/system/libsystem_asl.dylib
0x7fff9ef91000 - 0x7fff9f031fff com.apple.Metadata (10.7.0 - 972.34) <CC129633-BAE2-3AF2-A15E-8EE021F66B6E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff9f04b000 - 0x7fff9f39ffff com.apple.Foundation (6.9 - 1259.32) <472CF0E0-E6AE-3330-86A5-849F120749E2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff9f3ca000 - 0x7fff9f471fff com.apple.LanguageModeling (1.0 - 1) <58C18A47-BDE7-3CBE-81C0-797029D170A1> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff9f4cb000 - 0x7fff9f4f9ff7 com.apple.CoreServicesInternal (248.2 - 248.2) <6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal

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: 69205
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=216.6M resident=0K(0%) swapped_out_or_unallocated=216.6M(100%)
Writable regions: Total=59.8M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=59.8M(100%)

VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Activity Tracing 2048K 2
Dispatch continuations 8192K 2
Kernel Alloc Once 4K 2
MALLOC 36.9M 14
MALLOC guard page 32K 7
Process Corpse Info 2048K 2
STACK GUARD 56.0M 8
Stack 10.6M 8
VM_ALLOCATE 24K 4
__DATA 16.9M 193
__IMAGE 528K 2
__LINKEDIT 94.4M 13
__TEXT 122.2M 199
__UNICODE 552K 2
mapped file 12.5M 2
shared memory 324K 7
=========== ======= =======
TOTAL 362.9M 451


System Profile:
Graphics: Intel Iris, Intel Iris, Built-In
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x13B), Broadcom BCM43xx 1.0 (7.21.95.178.1a2)
Bluetooth: Version 4.4.6f2, 3 services, 27 devices, 1 incoming serial ports
PCI Card: pci1b21,1142, USB eXtensible Host Controller, Thunderbolt@196,0,0
PCI Card: pci1b21,1142, USB eXtensible Host Controller, Thunderbolt@10,0,0
PCI Card: pci1b21,612, AHCI Controller, Thunderbolt@195,0,0
Thunderbolt Bus: Mac mini, Apple Inc., 26.1
Thunderbolt Device: 34UC97, LG Electronics, 1, 25.2
Thunderbolt Device: TB2USB3ES, StarTech.com, 3, 7.1
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x4544464232333241314D412D47442D460000
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x4544464232333241314D412D47442D460000
USB Device: USB 3.0 Bus
USB Device: USB 3.0 Bus
USB Device: ASM107x
USB Device: ASM107x
USB Device: USB 3.0 Bus
USB Device: USB3.0 Hub
USB Device: USB3.0 Hub
USB Device: Backup+ Desk
USB Device: USB2.0 Hub
USB Device: USB2.0 Hub
USB Device: CanoScan
USB Device: hp LaserJet 1320 series
USB Device: Cruzer Glide
USB Device: USB Flash Drive
USB Device: USB Flash Drive
USB Device: IR Receiver
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: Keyboard Hub
USB Device: USB Receiver
USB Device: Apple Keyboard
USB Device: Portable Super Multi Drive
Serial ATA Device: APPLE SSD SM0128F, 121.33 GB
Serial ATA Device: APPLE HDD ST2000LM003, 2 TB
Network Service: Ethernet, Ethernet, en0
Model: Macmini7,1, BootROM MM71.0224.B00, 2 processors, Intel Core i7, 3 GHz, 16 GB, SMC 2.24f32
 
OP
S
Joined
Jan 22, 2010
Messages
192
Reaction score
5
Points
18
The Mac Console error message is now reduced to this error:

2018-02-13 7:35:24.036 AM iconservicesagent[357]: -[ISGenerateImageOp generateImageWithCompletion:]
Failed to composit image for descriptor <ISBindingImageDescriptor: 0x7fe658d03210>.

2018-02-13 7:35:24.036 AM quicklookd[619]: Error returned from iconservicesagent: (null)
 
Joined
Jan 1, 2009
Messages
15,510
Reaction score
3,871
Points
113
Location
Winchester, VA
Your Mac's Specs
MBP 16" 2023 (M3 Pro), iPhone 15 Pro, plus ATVs, AWatch, MacMinis (multiple)
Did you try what I suggested about changing the view in Finder? Also, do you have any third party "utility" programs running (antivirus, cleaners, boosters, etc)?
 
OP
S
Joined
Jan 22, 2010
Messages
192
Reaction score
5
Points
18
Yes, I tried changing the view in Finder, but that didn't stop Finder from crashing about every 15 seconds.
I've turned off my anti-virus and that's about all I have running for third party utilities.
 
Joined
Jan 1, 2009
Messages
15,510
Reaction score
3,871
Points
113
Location
Winchester, VA
Your Mac's Specs
MBP 16" 2023 (M3 Pro), iPhone 15 Pro, plus ATVs, AWatch, MacMinis (multiple)
Wow, that's a sledgehammer approach! Delete everything on the Desktop. But if it worked, that's great. I think that points to what I had said earlier. Something on the desktop had a strange issue with the icon for the file/directory/whatever. You bludgeoned it out of existence, so now Finder doesn't hang up. Good work.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top