From: Marius Hofert <marius.hofert@math.ethz.ch>
To: emacs-orgmode@gnu.org
Subject: Frequent crashes of Emacs 24 on Mac OS X 10.7.3 due to org-mode
Date: Sun, 15 Apr 2012 23:11:13 +0200 [thread overview]
Message-ID: <m27gxgzoni.fsf@80-218-244-59.dclient.hispeed.ch> (raw)
[-- Attachment #1: Type: text/plain, Size: 7828 bytes --]
Hi,
I work with GNU Emacs 24.0.95.1 (x86_64-apple-darwin, NS apple-appkit-1038.36)
[installed as Emacs-pretest-24.0.95-universal-10.6.8 from
http://emacsformacosx.com/builds ] on Mac OS X 10.7.3. (The reason for Emacs 24
is because of the latest features in Gnus). The org-mode version I use is 7.8.08.
I frequently experience crashes of Emacs during various tasks (see
http://stackoverflow.com/questions/10164425/emacs-almost-random-crashes-about-2-3-times-a-day-on-mac-os-x#comment13039387_10164425
which I posted earlier today when I didn't know the cause of the crashes). By
checking Console.app, I found what I also suspected: org-mode causes the
crashes. The problem is, I don't know how to solve this problem (I'm an
enthusiastic [although maybe not really experienced] org-mode user and would
*really* like to use org-mode in the future as well).
One of the crashes happened when I wanted to compile an .Rnw (Sweave) file via
C-c C-c (so totally -- at least to me -- independent of org-mode; other crashes
happened, for example, when I wanted to put in a new event in my agenda file). For this
crash, I attach the complete report of Console.app, a brief overview is:
,----[ output of Console.app: ]
| Process: Emacs [68923]
| Path: /Applications/Emacs.app/Contents/MacOS/Emacs
| Identifier: org.gnu.Emacs
| Version: Version 24.0.95 (9.0)
| Code Type: X86-64 (Native)
| Parent Process: launchd [114]
|
| Date/Time: 2012-04-15 22:15:30.204 +0200
| OS Version: Mac OS X 10.7.3 (11D50)
| Report Version: 9
|
| Crashed Thread: 0 Dispatch queue: com.apple.main-thread
|
| Exception Type: EXC_BAD_ACCESS (SIGABRT)
| Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000000a7
`----
My complete setup of org-mode and org-contacts in .emacs is:
,----[ org-mode setup in .emacs: ]
| ;; basics
| (require 'org-install); use org-mode
| (setq org-startup-indented 1); use indentation in org mode
| (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)); open all .org files in org-mode
| (setq org-agenda-files
| (list "~/org/agenda.org")); set up org agenda file
| (setq org-default-notes-file "~/org/agenda.org"); set up org notes file (stores captured events -- also use agenda.org)
| (setq org-agenda-start-on-weekday nil); start agenda view on current day
| (setq org-agenda-span 14); agenda view: show 14 days by default
| (setq calendar-week-start-day 1); start week on Monday
|
| ;; suggested global org keys
| (global-set-key (kbd "C-c l") 'org-store-link)
| (global-set-key (kbd "C-c c") 'org-capture); for capturing new TODO
| (global-set-key (kbd "C-c a") 'org-agenda); for viewing your agenda
|
| ;; define capture templates (for C-c c)
| (setq org-capture-templates
| '(("t" "TODO in ~/org/agenda.org -> Tasks" entry (file+headline "~/org/agenda.org" "Tasks")
| "* TODO %?\nSCHEDULED: %^T\n%U")
| ("c" "Contact in ~/org/contacts.org -> Contact" entry (file+headline "~/org/contacts.org" "Contact")
| "* %?%(org-contacts-template-name)%(org-contacts-template-email) %^g
| :PROPERTIES:
| :WORK:
| :HOME:
| :MOBILE:
| :LOCATION:
| :NOTE:
| :URL:
| :END:")))
|
| ;; set up org-contacts
| (require 'diary-lib); for making org-contacts anniversaries work
| (setq load-path (cons "~/.emacs.d/contacts" load-path))
| (require 'org-contacts)
| (setq org-contacts-files (quote ("~/org/contacts.org"))); set up org-contacts file
|
| ;; make org-mode play nicely together with yasnippets
| ;; http://eschulte.me/emacs-starter-kit/starter-kit-org.html
| (defun yas/org-very-safe-expand ()
| (let ((yas/fallback-behavior 'return-nil)) (yas/expand)))
| (add-hook 'org-mode-hook
| (lambda ()
| ;; yasnippet (using the new org-cycle hooks)
| (make-variable-buffer-local 'yas/trigger-key)
| (setq yas/trigger-key [tab])
| (add-to-list 'org-tab-first-hook 'yas/org-very-safe-expand)
| (define-key yas/keymap [tab] 'yas/next-field)
| ))
`----
It seems difficult to reproduce this particular crash, but crashes due to
org-mode appear frequently in my setup (multiple times a day; see also the link
to stackoverflow where I posted a link to another user experiencing something
similar; see also
http://www.humbug.in/stackoverflow/de/abort-trap-in-org-mode-in-emacs-23-on-mac-os-10-6-6-5460602.html
[I couldn't find the original post on stackoverflow for this post]).
Please let me know if I should try anything particular and report back the output.
Cheers,
Marius
PS: I just found M-x org-submit-bug-report, here is the output:
,----[ output of M-x org-submit-bug-report: ]
| Emacs : GNU Emacs 24.0.95.1 (x86_64-apple-darwin, NS apple-appkit-1038.36)
| of 2012-04-02 on bob.porkrind.org
| Package: Org-mode version 7.8.08
|
| current state:
| ==============
| (setq
| org-export-preprocess-before-selecting-backend-code-hook '(org-beamer-select-beamer-code)
| org-tab-first-hook '(yas/org-very-safe-expand org-hide-block-toggle-maybe
| org-src-native-tab-command-maybe
| org-babel-hide-result-toggle-maybe)
| org-contacts-files '("~/org/contacts.org")
| org-speed-command-hook '(org-speed-command-default-hook org-babel-speed-command-hook)
| org-occur-hook '(org-first-headline-recenter)
| org-metaup-hook '(org-babel-load-in-session-maybe)
| org-agenda-start-on-weekday nil
| org-export-preprocess-before-normalizing-links-hook '(org-remove-file-link-modifiers)
| org-confirm-shell-link-function 'yes-or-no-p
| org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-toc
| org-beamer-auto-fragile-frames
| org-beamer-place-default-actions-for-lists)
| org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars)
| org-default-notes-file "~/org/agenda.org"
| org-startup-indented 1
| org-after-todo-state-change-hook '(org-clock-out-if-current)
| org-from-is-user-regexp "\\<Marius Hofert\\>"
| org-src-mode-hook '(org-src-babel-configure-edit-buffer
| org-src-mode-configure-edit-buffer)
| org-agenda-before-write-hook '(org-agenda-add-entry-text)
| org-babel-pre-tangle-hook '(save-buffer)
| org-mode-hook '((lambda nil (make-variable-buffer-local (quote yas/trigger-key))
| (setq yas/trigger-key [tab])
| (add-to-list (quote org-tab-first-hook)
| (quote yas/org-very-safe-expand))
| (define-key yas/keymap [tab] (quote yas/next-field)))
| #[nil "\300\301\302\303\304$\207"
| [org-add-hook change-major-mode-hook org-show-block-all append
| local]
| 5]
| #[nil "\300\301\302\303\304$\207"
| [org-add-hook change-major-mode-hook org-babel-show-result-all
| append local]
| 5]
| org-babel-result-hide-spec org-babel-hide-all-hashes
| (lambda nil (if truncate-lines (toggle-truncate-lines -1))))
| org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point org-babel-execute-safely-maybe)
| org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
| org-cycle-show-empty-lines
| org-optimize-window-after-visibility-change)
| org-export-latex-format-toc-function 'org-export-latex-format-toc-default
| org-export-blocks '((src org-babel-exp-src-block nil)
| (export-comment org-export-blocks-format-comment t)
| (ditaa org-export-blocks-format-ditaa nil)
| (dot org-export-blocks-format-dot nil))
| org-export-first-hook '(org-beamer-initialize-open-trackers)
| org-export-interblocks '((src org-babel-exp-non-block-elements))
| org-agenda-span 14
| org-confirm-elisp-link-function 'yes-or-no-p
| org-metadown-hook '(org-babel-pop-to-session-maybe)
| org-agenda-mode-hook '((lambda nil (if truncate-lines (toggle-truncate-lines -1))))
| org-agenda-files '("~/org/agenda.org")
| org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
| )
`----
[-- Attachment #2: crash_report.txt --]
[-- Type: text/plain, Size: 40958 bytes --]
Process: Emacs [68923]
Path: /Applications/Emacs.app/Contents/MacOS/Emacs
Identifier: org.gnu.Emacs
Version: Version 24.0.95 (9.0)
Code Type: X86-64 (Native)
Parent Process: launchd [114]
Date/Time: 2012-04-15 22:15:30.204 +0200
OS Version: Mac OS X 10.7.3 (11D50)
Report Version: 9
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGABRT)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000000a7
VM Regions Near 0xa7:
-->
__TEXT 0000000100000000-0000000100203000 [ 2060K] r-x/rwx SM=COW /Applications/Emacs.app/Contents/MacOS/Emacs
Application Specific Information:
objc[68923]: garbage collection is OFF
abort() called
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff8e52182a __kill + 10
1 org.gnu.Emacs 0x00000001000a824b fatal_error_signal + 347
2 libsystem_c.dylib 0x00007fff8e6d5cfa _sigtramp + 26
3 libsystem_kernel.dylib 0x00007fff8e521ce2 __pthread_kill + 10
4 libsystem_c.dylib 0x00007fff8e6837d2 pthread_kill + 95
5 libsystem_c.dylib 0x00007fff8e674a7a abort + 143
6 org.gnu.Emacs 0x0000000100191f41 ns_term_shutdown + 81
7 org.gnu.Emacs 0x00000001000a8217 fatal_error_signal + 295
8 libsystem_c.dylib 0x00007fff8e6d5cfa _sigtramp + 26
9 org.gnu.Emacs 0x0000000100023db0 remember_mouse_glyph + 64
10 org.gnu.Emacs 0x0000000100190af3 ns_mouse_position + 547
11 org.gnu.Emacs 0x000000010000eb87 Fmouse_pixel_position + 151
12 org.gnu.Emacs 0x0000000100123c70 Ffuncall + 1152
13 org.gnu.Emacs 0x000000010015f3bc exec_byte_code + 5820
14 org.gnu.Emacs 0x00000001001236fb funcall_lambda + 763
15 org.gnu.Emacs 0x0000000100123a44 Ffuncall + 596
16 org.gnu.Emacs 0x0000000100125cde call1 + 30
17 org.gnu.Emacs 0x00000001000b1263 show_help_echo + 531
18 org.gnu.Emacs 0x00000001000b6b29 read_char + 473
19 org.gnu.Emacs 0x00000001000b9ae2 read_key_sequence + 1362
20 org.gnu.Emacs 0x00000001000bbf68 command_loop_1 + 616
21 org.gnu.Emacs 0x0000000100122285 internal_condition_case + 293
22 org.gnu.Emacs 0x00000001000b1787 command_loop_2 + 55
23 org.gnu.Emacs 0x0000000100122389 internal_catch + 217
24 org.gnu.Emacs 0x00000001000b1f0c recursive_edit_1 + 364
25 org.gnu.Emacs 0x00000001000b2082 Frecursive_edit + 290
26 org.gnu.Emacs 0x00000001000a8f4e main + 3262
27 org.gnu.Emacs 0x00000001000022f4 start + 52
Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff8e5227e6 kevent + 10
1 libdispatch.dylib 0x00007fff8968f5be _dispatch_mgr_invoke + 923
2 libdispatch.dylib 0x00007fff8968e14e _dispatch_mgr_thread + 54
Thread 2:
0 libsystem_kernel.dylib 0x00007fff8e522192 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff8e683594 _pthread_wqthread + 758
2 libsystem_c.dylib 0x00007fff8e684b85 start_wqthread + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007fff5fbfdf88 rdx: 0x0000000000000000
rdi: 0x0000000000010d3b rsi: 0x0000000000000006 rbp: 0x00007fff5fbfdfc0 rsp: 0x00007fff5fbfdf88
r8: 0x0000000000000001 r9: 0x0000000000000010 r10: 0x00007fff8e521d0a r11: 0xffffff80002d8220
r12: 0x0000000000000006 r13: 0x000000010058a688 r14: 0x00007fff7585d960 r15: 0x00007fff5fbfec88
rip: 0x00007fff8e52182a rfl: 0x0000000000000202 cr2: 0x00007fff75854a28
Logical CPU: 0
Binary Images:
0x100000000 - 0x100202fef +org.gnu.Emacs (Version 24.0.95 - 9.0) <7C48528A-6CE3-F9D3-AECA-8F5120471764> /Applications/Emacs.app/Contents/MacOS/Emacs
0x100a75000 - 0x100a79ff7 libFontRegistryUI.dylib (??? - ???) <46FDC6A3-EF17-3E57-AACD-8B36AB1F00E9> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
0x7fff6b31c000 - 0x7fff6b350baf dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
0x7fff84186000 - 0x7fff84187fff com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <6F527553-C566-3E62-9F9E-D45F293F93E9> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
0x7fff841b0000 - 0x7fff841c7fff com.apple.CFOpenDirectory (10.7 - 144) <99A746A5-870A-33DB-9E4F-30A0D755A8F6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff843b3000 - 0x7fff84445fff com.apple.PDFKit (2.6.2 - 2.6.2) <4C8D80F6-09BB-3BD5-983B-A24FBEB5BCF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff84446000 - 0x7fff844c9fef com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff844ca000 - 0x7fff8450cff7 libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
0x7fff84537000 - 0x7fff8455efff com.apple.PerformanceAnalysis (1.10 - 10) <127134DE-0304-3B49-B539-B95E01CF02A2> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff8455f000 - 0x7fff8456cfff libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <CBA71562-050B-3515-92B7-8BC1E2EEEF2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x7fff8456d000 - 0x7fff845a0ff7 com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff845a1000 - 0x7fff845afff7 libkxld.dylib (??? - ???) <F94C4064-4F3D-31D1-9A12-81DEFA7EAC83> /usr/lib/system/libkxld.dylib
0x7fff845b1000 - 0x7fff846a6fff libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
0x7fff846c0000 - 0x7fff846c7fff libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <65602684-33B1-32DE-802B-050CE07659AC> /usr/lib/system/libcopyfile.dylib
0x7fff846c8000 - 0x7fff8474dff7 com.apple.Heimdal (2.1 - 2.0) <3758B442-6175-32B8-8C17-D8ABDD589BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8474e000 - 0x7fff84760ff7 libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
0x7fff84e98000 - 0x7fff84e9dfff libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff84e9e000 - 0x7fff84eecfff libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
0x7fff84eed000 - 0x7fff84f31ff7 com.apple.MediaKit (12 - 589) <7CFF29BF-D907-3593-B338-0BB48643B2A8> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff84f32000 - 0x7fff84fa5fff libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
0x7fff84fa6000 - 0x7fff84faaff7 com.apple.CommonPanels (1.2.5 - 94) <CA9C910D-E406-33E7-B8EE-C86EAA62AB68> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff84fab000 - 0x7fff84fffff7 com.apple.ScalableUserInterface (1.0 - 1) <EB468227-3203-38C9-A5BC-E28576D507CF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x7fff85000000 - 0x7fff8542dfff libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff85448000 - 0x7fff854eaff7 com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff854eb000 - 0x7fff85526fff com.apple.LDAPFramework (3.0 - 120.1) <7B820362-8540-3A6D-95C7-D811D6CEE3AA> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff85527000 - 0x7fff8552bfff libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <37517279-C92E-3217-B49A-838198B48787> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8552c000 - 0x7fff85537ff7 libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
0x7fff85538000 - 0x7fff8561afff com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff85823000 - 0x7fff8582efff com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff85b82000 - 0x7fff85ba6fff com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff85bb1000 - 0x7fff85bb7fff libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff85bb8000 - 0x7fff85c28fff com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff85c29000 - 0x7fff85cadff7 com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff85cae000 - 0x7fff85ccdfff libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
0x7fff85cce000 - 0x7fff85cd1fff com.apple.AppleSystemInfo (1.0 - 1) <A42D460F-02ED-3AF3-9C11-FBB64124B191> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff85cd2000 - 0x7fff85d12ff7 libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
0x7fff85d52000 - 0x7fff85db4ff7 com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff85ddd000 - 0x7fff85e3dfff libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff85e3e000 - 0x7fff85e3ffff libunc.dylib (24.0.0 - compatibility 1.0.0) <0482C762-746D-37EB-A8C9-E1048CF70462> /usr/lib/system/libunc.dylib
0x7fff86096000 - 0x7fff86099fff com.apple.help (1.3.2 - 42) <416BA8D2-9A2F-3F07-9E6B-E1231A92AAC0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff8609a000 - 0x7fff8610fff7 libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
0x7fff86153000 - 0x7fff8661afff FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x7fff8661b000 - 0x7fff867effff com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff867f0000 - 0x7fff8685aff7 com.apple.framework.IOKit (2.0 - ???) <EEEB42FD-E3E1-3A94-A771-B1993B694F17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8686e000 - 0x7fff86d4afef com.apple.RawCamera.bundle (3.12.0 - 614) <E0F08224-8A63-BBCE-BE85-8B0BAB22A7DA> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff86eb8000 - 0x7fff86ec0fff libsystem_dnssd.dylib (??? - ???) <1FA8F861-9D0D-33D2-939F-5BD382718B97> /usr/lib/system/libsystem_dnssd.dylib
0x7fff86f23000 - 0x7fff86f23fff com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff86f24000 - 0x7fff86f2afff libmacho.dylib (800.0.0 - compatibility 1.0.0) <548BAEB6-8C4C-3B0F-AB0C-7E1C960BCAB5> /usr/lib/system/libmacho.dylib
0x7fff86f30000 - 0x7fff86f37ff7 com.apple.CommerceCore (1.0 - 17) <95285481-4162-308B-85E9-E0A47D4F3766> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff86ffe000 - 0x7fff87014fff libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff87015000 - 0x7fff87032ff7 com.apple.openscripting (1.3.3 - ???) <4B03E015-36CB-3CDD-901B-4A6105753D4E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff87033000 - 0x7fff87053fff libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff87054000 - 0x7fff87054fff com.apple.Carbon (153 - 153) <E37A515C-4C10-3102-8146-C0FBD458F8CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff87055000 - 0x7fff8708efe7 libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
0x7fff8709a000 - 0x7fff871d0fff com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff871d1000 - 0x7fff87267ff7 libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff8735a000 - 0x7fff873adfff com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff873ae000 - 0x7fff873c1ff7 libCRFSuite.dylib (??? - ???) <322486D1-359C-3059-BF53-D4B038621E18> /usr/lib/libCRFSuite.dylib
0x7fff873c2000 - 0x7fff876ecff7 com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8772c000 - 0x7fff87a48ff7 com.apple.CoreServices.CarbonCore (960.20 - 960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff87a49000 - 0x7fff87a79ff7 com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff87ab3000 - 0x7fff87ab6fff libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff87bba000 - 0x7fff87fecfef com.apple.VideoToolbox (1.0 - 705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff87fed000 - 0x7fff87feffff libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff8802e000 - 0x7fff88080ff7 libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff88081000 - 0x7fff880d9fff libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff880da000 - 0x7fff880e4ff7 liblaunch.dylib (392.18.0 - compatibility 1.0.0) <EB5C4B29-D3B7-38AC-A646-3D445C767F03> /usr/lib/system/liblaunch.dylib
0x7fff880f2000 - 0x7fff8811dfff libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
0x7fff8811e000 - 0x7fff8813bfff libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
0x7fff88e5f000 - 0x7fff88e63fff libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
0x7fff88e68000 - 0x7fff88e6dfff libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
0x7fff88e6e000 - 0x7fff89187ff7 com.apple.Foundation (6.7.1 - 833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff89188000 - 0x7fff8918aff7 com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff8918b000 - 0x7fff8932afff com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff8932b000 - 0x7fff89425ff7 com.apple.DiskImagesFramework (10.7.3 - 331.3) <57A7E46A-5AA4-37FF-B19C-5337CCBCA0CA> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff89426000 - 0x7fff89451ff7 com.apple.CoreServicesInternal (113.12 - 113.12) <C37DAC1A-35D2-30EC-9112-5EEECED5C461> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff89452000 - 0x7fff89554ff7 libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
0x7fff89567000 - 0x7fff89645fff com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff89646000 - 0x7fff8964bfff libcache.dylib (47.0.0 - compatibility 1.0.0) <3D114C8A-AD1F-3C78-9E8C-B8F3810740E5> /usr/lib/system/libcache.dylib
0x7fff8964c000 - 0x7fff89650fff libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
0x7fff89651000 - 0x7fff8968bfe7 com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff8968c000 - 0x7fff8969afff libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
0x7fff8969b000 - 0x7fff896a0fff libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
0x7fff896a1000 - 0x7fff896a8fff com.apple.NetFS (4.0 - 4.0) <AD99FA2A-CF27-30CB-937E-233AD161BA2C> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff896a9000 - 0x7fff896f9fff com.apple.CoreMediaIO (210.0 - 3180) <C5B60D3E-71BE-3CD2-90FC-3B2F9961D662> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff896fa000 - 0x7fff8979afff com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff8979b000 - 0x7fff8979bfff com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff897e5000 - 0x7fff8a3e9fff com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff8a407000 - 0x7fff8a463ff7 com.apple.QuickLookFramework (3.1 - 500.10) <35BF320E-26F5-310C-9FA9-D60919B218EC> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff8a464000 - 0x7fff8a4bfff7 com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8ac1e000 - 0x7fff8acc2fef com.apple.ink.framework (1.3.2 - 110) <48F42AEB-0D24-3B0D-8BF4-80929BB51FE0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff8afe7000 - 0x7fff8aff9ff7 libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
0x7fff8affa000 - 0x7fff8b005ff7 com.apple.DisplayServicesFW (2.5.2 - 317) <D1FE33BD-1D71-343F-B790-685253F1F701> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff8b069000 - 0x7fff8b7fdfef com.apple.CoreAUC (6.11.04 - 6.11.04) <FFC336DF-C71F-3C93-8E93-5CBD9EEAE940> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8b7fe000 - 0x7fff8b7fffff libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff8b800000 - 0x7fff8b80efff com.apple.NetAuth (1.0 - 3.0) <CAA2C83D-B164-315A-8B6C-76C4A3746C9B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff8b819000 - 0x7fff8b844ff7 libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
0x7fff8b845000 - 0x7fff8b84bfff com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff8b84c000 - 0x7fff8b88bff7 libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff8b88c000 - 0x7fff8b8a0ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) <A7C58D71-6D4A-317D-AA06-D648B1F78573> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff8b8c0000 - 0x7fff8b8e8ff7 com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff8b8f5000 - 0x7fff8b987ff7 com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff8b988000 - 0x7fff8b98bfff libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff8ba0a000 - 0x7fff8ba0bff7 libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
0x7fff8ba2c000 - 0x7fff8bc9aff7 com.apple.QuartzComposer (5.0 - 236.3) <F8B96724-2550-32FE-9DE4-22AC7A6C0942> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff8bc9b000 - 0x7fff8bec3fe7 com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8bec4000 - 0x7fff8bec7ff7 com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff8bec8000 - 0x7fff8bf43ff7 com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8bf44000 - 0x7fff8bf46fff com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8bf47000 - 0x7fff8bf48fff liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
0x7fff8bf49000 - 0x7fff8bf49fff com.apple.quartzframework (1.5 - 1.5) <A7A2DBBA-BFFC-35C0-A927-CC0BA4C851E7> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff8bf5f000 - 0x7fff8c06cfff libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff8c06d000 - 0x7fff8c0e3fff com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff8c0e4000 - 0x7fff8c1fdfff com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff8c1fe000 - 0x7fff8c489fff com.apple.JavaScriptCore (7534.53 - 7534.53.8) <619D6392-D833-3C55-B1C0-4DAA0477796C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff8c48a000 - 0x7fff8c4d6ff7 com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8c4d7000 - 0x7fff8c4eefff com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff8c98e000 - 0x7fff8ca8bfff com.apple.avfoundation (2.0 - 180.30) <061DDF4C-E7BB-33D0-BEB9-0443ADF6EC8C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff8ca8c000 - 0x7fff8cea9ff7 com.apple.SceneKit (2.2 - 125.3) <DDCC8DB6-D5DB-31CD-A401-F56C84216E1C> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
0x7fff8ceaa000 - 0x7fff8cf5dfff com.apple.CoreText (220.11.0 - ???) <0322442E-0530-37E8-A7D6-AEFD909F0AFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff8d076000 - 0x7fff8d078fff libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
0x7fff8d25a000 - 0x7fff8d45cfff libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
0x7fff8d45d000 - 0x7fff8d497fff libncurses.5.4.dylib (5.4.0 - compatibility 5.4.0) <387DE593-9CC5-38C7-911B-A5F2264D34F2> /usr/lib/libncurses.5.4.dylib
0x7fff8d4b1000 - 0x7fff8da95fff libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff8da96000 - 0x7fff8dc20ff7 com.apple.QTKit (7.7.1 - 2315) <BFC33B70-34F2-3940-A14A-3C51036589F0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff8dc2d000 - 0x7fff8dc33fff IOSurface (??? - ???) <2114359C-D839-3855-8735-BBAA2704DB93> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff8dc34000 - 0x7fff8dc3dff7 libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
0x7fff8dc3e000 - 0x7fff8dd05ff7 com.apple.ColorSync (4.7.1 - 4.7.1) <EA74B067-9916-341A-9C68-6165A4656042> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8dd4c000 - 0x7fff8dd66fff com.apple.CoreMediaAuthoring (2.0 - 890) <7BE57576-8EF5-3473-95E6-6191E239E3F0> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff8dd67000 - 0x7fff8dda6fff com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff8dda7000 - 0x7fff8ddb2ff7 com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <524DFF6E-0C63-3C18-ACF4-341CFA80DC70> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff8ddb3000 - 0x7fff8ddb3fff com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff8de91000 - 0x7fff8dea6fff com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <1158319D-3B16-3000-94D8-E4234CEC6152> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff8debc000 - 0x7fff8def7fff libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
0x7fff8def8000 - 0x7fff8e296fef com.apple.MediaToolbox (1.0 - 705.61) <F48F2150-0573-354C-BBB2-BA52DD0FD0AB> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff8e297000 - 0x7fff8e50afff com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff8e50b000 - 0x7fff8e52bfff libsystem_kernel.dylib (1699.23.2 - compatibility 1.0.0) <55377210-60A0-3F33-9D45-B2D19AA91859> /usr/lib/system/libsystem_kernel.dylib
0x7fff8e52c000 - 0x7fff8e62cfff com.apple.QuickLookUIFramework (3.1 - 500.10) <ABD3BF58-DD33-31CA-AAE3-E0EE274C8B9C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff8e633000 - 0x7fff8e710fef libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
0x7fff8e76b000 - 0x7fff8e798fe7 libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
0x7fff8e799000 - 0x7fff8e900ff7 com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8e901000 - 0x7fff8e9dffff com.apple.DiscRecording (6.0.3 - 6030.4.1) <8DB1BDDD-F066-3E8B-B416-11DF712C6A1E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff8e9f6000 - 0x7fff8e9f6fff com.apple.Cocoa (6.6 - ???) <9E3D4787-A2CE-38E0-BEF8-E5DA63B6E6A1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff8ea39000 - 0x7fff8ea49ff7 com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8ea4a000 - 0x7fff8eab2ff7 com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff8eab5000 - 0x7fff8eabaff7 libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
0x7fff8eabb000 - 0x7fff8f44b7a7 com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8f475000 - 0x7fff8f482ff7 libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
0x7fff8f483000 - 0x7fff8f5dcfff com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff8f791000 - 0x7fff8f7bafff libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff8f7bb000 - 0x7fff8f7bbfff libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
0x7fff8f7bc000 - 0x7fff8f7bcfff com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8f7bd000 - 0x7fff8f8c4fe7 libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
0x7fff8f8c5000 - 0x7fff8f906fff com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff8f907000 - 0x7fff8fa13fff libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8fa74000 - 0x7fff8faa1ff7 com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8faa2000 - 0x7fff8faf6ff7 com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff8faf7000 - 0x7fff8fbfcfff libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff8fc3e000 - 0x7fff8fc84ff7 libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <01DD0773-236C-3AC3-B43B-07911F458767> /usr/lib/libcurl.4.dylib
0x7fff8fc85000 - 0x7fff8fc85fff com.apple.ApplicationServices (41 - 41) <E23F1CED-C0FB-35A8-9657-484C5E6A32AE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff8fc86000 - 0x7fff8ff68fff com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff8ff69000 - 0x7fff8ff7bff7 libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
0x7fff90729000 - 0x7fff9080de5f libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
0x7fff9082a000 - 0x7fff90850ff7 com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x7fff908d3000 - 0x7fff908efff7 com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff908f0000 - 0x7fff908f0fff com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff908f1000 - 0x7fff9091efff com.apple.quartzfilters (1.7.0 - 1.7.0) <65DCAA1D-6958-3031-91C8-EC10BB1B948F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff90a06000 - 0x7fff90a49ff7 libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <85D00F5C-43ED-33A9-80B4-72EB0EAE3E25> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff90a4d000 - 0x7fff90a4eff7 libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
0x7fff90a4f000 - 0x7fff90cc5ff7 com.apple.imageKit (2.1.1 - 1.0) <A4A58BBB-70BB-3A0F-84F0-49EC6113BF2F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff90d10000 - 0x7fff90d64ff7 libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff90dcd000 - 0x7fff90e14ff7 com.apple.CoreMedia (1.0 - 705.61) <0C34B0D4-DB8A-33C7-B67B-F443AD86482C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff90e15000 - 0x7fff90e7bff7 com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff90e7c000 - 0x7fff90f16ff7 com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff90f17000 - 0x7fff90f26ff7 libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
0x7fff90f27000 - 0x7fff90f3dff7 com.apple.ImageCapture (7.0 - 7.0) <8F036520-B57E-34DE-8BA2-084BC3D289C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff91037000 - 0x7fff9103dff7 libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
0x7fff9103e000 - 0x7fff91062fff com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff91063000 - 0x7fff91068fff com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff91069000 - 0x7fff9106aff7 libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
0x7fff910af000 - 0x7fff910b0fff libdnsinfo.dylib (395.7.0 - compatibility 1.0.0) <37FEFE78-BCB5-37EC-8E99-747469BCA4C7> /usr/lib/system/libdnsinfo.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 101
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: 67307
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=185.4M resident=75.3M(41%) swapped_out_or_unallocated=110.1M(59%)
Writable regions: Total=182.5M written=59.3M(32%) resident=69.2M(38%) swapped_out=9.9M(5%) unallocated=113.3M(62%)
REGION TYPE VIRTUAL
=========== =======
ATS (font support) 31.9M
CG backing stores 10.0M
CG image 1016K
CG raster data 756K
CG shared images 3480K
CoreGraphics 16K
CoreServices 2844K
MALLOC 101.1M
MALLOC guard page 48K
Memory tag=240 4K
Memory tag=242 12K
STACK GUARD 55.7M
Stack 9556K
VM_ALLOCATE 16.2M
__CI_BITMAP 80K
__DATA 39.5M
__IMAGE 528K
__LINKEDIT 48.2M
__RC_CAMERAS 244K
__TEXT 137.2M
__UNICODE 544K
mapped file 56.2M
shared memory 312K
=========== =======
TOTAL 514.9M
[-- Attachment #3: Type: text/plain, Size: 195 bytes --]
--
ETH Zurich
Dr. Marius Hofert
RiskLab, Department of Mathematics
HG E 65.2
Rämistrasse 101
8092 Zurich
Switzerland
Phone +41 44 632 2423
http://www.math.ethz.ch/~hofertj
next reply other threads:[~2012-04-15 21:11 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-15 21:11 Marius Hofert [this message]
2012-04-16 20:10 ` Frequent crashes of Emacs 24 on Mac OS X 10.7.3 due to org-mode Martyn Jago
-- strict thread matches above, loose matches on Subject: below --
2012-04-17 5:25 Marius Hofert
2012-04-17 10:10 Marius Hofert
2012-04-17 17:05 ` Martyn Jago
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m27gxgzoni.fsf@80-218-244-59.dclient.hispeed.ch \
--to=marius.hofert@math.ethz.ch \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).