From unknown Fri Sep 19 21:29:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14719: 24.3; Crashing when setting frames to random colors Resent-From: Steve Wainstead Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 25 Jun 2013 22:12:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 14719 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 14719@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.137219828914466 (code B ref -1); Tue, 25 Jun 2013 22:12:02 +0000 Received: (at submit) by debbugs.gnu.org; 25 Jun 2013 22:11:29 +0000 Received: from localhost ([127.0.0.1]:41209 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UrbSS-0003lF-9I for submit@debbugs.gnu.org; Tue, 25 Jun 2013 18:11:28 -0400 Received: from eggs.gnu.org ([208.118.235.92]:38847) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UrbHu-0003UO-7Y for submit@debbugs.gnu.org; Tue, 25 Jun 2013 18:00:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UrbHh-0000XC-KY for submit@debbugs.gnu.org; Tue, 25 Jun 2013 18:00:28 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:40967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrbHh-0000X6-Gb for submit@debbugs.gnu.org; Tue, 25 Jun 2013 18:00:21 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40500) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrbHd-000255-0t for bug-gnu-emacs@gnu.org; Tue, 25 Jun 2013 18:00:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UrbHZ-0000Ug-58 for bug-gnu-emacs@gnu.org; Tue, 25 Jun 2013 18:00:16 -0400 Received: from mail.socialserve.com ([66.129.73.133]:50199) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrbHZ-0000UG-12 for bug-gnu-emacs@gnu.org; Tue, 25 Jun 2013 18:00:13 -0400 Received: from swain.socialserve.com (swain.socialserve.com [10.0.8.64]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: swain) by mail.socialserve.com (Postfix) with ESMTPSA id 5C9232A4C4 for ; Tue, 25 Jun 2013 18:00:11 -0400 (EDT) From: Steve Wainstead Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: Date: Tue, 25 Jun 2013 15:00:09 -0700 Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) X-Mailer: Apple Mail (2.1508) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Mailman-Approved-At: Tue, 25 Jun 2013 18:11:27 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) I have a Lisp function that is run every time I do M-x compile: ;; choose random colors every time we compile, just for fun (defun sw-make-random-hex-color-string () "Return a string in the form of #FFFFFF. Choose the number for #xffffff randomly using Emacs Lisp's builtin function (random)." ;; seed our random number generator: current datetime plus Emacs's ;; process ID (random t) (format "#%06x" (random #xffffff)) ) (defun sw-randomize-frame-colors () "Change foreground and background colors of the current frame to random colors." (interactive) (let ( (fg-color (sw-make-random-hex-color-string)) (bg-color (sw-make-random-hex-color-string)) (color-distance #x3fffff) ) (set-foreground-color fg-color) (set-background-color bg-color) ) ) I *think* sometimes the color values come out the same and it causes Emacs to crash. I'm not sure because it's almost instantaneous when I run compile. Note that color-distance is unused, a feature I've yet to implement. In GNU Emacs 24.3.1 (x86_64-apple-darwin12.3.0, NS apple-appkit-1187.37) of 2013-03-20 on swain.socialserve.com Windowing system distributor `Apple', version 10.3.1187 Configured using: `configure '--with-ns'' Important settings: locale-coding-system: nil default enable-multibyte-characters: t Major mode: Emacs-Lisp Minor modes in effect: display-time-mode: t desktop-save-mode: t show-paren-mode: t tooltip-mode: t mouse-wheel-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t column-number-mode: t line-number-mode: t transient-mark-mode: t abbrev-mode: t Recent input: y M-x s e SPC t SPC f o r e r e d M-x s e t SPC b a c k r e d M-x s e t SPC b a c k g r o u n d SPC c o l o r b l a c k M-x s e t SPC f o r e g o l d e n r o d C-e k C-x o C-n C-e M-b C-x . C-g C-x k C-x 1 M-x s e t SPC c u r c r e d C-e C-n C-n C-n C-n C-n C-n C-n C-n M-x b u g s C-g M-x r e p o r t - e m a c s - b u g Recent messages: Using the CPython shell Local value of py-indent-offset set to 4 Using the CPython shell Desktop: 9 buffers restored. For information about GNU Emacs and the GNU system, type C-h C-a. Making completion list... Type C-x 1 to delete the help window. Local value of py-indent-offset set to 4 Using the CPython shell Mark set Quit [2 times] Load-path shadows: None found. Features: (shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils find-func etags help-mode vc-git imenu csv-mode-autoloads package derived diff-mode- two-column edmacro kmacro python-mode info-look info cl-macs gv easymenu compile cl comint ansi-color ring byte-opt warnings bytecomp byte-compile cconv advice help-fns cl-lib advice-preload server time ibuffer desktop paren time-date tooltip ediff-hook vc-hooks lisp-float-type mwheel ns-win tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process ns multi-tty emacs) --- Steve Wainstead SocialServe.com From unknown Fri Sep 19 21:29:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14719: Full lisp used that causes the crash References: In-Reply-To: Resent-From: Steve Wainstead Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 03 Jul 2013 17:55:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14719 X-GNU-PR-Package: emacs,ns X-GNU-PR-Keywords: moreinfo To: 14719@debbugs.gnu.org Received: via spool by 14719-submit@debbugs.gnu.org id=B14719.137287405827748 (code B ref 14719); Wed, 03 Jul 2013 17:55:02 +0000 Received: (at 14719) by debbugs.gnu.org; 3 Jul 2013 17:54:18 +0000 Received: from localhost ([127.0.0.1]:55157 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UuRFx-0007DP-8G for submit@debbugs.gnu.org; Wed, 03 Jul 2013 13:54:17 -0400 Received: from mail.socialserve.com ([66.129.73.133]:36840) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UuRFu-0007Cx-Nd for 14719@debbugs.gnu.org; Wed, 03 Jul 2013 13:54:15 -0400 Received: from swain.socialserve.com (swain.socialserve.com [10.0.8.64]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: swain) by mail.socialserve.com (Postfix) with ESMTPSA id 661E42A324 for <14719@debbugs.gnu.org>; Wed, 3 Jul 2013 13:54:08 -0400 (EDT) From: Steve Wainstead Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: Date: Wed, 3 Jul 2013 10:54:06 -0700 Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) X-Mailer: Apple Mail (2.1508) X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Reading more of the Lisp code I use when compiling I thought posting all = of it might be more helpful. All of this and more is in a GitHub = repository:=20 https://github.com/wainstead/swainlisp ;; save *compilation* buffer to file ;; git commit it right after (defun sw-write-compilation-buffer() "Hook function to write the *compilation* buffer for each compile." (and (get-buffer "*compilation*") (sw-save-buffer-invisibly = (get-buffer "*compilation*"))) (shell-command "cd ~swain/.emacs.shellbuffers; git commit -m \"saving = last compilation\" ?compilation?") ) ;; every time the "compile" or "recompile" functions are run, write ;; out the *compilation* buffer's contents and commit it. (defadvice compile (before sw-save-last-compilation activate compile) "Every time we compile, save the previous compilation to the ~/.emacs.shellbuffers directory and git commit it." ;; if we are in the frame holding the compilation buffer, don't switch = frames. (and (not(string=3D (buffer-name) "*compilation*")) = (switch-to-buffer-other-frame "*compilation*")) (sw-write-compilation-buffer) (sw-randomize-frame-colors) ) (defadvice recompile (before sw-save-last-compilation activate compile) "Every time we compile, save the previous compilation to the ~/.emacs.shellbuffers directory and git commit it." (and (not(string=3D (buffer-name) "*compilation*")) = (switch-to-buffer-other-frame "*compilation*")) (sw-write-compilation-buffer) (sw-randomize-frame-colors) ) ;; choose random colors every time we compile, just for fun (defun sw-make-random-hex-color-string () "Return a string in the form of #FFFFFF. Choose the number for #xffffff randomly using Emacs Lisp's builtin function (random)." ;; seed our random number generator: current datetime plus Emacs's ;; process ID (random t) (format "#%06x" (random #xffffff)) ) (defun sw-randomize-frame-colors () "Change foreground and background colors of the current frame to random colors." (interactive) (let=20 ( (fg-color (sw-make-random-hex-color-string))=20 (bg-color (sw-make-random-hex-color-string)) (color-distance #x3fffff) ) (set-foreground-color fg-color) (set-background-color bg-color) ) ) From unknown Fri Sep 19 21:29:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14719: Crash log References: In-Reply-To: Resent-From: Steve Wainstead Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 03 Jul 2013 19:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14719 X-GNU-PR-Package: emacs,ns X-GNU-PR-Keywords: moreinfo To: "14719@debbugs.gnu.org" <14719@debbugs.gnu.org> Received: via spool by 14719-submit@debbugs.gnu.org id=B14719.137287930211631 (code B ref 14719); Wed, 03 Jul 2013 19:22:02 +0000 Received: (at 14719) by debbugs.gnu.org; 3 Jul 2013 19:21:42 +0000 Received: from localhost ([127.0.0.1]:55304 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UuScV-00031Q-LV for submit@debbugs.gnu.org; Wed, 03 Jul 2013 15:21:42 -0400 Received: from mail.socialserve.com ([66.129.73.133]:37685) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UuScP-00030w-Ow for 14719@debbugs.gnu.org; Wed, 03 Jul 2013 15:21:37 -0400 Received: from swain.socialserve.com (swain.socialserve.com [10.0.8.64]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: swain) by mail.socialserve.com (Postfix) with ESMTPSA id 9213B2A271 for <14719@debbugs.gnu.org>; Wed, 3 Jul 2013 15:21:26 -0400 (EDT) From: Steve Wainstead Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <762CAA62-7304-45E8-BA28-44E9F4D1CD74@socialserve.com> Date: Wed, 3 Jul 2013 12:21:24 -0700 Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) X-Mailer: Apple Mail (2.1508) X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Process: Emacs [520] Path: /Applications/Emacs.app/Contents/MacOS/Emacs Identifier: org.gnu.Emacs Version: Version 24.3 (9.0) Code Type: X86-64 (Native) Parent Process: launchd [165] User ID: 662 Date/Time: 2013-06-05 17:27:38.007 -0700 OS Version: Mac OS X 10.8.4 (12E55) Report Version: 10 Interval Since Last Report: 23358 sec Crashes Since Last Report: 1 Per-App Interval Since Last Report: 23195 sec Per-App Crashes Since Last Report: 1 Anonymous UUID: = 91F1AD45-EAF4-57BB-9B8B-164811074709 Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGABRT) Exception Codes: EXC_I386_GPFLT Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x00007fff8f1b8d46 __kill + 10 1 org.gnu.Emacs 0x000000010009d5d9 = terminate_due_to_signal + 153 (emacs.c:344) 2 org.gnu.Emacs 0x00000001000b9fd3 emacs_abort + = 19 3 org.gnu.Emacs 0x000000010018ab3d = ns_term_shutdown + 125 4 org.gnu.Emacs 0x000000010009dc41 = shut_down_emacs + 305 (emacs.c:1931) 5 org.gnu.Emacs 0x000000010009d59b = terminate_due_to_signal + 91 (emacs.c:328) 6 org.gnu.Emacs 0x00000001000ba4c6 = deliver_fatal_thread_signal + 134 7 libsystem_c.dylib 0x00007fff9120d94a _sigtramp + = 26 8 libobjc.A.dylib 0x00007fff8bc3f710 = objc_msgSend_vtable13 + 16 9 org.gnu.Emacs 0x000000010019155d = x_set_background_color + 93 (nsfns.m:372) 10 org.gnu.Emacs 0x000000010001328a = x_set_frame_parameters + 554 (frame.c:2842) 11 org.gnu.Emacs 0x000000010000f0b3 = Fmodify_frame_parameters + 147 (frame.c:2373) 12 org.gnu.Emacs 0x0000000100116fe0 Ffuncall + = 1216 (eval.c:2759) 13 org.gnu.Emacs 0x000000010014f4e8 = exec_byte_code + 1992 (bytecode.c:900) 14 org.gnu.Emacs 0x000000010011a132 = funcall_lambda + 930 (eval.c:3010) 15 org.gnu.Emacs 0x0000000100119cf3 apply_lambda = + 291 (eval.c:2890) 16 org.gnu.Emacs 0x0000000100119a47 eval_sub + = 1783 (eval.c:2188) 17 org.gnu.Emacs 0x0000000100115499 Flet + 745 = (eval.c:361) 18 org.gnu.Emacs 0x00000001001196e9 eval_sub + = 921 (eval.c:2091) 19 org.gnu.Emacs 0x000000010011a0d9 = funcall_lambda + 841 (eval.c:360) 20 org.gnu.Emacs 0x0000000100116fc7 Ffuncall + = 1191 (eval.c:2827) 21 org.gnu.Emacs 0x000000010014f4e8 = exec_byte_code + 1992 (bytecode.c:900) 22 org.gnu.Emacs 0x000000010011a132 = funcall_lambda + 930 (eval.c:3010) 23 org.gnu.Emacs 0x0000000100116fc7 Ffuncall + = 1191 (eval.c:2827) 24 org.gnu.Emacs 0x0000000100116ac2 Fapply + 738 = (eval.c:2312) 25 org.gnu.Emacs 0x0000000100119032 apply1 + 66 = (eval.c:2546) 26 org.gnu.Emacs 0x0000000100112d4a = Fcall_interactively + 1402 (callint.c:377) 27 org.gnu.Emacs 0x0000000100116f03 Ffuncall + = 995 (eval.c:2785) 28 org.gnu.Emacs 0x000000010011a2b6 call3 + 38 = (eval.c:2603) 29 org.gnu.Emacs 0x00000001000b0e17 = command_loop_1 + 1559 (keyboard.c:1595) 30 org.gnu.Emacs 0x0000000100118919 = internal_condition_case + 297 (eval.c:1290) 31 org.gnu.Emacs 0x00000001000b07de = command_loop_2 + 62 (keyboard.c:1169) 32 org.gnu.Emacs 0x0000000100118a15 = internal_catch + 213 (eval.c:1060) 33 org.gnu.Emacs 0x00000001000b2210 = recursive_edit_1 + 240 (keyboard.c:1148) 34 org.gnu.Emacs 0x00000001000a2c0d = Frecursive_edit + 237 (keyboard.c:843) 35 org.gnu.Emacs 0x000000010009faa2 main + 5922 = (emacs.c:1528) 36 libdyld.dylib 0x00007fff8d5ac7e1 start + 1 Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff8f1b9d16 kevent + 10 1 libdispatch.dylib 0x00007fff887d8dea = _dispatch_mgr_invoke + 883 2 libdispatch.dylib 0x00007fff887d89ee = _dispatch_mgr_thread + 54 Thread 2: 0 libsystem_kernel.dylib 0x00007fff8f1b9322 __select + 10 1 org.gnu.Emacs 0x0000000100181167 -[EmacsApp = fd_handler:] + 247 (nsterm.m:4572) 2 com.apple.Foundation 0x00007fff8e9a1562 = __NSThread__main__ + 1345 3 libsystem_c.dylib 0x00007fff9121f7a2 = _pthread_start + 327 4 libsystem_c.dylib 0x00007fff9120c1e1 thread_start = + 13 Thread 3: 0 libsystem_kernel.dylib 0x00007fff8f1b96d6 = __workq_kernreturn + 10 1 libsystem_c.dylib 0x00007fff91221f4c = _pthread_workq_return + 25 2 libsystem_c.dylib 0x00007fff91221d13 = _pthread_wqthread + 412 3 libsystem_c.dylib 0x00007fff9120c1d1 = start_wqthread + 13 Thread 4: 0 libsystem_kernel.dylib 0x00007fff8f1b96d6 = __workq_kernreturn + 10 1 libsystem_c.dylib 0x00007fff91221f4c = _pthread_workq_return + 25 2 libsystem_c.dylib 0x00007fff91221d13 = _pthread_wqthread + 412 3 libsystem_c.dylib 0x00007fff9120c1d1 = start_wqthread + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x000000000000000a rcx: = 0x00007fff5fbfe618 rdx: 0x0000000000000000 rdi: 0x0000000000000208 rsi: 0x0000000000000006 rbp: = 0x00007fff5fbfe640 rsp: 0x00007fff5fbfe618 r8: 0xfffffffeff8e64af r9: 0x00000000000000ff r10: = 0x00007fff8f1b923a r11: 0x0000000000000202 r12: 0x000000010a8e0ec0 r13: 0x000000010a8914f1 r14: = 0x0000000000000006 r15: 0x0000000000000208 rip: 0x00007fff8f1b8d46 rfl: 0x0000000000000202 cr2: = 0x0000000102507a08 Logical CPU: 0 Binary Images: 0x100000000 - 0x1001f2ff7 +org.gnu.Emacs (Version 24.3 - = 9.0) <33CCEF12-EAEF-32D7-81B2-A38022DB10B1> = /Applications/Emacs.app/Contents/MacOS/Emacs 0x100b1a000 - 0x100b1aff1 +cl_kernels (???) = cl_kernels 0x100b1f000 - 0x100b1fffb +cl_kernels (???) = cl_kernels 0x10103a000 - 0x10103fff7 libFontRegistryUI.dylib (100) = <9F172961-DB6F-3A82-9F90-28F9A233F755> = /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.fr= amework/Resources/libFontRegistryUI.dylib 0x10126c000 - 0x101275fe7 libcldcpuengine.dylib (2.2.16) = = /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dyli= b 0x101280000 - 0x101281ffb +cl_kernels (???) = <392BBEE1-1433-4012-98D2-B46A3F4338C4> cl_kernels 0x10128e000 - 0x10128eff9 +cl_kernels (???) = <1A46B557-EB8C-4FCF-BA27-AC8B0BE4330B> cl_kernels 0x10252d000 - 0x1025c7ff7 unorm8_bgra.dylib (2.2.16) = <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> = /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_= bgra.dylib 0x7fff657f7000 - 0x7fff6582b93f dyld (210.2.3) = <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld 0x7fff87391000 - 0x7fff873b8fff = com.apple.framework.familycontrols (4.1 - 410) = <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> = /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Fami= lyControls 0x7fff873b9000 - 0x7fff873baff7 libsystem_sandbox.dylib (220.3) = = /usr/lib/system/libsystem_sandbox.dylib 0x7fff87465000 - 0x7fff87465fff com.apple.Cocoa (6.7 - 19) = <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> = /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff87466000 - 0x7fff874cefff libvDSP.dylib (380.6) = = /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL= ib.framework/Versions/A/libvDSP.dylib 0x7fff874cf000 - 0x7fff87513fff libcups.2.dylib (327.6) = <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib 0x7fff87514000 - 0x7fff87514fff libOpenScriptingUtil.dylib = (148.3) = /usr/lib/libOpenScriptingUtil.dylib 0x7fff87748000 - 0x7fff8774efff com.apple.DiskArbitration = (2.5.2 - 2.5.2) = /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr= ation 0x7fff877dd000 - 0x7fff87a38ff7 com.apple.QuartzComposer (5.1 - = 284) = /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCo= mposer.framework/Versions/A/QuartzComposer 0x7fff87a39000 - 0x7fff87b37fff com.apple.QuickLookUIFramework = (4.0 - 555.5) = /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLoo= kUI.framework/Versions/A/QuickLookUI 0x7fff87b38000 - 0x7fff87b3dfff libcache.dylib (57) = <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib 0x7fff87dc0000 - 0x7fff87f5bfef com.apple.vImage (6.0 - 6.0) = = /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma= ge.framework/Versions/A/vImage 0x7fff8804e000 - 0x7fff8804efff com.apple.vecLib (3.8 - vecLib = 3.8) <794317C7-4E38-338A-A874-5E18001C8503> = /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff8804f000 - 0x7fff8804fffd com.apple.audio.units.AudioUnit = (1.9 - 1.9) = /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff88065000 - 0x7fff8845cfff libLAPACK.dylib (1073.4) = = /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL= ib.framework/Versions/A/libLAPACK.dylib 0x7fff8845d000 - 0x7fff88461fff com.apple.IOSurface (86.0.4 - = 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> = /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff88462000 - 0x7fff88468fff libmacho.dylib (829) = /usr/lib/system/libmacho.dylib 0x7fff884b5000 - 0x7fff884c2ff7 com.apple.HelpData (2.1.4 - 85) = = /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData 0x7fff884c8000 - 0x7fff88522fff = com.apple.print.framework.PrintCore (8.3 - 387.2) = <5BA0CBED-4D80-386A-9646-F835C9805B71> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/PrintCore.framework/Versions/A/PrintCore 0x7fff88523000 - 0x7fff88523fff com.apple.Accelerate (1.8 - = Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> = /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff88529000 - 0x7fff885fcff7 com.apple.DiscRecording (7.0 - = 7000.2.4) = /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecordin= g 0x7fff88619000 - 0x7fff88619fff com.apple.quartzframework (1.5 = - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> = /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff88625000 - 0x7fff887d3fff com.apple.QuartzCore (1.8 - = 304.3) = /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff887d4000 - 0x7fff887e9ff7 libdispatch.dylib (228.23) = /usr/lib/system/libdispatch.dylib 0x7fff887eb000 - 0x7fff887ecff7 libremovefile.dylib (23.2) = <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> = /usr/lib/system/libremovefile.dylib 0x7fff88828000 - 0x7fff88879ff7 com.apple.SystemConfiguration = (1.12.2 - 1.12.2) = /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System= Configuration 0x7fff8887d000 - 0x7fff889cffff = com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) = <62770C0F-5600-3EF9-A893-8A234663FFF5> = /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff889d0000 - 0x7fff88b56fff libBLAS.dylib (1073.4) = = /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL= ib.framework/Versions/A/libBLAS.dylib 0x7fff88b58000 - 0x7fff88b63ff7 com.apple.bsd.ServiceManagement = (2.0 - 2.0) = /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceM= anagement 0x7fff88b64000 - 0x7fff88baeff7 libGLU.dylib (8.9.2) = <1B5511FF-1064-3004-A245-972CE5687D37> = /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy= lib 0x7fff88be1000 - 0x7fff895714af com.apple.CoreGraphics (1.600.0 = - 332) <5AB32E51-9154-3733-B83B-A9A748652847> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff89572000 - 0x7fff895f3fff com.apple.Metadata (10.7.0 - = 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me= tadata.framework/Versions/A/Metadata 0x7fff8963c000 - 0x7fff89643fff libGFXShared.dylib (8.9.2) = <398F8D57-EC82-3E13-AC8E-470BE19237D7> = /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXSha= red.dylib 0x7fff89644000 - 0x7fff89687ff7 com.apple.RemoteViewServices = (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> = /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/= RemoteViewServices 0x7fff89921000 - 0x7fff89925fff libpam.2.dylib (20) = /usr/lib/libpam.2.dylib 0x7fff89976000 - 0x7fff899a7ff7 com.apple.DictionaryServices = (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Di= ctionaryServices.framework/Versions/A/DictionaryServices 0x7fff899a8000 - 0x7fff899defff com.apple.DebugSymbols (98 - = 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> = /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugS= ymbols 0x7fff899df000 - 0x7fff89a47ff7 libc++.1.dylib (65.1) = <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib 0x7fff89a85000 - 0x7fff89aa6fff com.apple.Ubiquity (1.2 - = 243.15) = /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x7fff89af8000 - 0x7fff89bcaff7 com.apple.CoreText (260.0 - = 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> = /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff89bcb000 - 0x7fff89c5fff7 com.apple.CorePDF (2.2 - 2.2) = = /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff89c62000 - 0x7fff89c6dfff com.apple.CommonAuth (3.0 - = 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> = /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAu= th 0x7fff89c6e000 - 0x7fff89dccfef com.apple.MediaControlSender = (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> = /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/= MediaControlSender 0x7fff89dcd000 - 0x7fff89e05fff libncurses.5.4.dylib (37.3) = <68D5B5F5-8252-3F1E-AFF1-C6AFE145DBC1> /usr/lib/libncurses.5.4.dylib 0x7fff89e06000 - 0x7fff89eb7fff com.apple.LaunchServices (539.9 = - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/La= unchServices.framework/Versions/A/LaunchServices 0x7fff89f03000 - 0x7fff89f4efff com.apple.CoreMedia (1.0 - = 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> = /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff89f4f000 - 0x7fff89f9efff com.apple.framework.CoreWiFi = (1.3 - 130.13) = /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff89f9f000 - 0x7fff89fb2ff7 com.apple.LangAnalysis (1.7.0 - = 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff89fb3000 - 0x7fff89fb7fff libCGXType.A.dylib (332) = <17C8DD17-B3CB-3633-B252-C368AE51204C> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x7fff89fda000 - 0x7fff8a031ff7 com.apple.ScalableUserInterface = (1.0 - 1) = /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Scal= ableUserInterface.framework/Versions/A/ScalableUserInterface 0x7fff8a0bd000 - 0x7fff8a0c3fff libCGXCoreImage.A.dylib (332) = = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib 0x7fff8a0c4000 - 0x7fff8a181ff7 com.apple.ColorSync (4.8.0 - = 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/ColorSync.framework/Versions/A/ColorSync 0x7fff8a1eb000 - 0x7fff8a1f8fff com.apple.AppleFSCompression = (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> = /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/= AppleFSCompression 0x7fff8a1f9000 - 0x7fff8a529fff com.apple.HIToolbox (2.0 - = 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo= x.framework/Versions/A/HIToolbox 0x7fff8a52e000 - 0x7fff8a64efff com.apple.desktopservices = (1.7.4 - 1.7.4) = /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A= /DesktopServicesPriv 0x7fff8a64f000 - 0x7fff8a66eff7 libresolv.9.dylib (51) = <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib 0x7fff8a6ec000 - 0x7fff8a6f9ff7 com.apple.NetAuth (4.0 - 4.0) = = /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff8a85d000 - 0x7fff8a86cfff com.apple.opengl (1.8.9 - = 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> = /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff8a86d000 - 0x7fff8a8aafef libGLImage.dylib (8.9.2) = = /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag= e.dylib 0x7fff8a8ab000 - 0x7fff8a985fff com.apple.backup.framework = (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> = /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff8a986000 - 0x7fff8aa4bff7 com.apple.coreui (2.0 - 181.1) = <83D2C92D-6842-3C9D-9289-39D5B4554C3A> = /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff8aa4c000 - 0x7fff8aa74fff libJPEG.dylib (850) = = /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.= dylib 0x7fff8aeb1000 - 0x7fff8aeb1fff com.apple.CoreServices (57 - = 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> = /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8aeb2000 - 0x7fff8aebefff libCSync.A.dylib (332) = <47466CF6-EB5C-3312-9E24-178F4410A92B> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x7fff8af03000 - 0x7fff8af31fff com.apple.CoreServicesInternal = (154.3 - 154.3) = /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/= A/CoreServicesInternal 0x7fff8afea000 - 0x7fff8aff8ff7 libsystem_network.dylib (77.10) = <0D99F24E-56FE-380F-B81B-4A4C630EE587> = /usr/lib/system/libsystem_network.dylib 0x7fff8aff9000 - 0x7fff8b03cff7 com.apple.bom (12.0 - 192) = <0BF1F2D2-3648-36B7-BE4B-551A0173209B> = /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff8b03d000 - 0x7fff8b04afff libbz2.1.0.dylib (29) = /usr/lib/libbz2.1.0.dylib 0x7fff8b04b000 - 0x7fff8b070ff7 libc++abi.dylib (26) = /usr/lib/libc++abi.dylib 0x7fff8b071000 - 0x7fff8b073fff com.apple.securityhi (4.0 - = 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security= HI.framework/Versions/A/SecurityHI 0x7fff8b074000 - 0x7fff8b0d7ff7 com.apple.audio.CoreAudio = (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> = /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff8b0d8000 - 0x7fff8b0dffff com.apple.NetFS (5.0 - 4.0) = <82E24B9A-7742-3DA3-9E99-ED267D98C05E> = /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff8b5e8000 - 0x7fff8b5f2fff = com.apple.speech.recognition.framework (4.1.5 - 4.1.5) = = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe= cognition.framework/Versions/A/SpeechRecognition 0x7fff8b5f3000 - 0x7fff8b5f3fff com.apple.Accelerate.vecLib = (3.8 - vecLib 3.8) = /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL= ib.framework/Versions/A/vecLib 0x7fff8b61d000 - 0x7fff8b66cff7 libFontRegistry.dylib (100) = <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff8b66d000 - 0x7fff8b699ff7 libRIP.A.dylib (332) = = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x7fff8b69a000 - 0x7fff8b69bfff libsystem_blocks.dylib (59) = = /usr/lib/system/libsystem_blocks.dylib 0x7fff8b961000 - 0x7fff8b98bff7 com.apple.CoreVideo (1.8 - = 99.4) = /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff8b98c000 - 0x7fff8b9b8fff com.apple.framework.Apple80211 = (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> = /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802= 11 0x7fff8b9b9000 - 0x7fff8ba05ff7 libauto.dylib (185.4) = /usr/lib/libauto.dylib 0x7fff8ba06000 - 0x7fff8ba0afff libCoreVMClient.dylib (32.3) = = /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVM= Client.dylib 0x7fff8ba0b000 - 0x7fff8ba2bfff libPng.dylib (850) = <203C43BF-FAD3-3CCB-81D5-F2770E36338B> = /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.d= ylib 0x7fff8ba37000 - 0x7fff8baa4ff7 com.apple.datadetectorscore = (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> = /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/D= ataDetectorsCore 0x7fff8bb38000 - 0x7fff8bb64fff com.apple.quartzfilters (1.8.0 = - 1.7.0) = /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFi= lters.framework/Versions/A/QuartzFilters 0x7fff8bb65000 - 0x7fff8bb66ff7 libdnsinfo.dylib (453.19) = <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib 0x7fff8bb80000 - 0x7fff8bbc0ff7 com.apple.MediaKit (14 - 687) = <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> = /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff8bbc1000 - 0x7fff8bc1dfff com.apple.QuickLookFramework = (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> = /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff8bc1e000 - 0x7fff8bc26ff7 libsystem_dnssd.dylib = (379.38.1) = /usr/lib/system/libsystem_dnssd.dylib 0x7fff8bc27000 - 0x7fff8bc29ff7 com.apple.print.framework.Print = (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr= amework/Versions/A/Print 0x7fff8bc38000 - 0x7fff8bd5092f libobjc.A.dylib (532.2) = <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib 0x7fff8bd51000 - 0x7fff8bdbfff7 com.apple.framework.IOKit = (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> = /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff8bdc0000 - 0x7fff8bdc3fff com.apple.AppleSystemInfo (2.0 = - 2) = /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/App= leSystemInfo 0x7fff8be3a000 - 0x7fff8be5bff7 libCRFSuite.dylib (33) = <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib 0x7fff8be71000 - 0x7fff8be88fff libGL.dylib (8.9.2) = = /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl= ib 0x7fff8be89000 - 0x7fff8bf7efff libiconv.2.dylib (34) = /usr/lib/libiconv.2.dylib 0x7fff8bf7f000 - 0x7fff8bf96fff com.apple.GenerationalStorage = (1.1 - 132.3) = /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A= /GenerationalStorage 0x7fff8bf97000 - 0x7fff8bfecff7 libTIFF.dylib (850) = = /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.= dylib 0x7fff8bfed000 - 0x7fff8bff0fff com.apple.help (1.3.2 - 42) = <343904FE-3022-3573-97D6-5FE17F8643BA> = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra= mework/Versions/A/Help 0x7fff8bff1000 - 0x7fff8cc1efff com.apple.AppKit (6.8 - = 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> = /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff8cc7a000 - 0x7fff8cf29fff com.apple.imageKit (2.2 - 673) = <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> = /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit= .framework/Versions/A/ImageKit 0x7fff8cf2a000 - 0x7fff8d035fff libFontParser.dylib (84.6) = <96C42E49-79A6-3475-B5E4-6A782599A6DA> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8d036000 - 0x7fff8d038fff com.apple.TrustEvaluationAgent = (2.0 - 23) = /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/= A/TrustEvaluationAgent 0x7fff8d0ce000 - 0x7fff8d14eff7 = com.apple.ApplicationServices.ATS (332 - 341.1) = = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/ATS.framework/Versions/A/ATS 0x7fff8d16d000 - 0x7fff8d5a9fef com.apple.VideoToolbox (1.0 - = 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> = /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff8d5aa000 - 0x7fff8d5adff7 libdyld.dylib (210.2.3) = /usr/lib/system/libdyld.dylib 0x7fff8d5ae000 - 0x7fff8d6c8fff com.apple.coreavchd (5.6.0 - = 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> = /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD= 0x7fff8deaf000 - 0x7fff8debdfff libcommonCrypto.dylib (60027) = = /usr/lib/system/libcommonCrypto.dylib 0x7fff8debe000 - 0x7fff8e1d5ff7 = com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) = <1E567A52-677F-3168-979F-5FBB0818D52B> = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca= rbonCore.framework/Versions/A/CarbonCore 0x7fff8e1d6000 - 0x7fff8e271fff com.apple.CoreSymbolication = (3.0 - 117) = /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/C= oreSymbolication 0x7fff8e272000 - 0x7fff8e2ffff7 com.apple.SearchKit (1.4.0 - = 1.4.0) = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se= archKit.framework/Versions/A/SearchKit 0x7fff8e300000 - 0x7fff8e71dfff FaceCoreLight (2.4.1) = = /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceC= oreLight 0x7fff8e90b000 - 0x7fff8ec6afff com.apple.Foundation (6.8 - = 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> = /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff8ed3a000 - 0x7fff8ed48fff com.apple.Librarian (1.1 - 1) = <5AC28666-7642-395F-A923-C6F8A274BBBD> = /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian= 0x7fff8ed49000 - 0x7fff8ed5aff7 libsasl2.2.dylib (166) = <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib 0x7fff8f034000 - 0x7fff8f0b6ff7 com.apple.Heimdal (3.0 - 2.0) = = /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff8f140000 - 0x7fff8f15dff7 com.apple.openscripting (1.3.6 = - 148.3) = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri= pting.framework/Versions/A/OpenScripting 0x7fff8f15e000 - 0x7fff8f1a6fff libcurl.4.dylib (69.2) = /usr/lib/libcurl.4.dylib 0x7fff8f1a7000 - 0x7fff8f1c2ff7 libsystem_kernel.dylib = (2050.24.15) = /usr/lib/system/libsystem_kernel.dylib 0x7fff8f1c3000 - 0x7fff8f334ff7 com.apple.QTKit (7.7.1 - = 2599.31) = /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff8f335000 - 0x7fff8f33cfff libcopyfile.dylib (89) = <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib 0x7fff8f357000 - 0x7fff8f3b0ff7 com.apple.ImageCaptureCore = (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> = /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCapt= ureCore 0x7fff8f3bd000 - 0x7fff8f3d3fff = com.apple.MultitouchSupport.framework (235.29 - 235.29) = <617EC8F1-BCE7-3553-86DD-F857866E1257> = /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/M= ultitouchSupport 0x7fff8f3dd000 - 0x7fff8f47bff7 com.apple.ink.framework (10.8.2 = - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram= ework/Versions/A/Ink 0x7fff8f47c000 - 0x7fff8f720ff7 com.apple.CoreImage (8.4.0 - = 1.0.1) = /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Core= Image.framework/Versions/A/CoreImage 0x7fff8f772000 - 0x7fff8f799ff7 com.apple.PerformanceAnalysis = (1.16 - 16) = /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A= /PerformanceAnalysis 0x7fff8f79a000 - 0x7fff8f79bff7 libSystem.B.dylib (169.3) = <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib 0x7fff8f79c000 - 0x7fff8fa37ff7 com.apple.JavaScriptCore (8536 = - 8536.30) = /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC= ore 0x7fff8fa40000 - 0x7fff8fa62ff7 libxpc.dylib (140.43) = <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib 0x7fff8fa63000 - 0x7fff8fb16ff7 com.apple.PDFKit (2.8.4 - = 2.8.4) = /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.f= ramework/Versions/A/PDFKit 0x7fff8fb17000 - 0x7fff8fb2cfff com.apple.ImageCapture (8.0 - = 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap= ture.framework/Versions/A/ImageCapture 0x7fff8fb2f000 - 0x7fff8fb34fff libcompiler_rt.dylib (30) = <08F8731D-5961-39F1-AD00-4590321D24A9> = /usr/lib/system/libcompiler_rt.dylib 0x7fff8fb4f000 - 0x7fff8fb54fff com.apple.OpenDirectory (10.8 - = 151.10) = /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirector= y 0x7fff8fb55000 - 0x7fff8fb68ff7 libbsm.0.dylib (32) = /usr/lib/libbsm.0.dylib 0x7fff8fba8000 - 0x7fff8fbb0fff liblaunch.dylib (442.26.2) = <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib 0x7fff8fbb1000 - 0x7fff8fbb4fff libRadiance.dylib (850) = <62E3F7FB-03E3-3937-A857-AF57A75EAF09> = /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadia= nce.dylib 0x7fff904fb000 - 0x7fff904fbfff com.apple.Carbon (154 - 155) = <1B2846B1-384E-3D1C-8999-201215723349> = /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff90532000 - 0x7fff9079cfff com.apple.RawCamera.bundle = (4.05 - 690) <811A4D96-D91B-39AE-A9DC-652E3EB8937E> = /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff907fb000 - 0x7fff908fdfff libcrypto.0.9.8.dylib (47.1) = <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib 0x7fff908fe000 - 0x7fff90912fff = com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) = <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff90913000 - 0x7fff90b48ff7 com.apple.CoreData (106.1 - = 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> = /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff90b96000 - 0x7fff90badfff com.apple.CFOpenDirectory (10.8 = - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> = /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/C= FOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff90bae000 - 0x7fff90c9fff7 com.apple.DiskImagesFramework = (10.8.3 - 345) = /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImag= es 0x7fff90ddc000 - 0x7fff90dfbff7 com.apple.ChunkingLibrary (2.0 = - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> = /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chu= nkingLibrary 0x7fff90dfc000 - 0x7fff90e0eff7 libz.1.dylib (43) = <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib 0x7fff90e0f000 - 0x7fff90e6efff com.apple.AE (645.6 - 645.6) = <44F403C1-660A-3543-AB9C-3902E02F936F> = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE= .framework/Versions/A/AE 0x7fff90e6f000 - 0x7fff90e73fff libGIF.dylib (850) = = /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.d= ylib 0x7fff90e74000 - 0x7fff90f71ff7 libxml2.2.dylib (22.3) = <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib 0x7fff90f72000 - 0x7fff90f74fff libquarantine.dylib (52.1) = <143B726E-DF47-37A8-90AA-F059CFD1A2E4> = /usr/lib/system/libquarantine.dylib 0x7fff91101000 - 0x7fff91107ff7 libunwind.dylib (35.1) = <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib 0x7fff91108000 - 0x7fff9120afff libJP2.dylib (850) = <2E43216C-3A5A-3693-820C-38B360698FA0> = /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.d= ylib 0x7fff9120b000 - 0x7fff912d7ff7 libsystem_c.dylib (825.26) = <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib 0x7fff9136a000 - 0x7fff913a0fff libsystem_info.dylib (406.17) = <4FFCA242-7F04-365F-87A6-D4EFB89503C1> = /usr/lib/system/libsystem_info.dylib 0x7fff913a1000 - 0x7fff913ccfff libxslt.1.dylib (11.3) = <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib 0x7fff913cd000 - 0x7fff913d1ff7 com.apple.CommonPanels (1.2.5 - = 94) = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa= nels.framework/Versions/A/CommonPanels 0x7fff913d2000 - 0x7fff9143bfff libstdc++.6.dylib (56) = /usr/lib/libstdc++.6.dylib 0x7fff91567000 - 0x7fff91567fff libkeymgr.dylib (25) = /usr/lib/system/libkeymgr.dylib 0x7fff91568000 - 0x7fff9156aff7 libunc.dylib (25) = <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib 0x7fff9156b000 - 0x7fff915a2ff7 libssl.0.9.8.dylib (47.1) = /usr/lib/libssl.0.9.8.dylib 0x7fff915a3000 - 0x7fff915ffff7 com.apple.Symbolication (1.3 - = 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> = /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbo= lication 0x7fff91600000 - 0x7fff91601fff liblangid.dylib (116) = <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib 0x7fff91602000 - 0x7fff916fffff libsqlite3.dylib (138.1) = /usr/lib/libsqlite3.dylib 0x7fff91700000 - 0x7fff9170fff7 libxar.1.dylib (105) = <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib 0x7fff91710000 - 0x7fff91eb7fff com.apple.CoreAUC (6.16.13 - = 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> = /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff91eb8000 - 0x7fff91ec3ff7 com.apple.DisplayServicesFW = (2.7.2 - 357) = /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/Dis= playServices 0x7fff91ec4000 - 0x7fff91f1afff com.apple.HIServices (1.20 - = 417) = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/HIServices.framework/Versions/A/HIServices 0x7fff91f1b000 - 0x7fff921d2ff7 com.apple.MediaToolbox (1.0 - = 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> = /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff921d3000 - 0x7fff921d3fff com.apple.ApplicationServices = (45 - 45) = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic= ationServices 0x7fff921d4000 - 0x7fff923d4fff libicucore.A.dylib (491.11.3) = <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib 0x7fff923d5000 - 0x7fff9254aff7 com.apple.CFNetwork (596.4.3 - = 596.4.3) = /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff9254b000 - 0x7fff92585ff7 com.apple.GSS (3.0 - 2.0) = <970CAE00-1437-3F4E-B677-0FDB3714C08C> = /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff93546000 - 0x7fff93581fff com.apple.LDAPFramework (2.4.28 = - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> = /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff93582000 - 0x7fff93853ff7 com.apple.security (7.0 - = 55179.13) = /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff938af000 - 0x7fff938bafff libsystem_notify.dylib (98.5) = = /usr/lib/system/libsystem_notify.dylib 0x7fff93913000 - 0x7fff939b9ff7 = com.apple.CoreServices.OSServices (557.6 - 557.6) = <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS= Services.framework/Versions/A/OSServices 0x7fff939ba000 - 0x7fff939f2fff libtidy.A.dylib (15.10) = <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib 0x7fff93a00000 - 0x7fff93a0cfff com.apple.CrashReporterSupport = (10.8.3 - 418) = /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/= A/CrashReporterSupport 0x7fff93a0d000 - 0x7fff93a11ff7 com.apple.TCC (1.0 - 1) = = /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff93a12000 - 0x7fff93a69ff7 com.apple.AppleVAFramework = (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> = /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff93a6a000 - 0x7fff93a6cfff libCVMSPluginSupport.dylib = (8.9.2) = /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPl= uginSupport.dylib 0x7fff93a6d000 - 0x7fff93b07fff libvMisc.dylib (380.6) = <714336EA-1C0E-3735-B31C-19DFDAAF6221> = /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL= ib.framework/Versions/A/libvMisc.dylib 0x7fff93b50000 - 0x7fff93b59ff7 com.apple.CommerceCore (1.0 - = 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> = /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Framewo= rks/CommerceCore.framework/Versions/A/CommerceCore 0x7fff93b5a000 - 0x7fff93ba5fff com.apple.framework.CoreWLAN = (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> = /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff93ba6000 - 0x7fff93bd4ff7 libsystem_m.dylib (3022.6) = /usr/lib/system/libsystem_m.dylib 0x7fff93bd5000 - 0x7fff93c54ff7 com.apple.securityfoundation = (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> = /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit= yFoundation 0x7fff93c55000 - 0x7fff93c56fff = libDiagnosticMessagesClient.dylib (8) = <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> = /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff93c57000 - 0x7fff93e41ff7 com.apple.CoreFoundation (6.8 - = 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> = /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat= ion 0x7fff93e42000 - 0x7fff93e91ff7 libcorecrypto.dylib (106.2) = = /usr/lib/system/libcorecrypto.dylib 0x7fff93ecd000 - 0x7fff93f1afff com.apple.CoreMediaIO (308.0 - = 4155.4) = /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff93f9a000 - 0x7fff93fd9ff7 com.apple.QD (3.42.1 - 285.1) = <77A20C25-EBB5-341C-A05C-5D458B97AD5C> = /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew= orks/QD.framework/Versions/A/QD 0x7fff93fda000 - 0x7fff93ff4fff com.apple.CoreMediaAuthoring = (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> = /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/= CoreMediaAuthoring 0x7fff93ff5000 - 0x7fff9410efff com.apple.ImageIO.framework = (3.2.1 - 850) = /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff9410f000 - 0x7fff94131ff7 com.apple.Kerberos (2.0 - 1) = = /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff94132000 - 0x7fff9418cff7 com.apple.opencl (2.2.19 - = 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> = /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff9418d000 - 0x7fff9419bff7 libkxld.dylib (2050.24.15) = /usr/lib/system/libkxld.dylib 0x7fff942b6000 - 0x7fff942e4fff com.apple.shortcut (2.2 - 2.2) = = /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 10 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: 2678 thread_create: 1 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=3D184.4M resident=3D80.5M(44%) = swapped_out_or_unallocated=3D103.9M(56%) Writable regions: Total=3D191.6M written=3D55.4M(29%) = resident=3D116.1M(61%) swapped_out=3D0K(0%) unallocated=3D75.5M(39%) =20 REGION TYPE VIRTUAL =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D= ATS (font support) 31.8M ATS (font support) (reserved) 4K reserved VM address = space (unallocated) CG backing stores 21.4M CG image 16K CG shared images 192K CoreImage 8K CoreServices 1336K MALLOC 97.5M MALLOC guard page 48K Memory tag=3D240 4K Memory tag=3D242 12K Memory tag=3D251 8K OpenCL 36K STACK GUARD 55.7M Stack 10.3M VM_ALLOCATE 17.1M __DATA 36.9M __IMAGE 528K __LINKEDIT 52.9M __TEXT 131.5M __UNICODE 544K mapped file 52.3M shared memory 6972K =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D= TOTAL 516.9M TOTAL, minus reserved VM space 516.9M System Profile: Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core 2 = Duo, 2.5 GHz, 4 GB, SMC 1.28f3 Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 512 MB Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 667 MHz, = 0xAD00000000000000, 0x48594D503132355336344350382D59352020 Memory Module: BANK 1/DIMM1, 2 GB, DDR2 SDRAM, 667 MHz, = 0xAD00000000000000, 0x48594D503132355336344350382D59352020 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), = Broadcom BCM43xx 1.0 (5.10.131.36.16) Bluetooth: Version 4.1.4f2 12041, 2 service, 11 devices, 1 incoming = serial ports Network Service: AirPort, AirPort, en1 Serial ATA Device: OCZ-VERTEX3, 120.03 GB Parallel ATA Device: MATSHITADVD-R UJ-875 USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd400000 / 3 USB Device: hub_device, apple_vendor_id, 0x911c, 0xfd100000 / 2 USB Device: JM20336 SATA, USB Combo, 0x152d (JMicron Technology Corp.), = 0x2336, 0xfd130000 / 8 USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfd110000 / 5 USB Device: USB Optical Mouse, 0x046d (Logitech Inc.), 0xc018, = 0xfd113000 / 7 USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfd112000 / 6 USB Device: Apple Cinema HD Display, apple_vendor_id, 0x921c, 0xfd120000 = / 4 USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1a100000 / = 2 USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x820f, = 0x1a110000 / 3 USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0230, = 0x5d200000 / 3 USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x5d100000 / 2 =20= From unknown Fri Sep 19 21:29:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14719: 24.3; Crashing when setting frames to random colors Resent-From: Alan Third Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 25 Sep 2017 13:23:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14719 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Steve Wainstead Cc: 14719@debbugs.gnu.org Received: via spool by 14719-submit@debbugs.gnu.org id=B14719.150634578013123 (code B ref 14719); Mon, 25 Sep 2017 13:23:01 +0000 Received: (at 14719) by debbugs.gnu.org; 25 Sep 2017 13:23:00 +0000 Received: from localhost ([127.0.0.1]:57491 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwTLg-0003Pb-4Z for submit@debbugs.gnu.org; Mon, 25 Sep 2017 09:23:00 -0400 Received: from mail-wr0-f172.google.com ([209.85.128.172]:47341) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwTLe-0003PO-9Y for 14719@debbugs.gnu.org; Mon, 25 Sep 2017 09:22:59 -0400 Received: by mail-wr0-f172.google.com with SMTP id k20so7728510wre.4 for <14719@debbugs.gnu.org>; Mon, 25 Sep 2017 06:22:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20161025; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=zDwTwM9kTIGfSFE8xdtFknxVyjqnLUvMeegcm7IMlZg=; b=R6hUodnyW22AKU0e06BiURoUoWQTFqKZQ2U81I4GdVX73JqP8zdEsY+GwP2GrJlbmI /X0n7icVq9dpYC/QLfgt+qvAi6Ywx2G7hAcQrKf+242ry1drjc6fzjIhDPLXsxHd48bo HtHwZja6NswaQiJWbo3MntNHeabZyRnuSnTCI6QqTG0Ia9MzLEsJAHJgsFTZH6h2JVb7 0W7kM5rW+lTfdqfBDlTFqvTZsmBzzufo8dVrksvzPCroFlaSTr6acVRCG0vdj9aubhyI 2ghxMDIlAs3oTzGM6V4hGdxcVKf6f34fvJV24K46UW1MuL1NzDjdMLCIbw/eOBGvhB6V Rn+g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:from:to:cc:subject:references:date :in-reply-to:message-id:user-agent:mime-version; bh=zDwTwM9kTIGfSFE8xdtFknxVyjqnLUvMeegcm7IMlZg=; b=fqAAJmKuknrpej7c3qjsmz1mDmTOoyV2+68q4hcBeqi//kiuHKwBfJTJUhlaS4I3Do JmrsalMvdqyDZAXfOxRMg52rvDncIU+BR922FznhgLUA7QYMf4pefc8k/3sw8DvwKSyw 6mEmqgbQ0yZg5PDSS56vLFS3GHVg7feWvHUdo0N7GcJRdhlwcYancqfyZajQrM6+fQ4d TE5qLVaQIdc0/Z4isjT++/O3+cUdeSP2Tk8KfpbrMaI6G+jdZlWNoUFBELgkNLpWI9iX eRSCxZpivLhKtXjDPLuHClpjH8FX8ZQBhUYrZCowaSlPQTRgtugJMHt4KxVCqWwewBd6 1Deg== X-Gm-Message-State: AHPjjUivkUsPhmVIRjnTr6yu6z15+4PvZ4Cnm2uqjqw8wu08DgI+CuOG 2G85lR4qfiisuYHOHHGuusGMRa1P X-Google-Smtp-Source: AOwi7QBFvAwo9Vx0PZAIGOWHQSQG6MQoM68yQFlE9d7oWntcOL4opWMwd21zeOE81x4SaUTU7UCcWQ== X-Received: by 10.223.174.150 with SMTP id y22mr6536181wrc.29.1506345772365; Mon, 25 Sep 2017 06:22:52 -0700 (PDT) Received: from breton.holly.idiocy.org (ip6-2001-08b0-03f8-8129-b188-2706-1206-0eea.holly.idiocy.org. [2001:8b0:3f8:8129:b188:2706:1206:eea]) by smtp.gmail.com with ESMTPSA id i7sm4028285wmc.18.2017.09.25.06.22.51 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 25 Sep 2017 06:22:51 -0700 (PDT) From: Alan Third References: Date: Mon, 25 Sep 2017 14:22:45 +0100 In-Reply-To: (Steve Wainstead's message of "Tue, 25 Jun 2013 15:00:09 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (darwin) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.1 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.1 (--) Steve Wainstead writes: > I have a Lisp function that is run every time I do M-x compile: > > ;; choose random colors every time we compile, just for fun > (defun sw-make-random-hex-color-string () > "Return a string in the form of #FFFFFF. Choose the number for > #xffffff randomly using Emacs Lisp's builtin function (random)." > ;; seed our random number generator: current datetime plus Emacs's > ;; process ID > (random t) > (format "#%06x" (random #xffffff)) > ) > > (defun sw-randomize-frame-colors () > "Change foreground and background colors of the current frame to > random colors." > (interactive) > (let > ( > (fg-color (sw-make-random-hex-color-string)) > (bg-color (sw-make-random-hex-color-string)) > (color-distance #x3fffff) > ) > (set-foreground-color fg-color) > (set-background-color bg-color) > ) > ) > > I *think* sometimes the color values come out the same and it causes > Emacs to crash. I'm not sure because it's almost instantaneous when I > run compile. Hi, sorry it's taken so long for someone to come back to you. I can't reproduce this crash, are you still experiencing it? -- Alan Third From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 25 09:23:12 2017 Received: (at control) by debbugs.gnu.org; 25 Sep 2017 13:23:12 +0000 Received: from localhost ([127.0.0.1]:57495 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwTLs-0003Qe-DO for submit@debbugs.gnu.org; Mon, 25 Sep 2017 09:23:12 -0400 Received: from mail-wm0-f45.google.com ([74.125.82.45]:45865) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwTLr-0003QP-D1 for control@debbugs.gnu.org; Mon, 25 Sep 2017 09:23:11 -0400 Received: by mail-wm0-f45.google.com with SMTP id q124so19529119wmb.0 for ; Mon, 25 Sep 2017 06:23:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20161025; h=sender:date:message-id:to:from:subject; bh=HetVkkBFCs5n3tzb/rl6dpW3UFkrFgHhVIwYQeZRRyw=; b=Uxo6MWoK8J8IT2aIqueZL4nPyDCmLWD3/zCztGYhgGglkG0Yb4uqQGxJ5vuWwkFdqk eI64PNQsbX/ez7+nZ87ydlcB+l0JAZC+8/camh76UT/K2FJy0/v/25bKQIwXQs1T0HYk B3J1ajvaghjj78phu0pgjWdgww0pf5UHfx4dOAn7ExqOWort6njBISG7rJCDStMF5pIJ 4+II03QHOMZpZU4tXXJCd7fMMeWtHaXjRDK5JATCBHnq8UBoHQkrfuPbQoZTdZQOfU9k rovlsZ2rtRQJOxzE+f7VNY+cSiVTIMbJN7Gbe+jmQlwrRoO0DmF96lMXwr/JncFJHbzD lDmA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:message-id:to:from:subject; bh=HetVkkBFCs5n3tzb/rl6dpW3UFkrFgHhVIwYQeZRRyw=; b=ZI8VT3whSm7pqSlnrDlD52qMDDMjvAc5X879JxKsgZTtgAA7uBDbDx6v8Xjf+Ij4mq 67+fNZ+Pk9OPirMJv2naEJ9M/DkzAoJnQC84f58k+/7cfNKF3Px+0lUhJPhqNrMluq36 /Nzr9TKDxrdCoSKK2LZy4I3HuOIdGBXlEOEERAClilT0kbWvp/dRnWZs+zU8/shetSwE P9in5I6ugQNf7yb7DzVz+JIKjmIxbYWp6NKrJ2PuUMyNwsR1lMrUMlqcJKpnZhiaZs3Q HzEMsa8RSZ5ySL8dPRV1dnzcNFIYdlh+LvHW2tdBAal+PazvUyVJaB+o/NpU0/PZ7sg2 EPNA== X-Gm-Message-State: AHPjjUgtTk5EYrVLM319UQE8rx1OLRb7Crb71frzqBAp78H/B+UX2KK6 ODpjs5+uAm2mfzrDfO7kpaNGgmnV X-Google-Smtp-Source: AOwi7QAvvZQY4fbOiMC7RuM0sLcbLUFk5To7LsqxuKpMuTp81asPVKu2oBRqW3Ehd6px4LBxoWdZjg== X-Received: by 10.28.132.141 with SMTP id g135mr311178wmd.37.1506345785348; Mon, 25 Sep 2017 06:23:05 -0700 (PDT) Received: from breton.holly.idiocy.org (ip6-2001-08b0-03f8-8129-b188-2706-1206-0eea.holly.idiocy.org. [2001:8b0:3f8:8129:b188:2706:1206:eea]) by smtp.gmail.com with ESMTPSA id 133sm7922492wmu.4.2017.09.25.06.23.04 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 25 Sep 2017 06:23:04 -0700 (PDT) Date: Mon, 25 Sep 2017 14:23:04 +0100 Message-Id: To: control@debbugs.gnu.org From: Alan Third Subject: control message for bug #14719 X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.2 (/) tags 14719 unreproducible From unknown Fri Sep 19 21:29:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14719: 24.3; Crashing when setting frames to random colors Resent-From: Steve Wainstead Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 25 Sep 2017 15:30:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14719 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: unreproducible To: Alan Third Cc: Steve Wainstead , 14719@debbugs.gnu.org Received: via spool by 14719-submit@debbugs.gnu.org id=B14719.150635337829607 (code B ref 14719); Mon, 25 Sep 2017 15:30:04 +0000 Received: (at 14719) by debbugs.gnu.org; 25 Sep 2017 15:29:38 +0000 Received: from localhost ([127.0.0.1]:58657 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwVKD-0007hT-Ex for submit@debbugs.gnu.org; Mon, 25 Sep 2017 11:29:38 -0400 Received: from us-smtp-delivery-157.mimecast.com ([216.205.24.157]:46589) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwTT3-000455-Jv for 14719@debbugs.gnu.org; Mon, 25 Sep 2017 09:30:38 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=EMPHASYSSOFTWARE.onmicrosoft.com; s=selector1-emphasyssoftware-com02b; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=ROOcAOUSiE7z4ZmmchrfRQzqfX8LKb+VKKSY/b1XAII=; b=PApgNPFwnFahVLNRhsMJXcU6U7jRFuGMLFwXZxPBlukXKLC44ciuFn2QU82R7zRsBfL6ofPuqinRX4QaE7G9rTn1nm1niI+nTFHALuKFYiy61Mwz7ZB/HCq1mrPTNGcpOmesZXjchEugDvCLn+FjCbPitM90gxKLKR8VxEbIWZo= Received: from NAM01-SN1-obe.outbound.protection.outlook.com (mail-sn1nam01lp0112.outbound.protection.outlook.com [207.46.163.112]) (Using TLS) by us-smtp-1.mimecast.com with ESMTP id us-mta-99-iIiwKHcQMz-5ayldJwqhbA-1; Mon, 25 Sep 2017 09:30:35 -0400 Received: from [192.168.254.31] (47.206.63.93) by BN6PR05MB3667.namprd05.prod.outlook.com (10.174.94.160) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P256) id 15.20.77.5; Mon, 25 Sep 2017 13:30:33 +0000 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) From: Steve Wainstead In-Reply-To: Date: Mon, 25 Sep 2017 09:30:30 -0400 Message-Id: References: X-Mailer: Apple Mail (2.3124) X-Originating-IP: [47.206.63.93] X-ClientProxiedBy: CY4PR22CA0039.namprd22.prod.outlook.com (10.172.142.153) To BN6PR05MB3667.namprd05.prod.outlook.com (10.174.94.160) X-MS-PublicTrafficType: Email X-MS-Office365-Filtering-Correlation-Id: c4369448-3a93-4559-79fb-08d5041999d4 X-Microsoft-Antispam: UriScan:; BCL:0; PCL:0; RULEID:(22001)(2017030254152)(2017052603199)(201703131423075)(201703031133081)(201702281549075); SRVR:BN6PR05MB3667; X-Microsoft-Exchange-Diagnostics: 1; BN6PR05MB3667; 3:7g0p6ytyZ1qXxZaIDrH+1m3ES/tmu7Y4hsyfsCfBXu4utzbZ73sIVRhQKXCWR/K3Y0/bgOjYsZo4OIwbxaXZJzxJDL4aabsrhzXuf3e6u5qPTULFrIwQTToQLBlrLm+wulRhs6B3uPW1G9xx4E4cM7ArnjUTu7HhlWaewtEY+WsiJGWbkfutRbk41TU8yFgQjKdXEG+gllh854mkwYHE1xTlEmrd86TyhxTlbfy7ECYRNHMF5ey5ffwa58xwTiuA; 25:59/HM0n0lvXLpcS4+KWAQxDUp7TxXopV+lu47Ik0ZGE+xhpO03QkHYHPMZDB0rsZ8TOJe2/L5VsXa1OlpuvZv2b4fMbtd7EBb4v3jWK15cJLn8zI6i/wfVk2swDFaKw01aN6PvjuFkr1XOj53N3UKSkcpwtKuS0grBs3Xx/y1dDDPqQCEvCKnoy318eYnqYsMW7KOgvFC83VZv7athLBfnUY1hecnuQJlPSeMUrPWurWzdJFO83O6ex+EI7YGqLSAGCs39dJpjoP430QYau2ALqhVL6iDuDzEXInYpeAtgNtOFiQ620QgpV6iWYPUdrFy9SZgheK1yezc3sxow4lYg==; 31:zyDPqrrkn36kTSs1eTxjRwwW0fPKMhZYGNVFu/FpTnfptGdWRPBpxS0FcLLAb4qhTcUu2oM3AKyVCihEoa0NiX0sYxoZiNxM6K45fqU01ekTqS5g+Iyv/9aV1Hno4Wq7/gXYOJTtgnn6q3dqL+lFyXUWJDTTDSNwzB/FQ1TOQKjB5exA1XjkEtiY7KxBlY1FI7S7sFKIwLTfopn5QtDsaJroD4EzytOVPHJ5KgoghOM= X-MS-TrafficTypeDiagnostic: BN6PR05MB3667: X-Microsoft-Exchange-Diagnostics: 1; BN6PR05MB3667; 20:B/3oUHX4xWQVl69NMK5k8Oswt5u1lal8iP+NbAtFCoBaiqpTVSJAXhyY/o7q1Pu6+bzrj3txP3Qt/TjJQrMoYEjU8+2BQ6Ldatp80wyxZDYWsVd+Yznv5Xh8/vLx1+x2W9adtsHl30ShXdr7FSj5CjHx6iRrTJZL2OgvnI+B1jxrXMFeME1TXTEPiIOsiOtlXB83F2sm30rFcyI7ua/7whKzbcEqMOoV2wb4XztCnRYLPWlWbiQf44f7zB7qK4UF; 4:tOMttL01cfoK2SaomLW+Nw23J4dy/18mqS9TYs3tY/HB9SFjyglFdHPac+/GrnV22ZPoTqINCb5MAbEy0WEjHpOGMGpyD1qJVRbQhBq6Xgd2+9Qy7XLv7Ivijb/31q+Xbp1yrEHO/evjDSsuuLdOvJ76ysiL8vl9+bBeJ95BAubiCu0ID7gfq5UP5qg9xCVr9gqfTOGQA2d/37gYkgYoQPP4S8S9Bz5peGkL/lTbgckcDgE+60F5QOgtDA8muucm X-Exchange-Antispam-Report-Test: UriScan:; X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-CFA-Test: BCL:0; PCL:0; RULEID:(100000700101)(100105000095)(100000701101)(100105300095)(100000702101)(100105100095)(6040450)(2401047)(8121501046)(5005006)(93006095)(93001095)(100000703101)(100105400095)(10201501046)(3002001)(6041248)(201703131423075)(201702281528075)(201703061421075)(201703061406153)(20161123564025)(20161123558100)(20161123562025)(20161123555025)(20161123560025)(6072148)(201708071742011)(100000704101)(100105200095)(100000705101)(100105500095); SRVR:BN6PR05MB3667; BCL:0; PCL:0; RULEID:(100000800101)(100110000095)(100000801101)(100110300095)(100000802101)(100110100095)(100000803101)(100110400095)(100000804101)(100110200095)(100000805101)(100110500095); SRVR:BN6PR05MB3667; X-Forefront-PRVS: 04410E544A X-Forefront-Antispam-Report: SFV:NSPM; SFS:(10019020)(6049001)(39830400002)(346002)(376002)(377454003)(24454002)(199003)(189002)(36756003)(50226002)(5660300001)(76176999)(117156002)(57306001)(478600001)(25786009)(236005)(77096006)(6486002)(90366009)(6306002)(101416001)(86362001)(82746002)(53936002)(105586002)(2950100002)(6916009)(106356001)(4326008)(6246003)(53386004)(229853002)(66066001)(6116002)(3846002)(69556001)(84326002)(83716003)(2906002)(50986999)(68736007)(16576012)(316002)(16586007)(16526017)(97736004)(606006)(53546010)(7736002)(8676002)(33656002)(81166006)(8936002)(189998001)(81156014); DIR:OUT; SFP:1102; SCL:1; SRVR:BN6PR05MB3667; H:[192.168.254.31]; FPR:; SPF:None; PTR:InfoNoRecords; A:1; MX:1; LANG:en; X-Microsoft-Exchange-Diagnostics: 1; BN6PR05MB3667; 23:X4CkvTcV3h/RlrBZB/ZYGKL0Xf0addX6tZoETXEshV39Q/uz8533tR/6UQ8u6DudExNAJQUc86dSAgXr8fwrsnOnDcAEvb8dP7Leodj4oHiZQjz96zK4wtJHe2fflBLFRWPQN6dRKFibQWHa/5xTUTOFrnArSLSv9lEBohr5Yc9NsKPNMGc2ZHJ5WzBKkmB8+oPAFu5J6vJYw+2N+QMqnb1etDFCJMosFqmEe61UGKTRGXVVVCmP/TDdQx63Yfal9F3ADW4doUCQxPUmFQTiO0YK0O48yZiIU166j4zwFrDNZ1T2OVhMy3Zi40bazqBEkqymEmefbNmo3g/ejXhrn7I6fngEnfTn6TWpZwRXh+N+T/EXqW+Kf3p0GzISwwfosTm20MDwVqbTGzMsHG3mpuBUENY4jhBqudv7pHF0ffrNhWZBE6sYHgNMhC4CT7S7hc00+q7yn9Dx+ndXrwjaOJP+kcdCxj3eyF7wpdhg66qX3mCr1axQXGiTJoJrw1aAN5WKNBb47V/Ct5c6TpZ/NytXFV5YCoeLC9hn25LhjfhYorJyx3xSKUMwaoYzP6fpE6FunISoFYrrEasb/zkstT/tEbsQRh+w1A7Hn1q559xsIbALsM2GX+mXhm5KvxnaYgEbSXYJgvphWBmhcTJOwytS7x5YKhARASV3egXXznheVYWjxvEG9zu9QVUYNHu6uUvQPqi6KWiZJvKUvdPelYMSf8W1GJINCjgwzVoyUEcujQkCyxzbZIo5RMEek2j4gjz3oAX+6tF4SlaqmtthPbJjeww1/abkbNCExgC8eFh88hBUHysIhiNvV9zV0Ipo3rVfk5UvwgVe9dJpTCq4xXh3b/Fs3T10h8l9i6WbPiz2s7N7mhA6rrtW7zRhAFLdTJmGP/FDX3zcdI3B5iqIBkctO0e5pbeXeHehJOEnFHtbbive3qrHmImll6cPetnUaG4yJiL2ne5tET+kIwFXTNkj35AQUcsb7MnBadkzLuPh2lIWM4JNlRBhgBc0AptqgoTdzhTUy3M70uZ7OXOYbik/EWeZygp0tff3qcHgePREzqrcrydJRJKiHmdBtSvV5LUGHti23xte+l+cBDm/UP3/K0yWPBBof2L5bxkb7Sr07x7naDuJVAWcfeCa0wiWoXRyFHzENiOETVZeZjKzHVrhh1LGTAvo/Q43/lEQRWDF+CvkGL2NIZijwUVdo0AcSWSUTAWtwGS//gWWs4JF05lg0OeWeSAuWVKpp8p4xvmvf1velVpcnSxINSp46tuRuDH/ajuSEp96bVMjOE/wzQ== X-Microsoft-Exchange-Diagnostics: 1; BN6PR05MB3667; 6:RNnTBqwrQ3JniI7GgHopsOrDnlZVozHjggrBdb5zJ9Sf2zJsYZW0P2+uztbpENYmz+vQMaI5gfqZbz55ntug7XVlonQfaWxKpXb4gbl/xXjy84bNp0G+bG0CvXrMJgMAJ+5uW6Gbsr56NyI2t71tvjQPb3DVLhusPrXQ4P4j5iRZTIQqjNH0hfOtGTD/qTjyfsyGnBsRMwfgKqojvQKfJAvIRPzzH+v7kXOCqeYEyftuw243zJyH5H65qXK+KERKaEUYNPbAzzlMmEIVVuQqrsWvt0nX0ztZVKsyzrsy4Xnus4g02NUv6vUCScomZ7aarvc6LiZ0etc9fUNAW7z6Rw==; 5:ZceupxyA570WuFqTB7uVr5uUIYwUrpTiS2ixVNfFo8FKDQhSAD+rBfOaH7P8RxJQ864lNas2tCTI5kokcEp5AHjfnBi3b+IDyeVdJ/t8Vu1xMnHBWJAu2yHu+01Hf4okPb87Lu/QXevIfpG757euag==; 24:75mfl+QFL3RuiWQk1Km8NDcEpFvfHC9/YWN/U13RacKWNJTR1yJajxETkKmh+aiNPv3DG5nmKf8FTmFpasJTS2ky1N1u3Isuovm38akoeEE=; 7:g1WH8YPCr8eKoVCygqFicYXpXcT2cvYakkH2YX0ULWCUPp23VtnR5Fn0BUHAxvX9yX9NgseCDaIqUF/ef/uqedN67ygEuCF/XgO89EWaOEVkv6GY0Ktqry1cR294gr3wl3SsTJCPsJfTO2onGf4WbKCorLMrsSBn8LHJjqSd8/pUmSiWxxylORyltSSgmshxLSxq5VtHz4Nws1syajsbrkxmM53JiSnTGAuSO+plmTg= SpamDiagnosticOutput: 1:99 SpamDiagnosticMetadata: NSPM X-Microsoft-Exchange-Diagnostics: 1; BN6PR05MB3667; 20:1KCtzWiYaiQrsgNczLs5ithj/BnxGlTXfy3ajnCeTcoA6BgRO4/+BZ65E/brTrzOcczaUMbpwom1i+HjtLk8ac4BbI3QRTb4AuKmUhh3VeR7l1kHIebhYrU9tk/LNcEOu55Ja/XUQDK/2BmNd2Ei1FAIVcPOO4ecq42Z+bo41x0= X-OriginatorOrg: emphasys-software.com X-MS-Exchange-CrossTenant-OriginalArrivalTime: 25 Sep 2017 13:30:33.7763 (UTC) X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted X-MS-Exchange-CrossTenant-Id: 18641390-e14c-429b-b963-713659ab4474 X-MS-Exchange-Transport-CrossTenantHeadersStamped: BN6PR05MB3667 X-MC-Unique: iIiwKHcQMz-5ayldJwqhbA-1 Content-Type: multipart/alternative; boundary="Apple-Mail=_D9CF43F9-A3ED-4623-8FAC-F7B14BD05E1F" X-Spam-Score: -2.3 (--) X-Mailman-Approved-At: Mon, 25 Sep 2017 11:29:36 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) --Apple-Mail=_D9CF43F9-A3ED-4623-8FAC-F7B14BD05E1F Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=WINDOWS-1252 I=92m running 25.2.1 these days and have not experienced it; and I=92ve bee= n using the code below once again, so your timing is actually perfect! If I= do see it again I will email you a stack trace from the Crash Reporter. > On Sep 25, 2017, at 9:22 AM, Alan Third wrote: >=20 > Steve Wainstead writes: >=20 >> I have a Lisp function that is run every time I do M-x compile: >>=20 >> ;; choose random colors every time we compile, just for fun >> (defun sw-make-random-hex-color-string () >> "Return a string in the form of #FFFFFF. Choose the number for >> #xffffff randomly using Emacs Lisp's builtin function (random)." >> ;; seed our random number generator: current datetime plus Emacs's >> ;; process ID >> (random t) >> (format "#%06x" (random #xffffff)) >> ) >>=20 >> (defun sw-randomize-frame-colors () >> "Change foreground and background colors of the current frame to >> random colors." >> (interactive) >> (let=20 >> ( >> (fg-color (sw-make-random-hex-color-string))=20 >> (bg-color (sw-make-random-hex-color-string)) >> (color-distance #x3fffff) >> ) >> (set-foreground-color fg-color) >> (set-background-color bg-color) >> ) >> ) >>=20 >> I *think* sometimes the color values come out the same and it causes >> Emacs to crash. I'm not sure because it's almost instantaneous when I >> run compile. >=20 > Hi, sorry it's taken so long for someone to come back to you. >=20 > I can't reproduce this crash, are you still experiencing it? > --=20 > Alan Third >=20 --- Steve Wainstead Software Engineer Socialserve.com by Emphasys Software (704) 709-2868 swainstead@emphasys-software.com --Apple-Mail=_D9CF43F9-A3ED-4623-8FAC-F7B14BD05E1F Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=WINDOWS-1252 I=92m runni= ng 25.2.1 these days and have not experienced it; and I=92ve been using the= code below once again, so your timing is actually perfect! If I do see it = again I will email you a stack trace from the Crash Reporter.

= On Sep 25, 2017, at 9:22 AM, Alan Third <alan@idiocy.org> wrote:

Steve Wainstead <swain@socialserve.com> = writes:

I= have a Lisp function that is run every time I do M-x compile:

;; choose random colors every time we compile, just for fu= n
(defun sw-make-random-hex-color-string ()
&n= bsp;"Return a string in the form of #FFFFFF. Choose the number for
  #xffffff randomly using Emacs Lisp's builtin function (r= andom)."
 ;; seed our random number generator: current = datetime plus Emacs's
 ;; process ID
&nb= sp;(random t)
 (format "#%06x" (random #xffffff))
 )

(defun sw-randomize-frame-co= lors ()
 "Change foreground and background colors of th= e current frame to
random colors."
 (inte= ractive)
 (let
    =  (
      (fg-color (sw-ma= ke-random-hex-color-string))
     =  (bg-color (sw-make-random-hex-color-string))
 &nb= sp;    (color-distance #x3fffff)
 &= nbsp;    )
   (set-foregr= ound-color fg-color)
   (set-background-color= bg-color)
   )
 )

I *think* sometimes the color values come out the sa= me and it causes
Emacs to crash. I'm not sure because it's al= most instantaneous when I
run compile.

Hi, sorry it's taken so long for someone to come back t= o you.

I can't reproduce this crash, are you s= till experiencing it?
--
Alan Third


---
Steve Wainstead
Software Engineer
Socialserve.com by Emphasys Software
(= 704) 709-2868
swainstead@emphasys-software.com

--Apple-Mail=_D9CF43F9-A3ED-4623-8FAC-F7B14BD05E1F-- From unknown Fri Sep 19 21:29:41 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Steve Wainstead Subject: bug#14719: closed (Re: bug#14719: 24.3; Crashing when setting frames to random colors) Message-ID: References: <20170925165255.GE45550@breton.holly.idiocy.org> X-Gnu-PR-Message: they-closed 14719 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: unreproducible Reply-To: 14719@debbugs.gnu.org Date: Mon, 25 Sep 2017 16:54:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1506358442-26665-1" This is a multi-part message in MIME format... ------------=_1506358442-26665-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #14719: 24.3; Crashing when setting frames to random colors which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 14719@debbugs.gnu.org. --=20 14719: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D14719 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1506358442-26665-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 14719-done) by debbugs.gnu.org; 25 Sep 2017 16:53:06 +0000 Received: from localhost ([127.0.0.1]:58763 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwWd0-0006ut-DN for submit@debbugs.gnu.org; Mon, 25 Sep 2017 12:53:06 -0400 Received: from mail-wm0-f52.google.com ([74.125.82.52]:45749) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwWcx-0006uN-Vn for 14719-done@debbugs.gnu.org; Mon, 25 Sep 2017 12:53:04 -0400 Received: by mail-wm0-f52.google.com with SMTP id q124so21672095wmb.0 for <14719-done@debbugs.gnu.org>; Mon, 25 Sep 2017 09:53:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20161025; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to :user-agent; bh=5Qo3gy9EvpTcQn5jeT0vzZ2pefah395v+LXOt/rHSfM=; b=Bat4n+7UtmIMwVoXlfZ89IReweiXY8Vjj/dCVRV8lsBc0UlHRvKNOoXA3wEwittbxZ FjAWkCnHTenLKkxg503FnoYaAVG6lM2i/OF59v1vgWMez7y4PuvohvYfEG9Q7hkBM2gX Dv5lV/v7vG3AL0WS+HjlKLPic0906Pe4elcstpTTWK3UAraGOX18HyASpzbA4uvwy7Bp ysmKCyWT4lccDg/PG74MX3mR4aNytwDnovMU5a6kp3ae2WtvkzjcU5CBgWt5lfeWfPyy CWDsMXbdT3z9s0duLQnQTTOyIWGk9VHzJAE9fDbW1Xj8klT4kfcL1erC76+oAMlbxfdg nWnA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition :content-transfer-encoding:in-reply-to:user-agent; bh=5Qo3gy9EvpTcQn5jeT0vzZ2pefah395v+LXOt/rHSfM=; b=lFOzFIlu+8XaOlLYjAxcHnkZSj7SCfMRLO/dCOXRud6MST3slt6cEqDx8l1Smms5B3 iwvDldmRnn1mYSio653mYR18Gu07cYijuSfuwfQTmWBZ+gt6W7E6IWT2OBtlY2cBDGaw 1DmwPME09e+a3v7yoJDt4ktuNAT+SU2SpM2YVHhdCNEenyV64vEyZ4aXRs0m3xwqEUjR 6DifHqenciRBI86JngtfUQNIJLc3VNA6y/x+2UeUXxsnoxWNKKrcfNk3gDMYo1IV5OZS hR9YakeO1chZrge8Wgt9claYTlN1q7eGakfGlMNUhosqdPNCnUIfIjYhmoOAkeholwnR Wv2Q== X-Gm-Message-State: AHPjjUg3Saa4ZgV26bSNftgrn+kga5hUuBAvZXSMG0SZR2nCkMuBL21n rH36wQqQbErSDeHPovI9ixY2tJQ84/I= X-Google-Smtp-Source: AOwi7QAlXTl8YGJyB0RChRsFQEqsMCkAlS3DAVAq8+nx7J5oWkhRki5iohqSSSSUQUALjxLffEUeCg== X-Received: by 10.28.105.92 with SMTP id e89mr800986wmc.65.1506358378320; Mon, 25 Sep 2017 09:52:58 -0700 (PDT) Received: from breton.holly.idiocy.org (ip6-2001-08b0-03f8-8129-b188-2706-1206-0eea.holly.idiocy.org. [2001:8b0:3f8:8129:b188:2706:1206:eea]) by smtp.gmail.com with ESMTPSA id 25sm10912414wrv.8.2017.09.25.09.52.57 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 25 Sep 2017 09:52:57 -0700 (PDT) Date: Mon, 25 Sep 2017 17:52:55 +0100 From: Alan Third To: Steve Wainstead Subject: Re: bug#14719: 24.3; Crashing when setting frames to random colors Message-ID: <20170925165255.GE45550@breton.holly.idiocy.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.9.0 (2017-09-02) X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 14719-done Cc: Steve Wainstead , 14719-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.7 (/) On Mon, Sep 25, 2017 at 09:30:30AM -0400, Steve Wainstead wrote: > I’m running 25.2.1 these days and have not experienced it; and I’ve > been using the code below once again, so your timing is actually > perfect! If I do see it again I will email you a stack trace from > the Crash Reporter. Thanks! I’m closing the bug report. -- Alan Third ------------=_1506358442-26665-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 25 Jun 2013 22:11:29 +0000 Received: from localhost ([127.0.0.1]:41209 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UrbSS-0003lF-9I for submit@debbugs.gnu.org; Tue, 25 Jun 2013 18:11:28 -0400 Received: from eggs.gnu.org ([208.118.235.92]:38847) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UrbHu-0003UO-7Y for submit@debbugs.gnu.org; Tue, 25 Jun 2013 18:00:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UrbHh-0000XC-KY for submit@debbugs.gnu.org; Tue, 25 Jun 2013 18:00:28 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:40967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrbHh-0000X6-Gb for submit@debbugs.gnu.org; Tue, 25 Jun 2013 18:00:21 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40500) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrbHd-000255-0t for bug-gnu-emacs@gnu.org; Tue, 25 Jun 2013 18:00:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UrbHZ-0000Ug-58 for bug-gnu-emacs@gnu.org; Tue, 25 Jun 2013 18:00:16 -0400 Received: from mail.socialserve.com ([66.129.73.133]:50199) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrbHZ-0000UG-12 for bug-gnu-emacs@gnu.org; Tue, 25 Jun 2013 18:00:13 -0400 Received: from swain.socialserve.com (swain.socialserve.com [10.0.8.64]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: swain) by mail.socialserve.com (Postfix) with ESMTPSA id 5C9232A4C4 for ; Tue, 25 Jun 2013 18:00:11 -0400 (EDT) From: Steve Wainstead Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: 24.3; Crashing when setting frames to random colors Message-Id: Date: Tue, 25 Jun 2013 15:00:09 -0700 To: bug-gnu-emacs@gnu.org Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) X-Mailer: Apple Mail (2.1508) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Tue, 25 Jun 2013 18:11:27 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) I have a Lisp function that is run every time I do M-x compile: ;; choose random colors every time we compile, just for fun (defun sw-make-random-hex-color-string () "Return a string in the form of #FFFFFF. Choose the number for #xffffff randomly using Emacs Lisp's builtin function (random)." ;; seed our random number generator: current datetime plus Emacs's ;; process ID (random t) (format "#%06x" (random #xffffff)) ) (defun sw-randomize-frame-colors () "Change foreground and background colors of the current frame to random colors." (interactive) (let ( (fg-color (sw-make-random-hex-color-string)) (bg-color (sw-make-random-hex-color-string)) (color-distance #x3fffff) ) (set-foreground-color fg-color) (set-background-color bg-color) ) ) I *think* sometimes the color values come out the same and it causes Emacs to crash. I'm not sure because it's almost instantaneous when I run compile. Note that color-distance is unused, a feature I've yet to implement. In GNU Emacs 24.3.1 (x86_64-apple-darwin12.3.0, NS apple-appkit-1187.37) of 2013-03-20 on swain.socialserve.com Windowing system distributor `Apple', version 10.3.1187 Configured using: `configure '--with-ns'' Important settings: locale-coding-system: nil default enable-multibyte-characters: t Major mode: Emacs-Lisp Minor modes in effect: display-time-mode: t desktop-save-mode: t show-paren-mode: t tooltip-mode: t mouse-wheel-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t column-number-mode: t line-number-mode: t transient-mark-mode: t abbrev-mode: t Recent input: y M-x s e SPC t SPC f o r e r e d M-x s e t SPC b a c k r e d M-x s e t SPC b a c k g r o u n d SPC c o l o r b l a c k M-x s e t SPC f o r e g o l d e n r o d C-e k C-x o C-n C-e M-b C-x . C-g C-x k C-x 1 M-x s e t SPC c u r c r e d C-e C-n C-n C-n C-n C-n C-n C-n C-n M-x b u g s C-g M-x r e p o r t - e m a c s - b u g Recent messages: Using the CPython shell Local value of py-indent-offset set to 4 Using the CPython shell Desktop: 9 buffers restored. For information about GNU Emacs and the GNU system, type C-h C-a. Making completion list... Type C-x 1 to delete the help window. Local value of py-indent-offset set to 4 Using the CPython shell Mark set Quit [2 times] Load-path shadows: None found. Features: (shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils find-func etags help-mode vc-git imenu csv-mode-autoloads package derived diff-mode- two-column edmacro kmacro python-mode info-look info cl-macs gv easymenu compile cl comint ansi-color ring byte-opt warnings bytecomp byte-compile cconv advice help-fns cl-lib advice-preload server time ibuffer desktop paren time-date tooltip ediff-hook vc-hooks lisp-float-type mwheel ns-win tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process ns multi-tty emacs) --- Steve Wainstead SocialServe.com ------------=_1506358442-26665-1--