-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
segmentation fault 11 on Mavericks python Python 2.7.6rc1 #5396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
you think that the contents of the csv, the code you are using to read, and your python/pandas version woulud be useful? |
Also, please consider whether AppNap is a factor (ie is Python specifically allowed? Are you letting the window slide out of focus?) |
finally, please tell us whether you see the same behavior in a stable Python version like 2.7.5 or 3.3. Bonus points if you edit down the size of your file to be just what's involved in this specific issue. |
yes , I am able to replicate the error with 2.7.5 too . Here the full error info. PlugIn Path: /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/core/umath.so Date/Time: 2013-10-31 10:44:35.330 -0700 Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) VM Regions Near 0: Thread 0 Crashed:: Dispatch queue: com.apple.main-thread Thread 0 crashed with X86 Thread State (64-bit): Logical CPU: 2 Binary Images: External Modification Summary: VM Region Summary: REGION TYPE VIRTUAL Model: MacBookPro10,1, BootROM MBP101.00EE.B03, 4 processors, Intel Core i7, 2.7 GHz, 16 GB, SMC 2.3f36 |
you still haven't posted the code you used to generate this. There's no |
Here the code that is generating the error: Python 2.7.6rc1 (v2.7.6rc1:4913d0e9be30+, Oct 27 2013, 20:52:11)
|
here is the head of the ratings file 1,809,4.0 |
So if you read just those lines in, you get the segmentation fault? Just need to see whether it's some issue with length/width/whatever. Maybe you could put the data on Dropbox/gist or something? [if it's not private] Just need to be able to reproduce it. |
Here is the google drive link: |
I get the same error even with just 10 lines in the file. |
this is a bug in mavericks; try the test and solution here http://stackoverflow.com/questions/19531969/segmentation-fault-11-in-os-x |
To be clear, if you run this as a script it doesn't fail? As an aside, I think you also might be able to get around this by |
Homebrew python works fine on Mavericks. |
Unless I am missing something, there is no indication in the crash traces that this is related to the readline segfault. In any case, the first crash is with 2.7.6rc1 in which the readline problem is fixed and the second is with the Apple-supplied system python which does not have the problem anyway. |
Googling for umath.so finds this: numpy/numpy#3962 |
It fails even when running as a script, I will try the homebrew version of python |
venuktan, you should only need to install a newer version of Numpy. The problem is there. |
I built numpy from latest source, and the problem still exists. |
are we saying this is a numpy issue? |
Are you sure that that particular fix is actually in the source you used? You need to show the stack trace from the python crash to be able to tell where the segfault really happened. |
It was committed to master, and I checked out master. Not sure otherwise. How do I show the stack trace? |
jratner, the traces that venuktan provided above indicate a crash in Numpy that is consistent with the Numpy issue I linked above. rjurney, there may be log files in ~/Library/Logs/DiagnosticReports. Without a stack trace, it's not certain that rjurney is seeing the same problem, of course. |
okay, then probably beneficial to move this issue to numpy instead? Going to close this for now unless it's demonstrated that it's a pandas issue. |
I checked, my version of numpy is '1.9.0.dev-54d3559' |
Process: Python [10688] Date/Time: 2013-11-01 00:09:12.322 -0700 Sleep/Wake UUID: 89AC84A0-9F0B-40E8-890F-4FC2B6FB598F Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) VM Regions Near 0: Thread 0 Crashed:: Dispatch queue: com.apple.main-thread Thread 1: Thread 0 crashed with X86 Thread State (64-bit): Logical CPU: 2 Binary Images: External Modification Summary: VM Region Summary: REGION TYPE VIRTUAL System Profile: |
General note - if you're using a dev version of numpy, please build pandas with a supported version (which should include 1.8 soon) before posting a bug report, so we can:
Also, please post your stack traces as gists so they don't pollute inboxes and such. I strongly recommend you move this to numpy - nothing pandas devs can do to resolve this for you. |
Sorry about the pastie. I just switched from the latest stable/pip install of numpy to the latest dev in an attempt to resolve the issue. If this was a numpy issue, that should have fixed it. It seems not to be? |
not necessarily, maybe a mavericks issue? I and others use OSX (though I'm using an earlier version) and I don't see this problem. |
Looks like it is a numpy issue. It is a Mavericks issue, though. |
rjurney, are you getting the same problem with numpy? |
rjurney, your stack trace shows the same crash as venuktan's. I'm no expert on Numpy or pandas but it sure looks to me like the Numpy problem in that linked issue. I only got involved here to establish that it was not the Mavericks readline problem in Python. I'm going to bow out now. Good luck! |
I dont think its a numpy issue as this works flawlessly data = np.genfromtxt('/Users/venuktangirala/rat1.csv', dtype=float, delimiter=',', names=True) the same does not work with pandas and crashes with segmentation fault 11. |
thought it was numpy because @ned-deily and other links to numpy issues. So everything else works but read_csv? What version of pandas are you using? |
pandas (0.12.0-943-gaef5061) |
After that, going to need to use git bisect to locate the commit that introduced the issue (if possible) - I'm not sure how you write a script to test for segfaults -- but if I can figure it out, I'd ask you to run that with git bisect in the background. |
Check this out - you need to try the latest version of numpy: On Fri, Nov 1, 2013 at 3:55 PM, Venu K Tangirala
Russell Jurney twitter.com/rjurney russell.jurney@gmail.com datasyndrome.com |
I can now for sure say this is a pandas issue and not a numpy issue from the tests below.
|
@rjurney |
I think you both have different errors. @venuktan please run through these steps and tell us what you get:
|
Also, please make sure that your version of xcode is up to date and also try installing the scientific python stack (or just whatever you need for pandas) in a fresh virtualenv. I've asked around and there are a number of Mavericks users who have no problems running pandas, so it seems more likely that it's something about your setup in particular. |
We may have different errors, but it seems noteworthy to me that Venuktan On Mon, Nov 4, 2013 at 4:15 AM, Jeff Tratner notifications@github.comwrote:
Russell Jurney twitter.com/rjurney russell.jurney@gmail.com datasyndrome.com |
yeah, that could definitely be it. I'm also thinking it could be an environment issue (i.e. mismatched versions or something) b/c @venuktan is working with 2.7.6rc, suggesting more advanced packaging use. (maybe - I'm definitely not sure) |
I get a segmentation fault 11 when I try to read from a csv.
Here is the full error report :
Process: Python [95313]
Path: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Identifier: Python
Version: 2.7.6rc1 (2.7.6rc1)
Code Type: X86-64 (Native)
Parent Process: bash [94753]
Responsible: iTerm [160]
User ID: 501
Date/Time: 2013-10-31 01:16:01.018 -0700
OS Version: Mac OS X 10.9 (13A603)
Report Version: 11
Anonymous UUID: 592E522A-F4DC-667B-6F11-E35383BBC4BE
Sleep/Wake UUID: F91ECED6-C437-4874-B521-5F139FBA707A
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
VM Regions Near 0:
-->
__TEXT 0000000100000000-0000000100001000 [ 4K] r-x/rwx SM=COW /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 umath.so 0x0000000101293567 _extract_pyvals + 403
1 umath.so 0x0000000101295ea4 _get_bufsize_errmask + 49
2 umath.so 0x0000000101293ad4 PyUFunc_GenericFunction + 1181
3 umath.so 0x00000001012977b7 ufunc_generic_call + 307
4 org.python.python 0x000000010000c702 PyObject_Call + 98
5 org.python.python 0x0000000100010e45 _PyObject_CallFunction_SizeT + 197
6 multiarray.so 0x0000000101104500 array_richcompare + 761
7 org.python.python 0x000000010005ae9c try_rich_compare + 92
8 org.python.python 0x000000010005c86f PyObject_RichCompare + 95
9 org.python.python 0x00000001000bf443 PyEval_EvalFrameEx + 8355
10 org.python.python 0x00000001000c4746 PyEval_EvalCodeEx + 2118
11 org.python.python 0x00000001000c2b80 PyEval_EvalFrameEx + 22496
12 org.python.python 0x00000001000c338a PyEval_EvalFrameEx + 24554
13 org.python.python 0x00000001000c4746 PyEval_EvalCodeEx + 2118
14 org.python.python 0x00000001000c2b80 PyEval_EvalFrameEx + 22496
15 org.python.python 0x00000001000c4746 PyEval_EvalCodeEx + 2118
16 org.python.python 0x00000001000c2b80 PyEval_EvalFrameEx + 22496
17 org.python.python 0x00000001000c4746 PyEval_EvalCodeEx + 2118
18 org.python.python 0x00000001000c2b80 PyEval_EvalFrameEx + 22496
19 org.python.python 0x00000001000c4746 PyEval_EvalCodeEx + 2118
20 org.python.python 0x00000001000c4866 PyEval_EvalCode + 54
21 org.python.python 0x00000001000e8c1c PyRun_InteractiveOneFlags + 380
22 org.python.python 0x00000001000e8e7e PyRun_InteractiveLoopFlags + 78
23 org.python.python 0x00000001000e9691 PyRun_AnyFileExFlags + 161
24 org.python.python 0x000000010010040d Py_Main + 3101
25 org.python.python 0x0000000100000f14 0x100000000 + 3860
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000103167d88 rbx: 0x0000000000000000 rcx: 0x00000001012b4326 rdx: 0x0000000000000000
rdi: 0x0000000000000000 rsi: 0x00007fff5fbfba70 rbp: 0x00007fff5fbfbbc0 rsp: 0x00007fff5fbfbb90
r8: 0x0000000000000000 r9: 0x0000000102f00000 r10: 0x0000000000000000 r11: 0x0000000001ec1f48
r12: 0x00007fff5fbfbdd8 r13: 0x00007fff5fbfbddc r14: 0x00007fff5fbfbdd8 r15: 0x0000000000000000
rip: 0x0000000101293567 rfl: 0x0000000000010202 cr2: 0x0000000000000000
Logical CPU: 0
Error Code: 0x00000006
Trap Number: 14
Binary Images:
0x100000000 - 0x100000fff +org.python.python (2.7.6rc1 - 2.7.6rc1) /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
0x100003000 - 0x10016efe7 +org.python.python (2.7.6rc1, [c] 2004-2013 Python Software Foundation. - 2.7.6rc1) /Library/Frameworks/Python.framework/Versions/2.7/Python
0x1002f0000 - 0x1002f5fe7 +math.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/math.so
0x1002fc000 - 0x1002fdff7 +_functools.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_functools.so
0x1004b0000 - 0x1004cffff +hashtable.so (0) <01F7E241-2D0D-38AB-A6EC-8E607145ADD6> /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/hashtable.so
0x1004e5000 - 0x1004f3ff7 +datetime.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/datetime.so
0x100600000 - 0x10063eff7 +readline.so (???) <91E41C1B-723F-375F-B456-45B90A19C9F6> /Library/Python/2.7/site-packages/readline-6.2.4.1-py2.7-macosx-10.7-intel.egg/readline.so
0x1006d9000 - 0x1006ddfff +_collections.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_collections.so
0x1006e3000 - 0x1006e7ff7 +operator.so (???) <8111DA52-077D-8FF5-A0FD-C1D658DE2337> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/operator.so
0x1006ee000 - 0x1006f5ff7 +itertools.so (???) <3A507B1F-7D11-8062-8704-D8F45B49299A> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/itertools.so
0x101100000 - 0x1011cefff +multiarray.so (0) <3D91B229-4015-35AD-BB40-F9A11EC60C82> /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/core/multiarray.so
0x101274000 - 0x1012b4fff +umath.so (0) <0CF4AA4D-67DB-335F-94E3-6056C13B0AC0> /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/core/umath.so
0x1012e0000 - 0x1012e1ff7 +_heapq.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_heapq.so
0x1012e5000 - 0x1012f5fff +cPickle.so (???) <9BB009FB-C9EE-05CF-C36A-1591595E0455> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cPickle.so
0x1012fd000 - 0x1012fefff +cStringIO.so (???) <9604569D-A2D9-6ECE-BB63-9364EA8D9F2B> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cStringIO.so
0x101303000 - 0x101306ff7 +_dotblas.so (0) <4AAE40D9-613A-307A-B271-49A0579E2FB1> /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/core/_dotblas.so
0x10134a000 - 0x101363fff +scalarmath.so (0) /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/core/scalarmath.so
0x101476000 - 0x101478ff7 +time.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/time.so
0x1014bd000 - 0x1014c1ff7 +_compiled_base.so (0) <907FD9FE-69CF-309F-BC37-7A7341740D39> /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/lib/_compiled_base.so
0x1014c5000 - 0x1014c8fff +lapack_lite.so (0) <12B329E7-CA0B-3D05-8580-AC8659BF1FBC> /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/linalg/lapack_lite.so
0x1014cc000 - 0x1014d8ff7 +_umath_linalg.so (0) <74F5BE7A-13E1-3290-B667-C0C5258E7748> /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/linalg/_umath_linalg.so
0x1014e4000 - 0x1014e4fff +grp.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/grp.so
0x1014e7000 - 0x1014e7fff +future_builtins.so (???) <1B914445-9159-4594-1538-7B343DC95019> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/future_builtins.so
0x1014ea000 - 0x1014f1ff7 +fftpack_lite.so (0) <2A8F98B4-94C1-3614-A0DC-2D39E2EF3700> /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/fft/fftpack_lite.so
0x1014f5000 - 0x1014f8ff7 +strop.so (???) <86EEBF37-7A5B-5B71-FA51-F8D7A9031CA1> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/strop.so
0x1017c0000 - 0x1017d6fff +_ctypes.so (???) <7FCBDB27-1007-C685-0D11-67197537AEBA> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ctypes.so
0x1017e7000 - 0x1017ebfff +_struct.so (???) <021A3094-6301-AF18-6155-02314FB5F41A> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_struct.so
0x1017f2000 - 0x1017f7fff +array.so (???) <82DAF0A4-4619-43C3-922C-1230A67691CA> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/array.so
0x102000000 - 0x102032ff7 +mtrand.so (0) /Library/Python/2.7/site-packages/numpy-1.9.0.dev_54d3559-py2.7-macosx-10.9-intel.egg/numpy/random/mtrand.so
0x102080000 - 0x102101ff7 +tslib.so (0) <5B59DDC3-0E1B-30D8-95D0-BC093DD93EE6> /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/tslib.so
0x102142000 - 0x10214bff7 +_socket.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_socket.so
0x102157000 - 0x10215bfff +_ssl.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ssl.so
0x102161000 - 0x102176ff7 +_io.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_io.so
0x10218e000 - 0x102191fef +binascii.so (???) <9915005E-2A58-9A80-70E6-10C4B3BB05FD> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/binascii.so
0x102195000 - 0x102196fff +_hashlib.so (???) <16604AB8-B67D-4FF6-2C0C-98B8E2632C88> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_hashlib.so
0x10219a000 - 0x10219bfff +_random.so (???) <5F74B65B-4D71-043E-5380-C3AB81D7729D> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_random.so
0x10219e000 - 0x10219fff7 +fcntl.so (???) <75F4B9B8-342B-F736-ACE9-23DF945E4334> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/fcntl.so
0x1021e2000 - 0x1021e4ff7 +_locale.so (???) <500ED0AF-DEF2-4393-AB13-59A9851F36E4> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_locale.so
0x1021e8000 - 0x1021e8fff +_bisect.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_bisect.so
0x1021eb000 - 0x1021eeff7 +_csv.so (???) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_csv.so
0x1021f4000 - 0x1021f7ff7 +zlib.so (???) <6A624745-3CD5-9F33-99D9-219BEADA9416> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/zlib.so
0x1021fc000 - 0x1021fcfff +_scproxy.so (???) <5A1EC98C-7C28-BC2E-FA63-E0A889D444FD> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_scproxy.so
0x102640000 - 0x102674ff7 +pyexpat.so (???) <6A683004-0DB1-BE9D-4AE9-0D445B593D3B> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/pyexpat.so
0x102686000 - 0x1026ebfff +lib.so (0) <97CE8729-9265-3894-B62D-971D05E48D63> /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/lib.so
0x102721000 - 0x10284dff7 +algos.so (0) <33114579-E1CC-3CCC-8BF0-5FF2C8AE930D> /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/algos.so
0x1028a3000 - 0x1028bffff +index.so (0) <6667E941-CC0B-3F07-97F8-F90A78063154> /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/index.so
0x1028d3000 - 0x1028d6fff +select.so (???) <1A95CD9A-2B1B-9998-449A-B23AFC57C499> /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/select.so
0x1028dc000 - 0x1028e7fff +json.so (0) <393DA9E8-77C3-3961-B952-E25B3860F049> /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/json.so
0x102a00000 - 0x102a24ff7 +_sparse.so (0) <3E6B66B0-FCD3-39ED-83CE-E7EFA78DD187> /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/_sparse.so
0x102e40000 - 0x102e69fff +_path.so (0) /Library/Python/2.7/site-packages/matplotlib-1.4.x-py2.7-macosx-10.9-intel.egg/matplotlib/_path.so
0x1030c0000 - 0x1030f0ff7 +parser.so (0) /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/parser.so
0x10318e000 - 0x1031a3fff +msgpack.so (0) <5015FDF4-FF64-38B1-97F2-2A309FD0AF32> /Library/Python/2.7/site-packages/pandas-0.12.0_943_gaef5061-py2.7-macosx-10.9-intel.egg/pandas/msgpack.so
0x7fff67401000 - 0x7fff67434817 dyld (239.3) /usr/lib/dyld
0x7fff80dca000 - 0x7fff80df3ff7 libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
0x7fff80ed9000 - 0x7fff80f62ff7 libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
0x7fff81dcd000 - 0x7fff81dd2fff libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
0x7fff81ddd000 - 0x7fff81ddfff7 libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
0x7fff81e9c000 - 0x7fff81e9eff3 libsystem_configuration.dylib (596.12) /usr/lib/system/libsystem_configuration.dylib
0x7fff820d4000 - 0x7fff8228cff3 libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
0x7fff822b8000 - 0x7fff822b9ff7 libsystem_sandbox.dylib (278.10) /usr/lib/system/libsystem_sandbox.dylib
0x7fff82466000 - 0x7fff82495fd2 libsystem_m.dylib (3047.16) /usr/lib/system/libsystem_m.dylib
0x7fff824c5000 - 0x7fff824d6ff7 libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
0x7fff82785000 - 0x7fff82786ff7 libSystem.B.dylib (1197.1.1) /usr/lib/libSystem.B.dylib
0x7fff82787000 - 0x7fff827eaff7 com.apple.SystemConfiguration (1.13 - 1.13) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff82804000 - 0x7fff82815ff7 libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
0x7fff829a4000 - 0x7fff829a5fff com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff82cc2000 - 0x7fff82d14fff libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
0x7fff82e0b000 - 0x7fff82e13fff libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
0x7fff843dd000 - 0x7fff8454bff7 libBLAS.dylib (1094.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff84865000 - 0x7fff8486bff7 libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
0x7fff8486c000 - 0x7fff84890fff libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
0x7fff848e9000 - 0x7fff84904ff7 libsystem_malloc.dylib (23.1.10) /usr/lib/system/libsystem_malloc.dylib
0x7fff84b09000 - 0x7fff84b16ff0 libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
0x7fff8543a000 - 0x7fff8543bff7 libsystem_blocks.dylib (63) /usr/lib/system/libsystem_blocks.dylib
0x7fff8543c000 - 0x7fff85507fff libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff85568000 - 0x7fff85584ff7 libsystem_kernel.dylib (2422.1.72) /usr/lib/system/libsystem_kernel.dylib
0x7fff85590000 - 0x7fff855defff libcorecrypto.dylib (161.1) /usr/lib/system/libcorecrypto.dylib
0x7fff85ae6000 - 0x7fff85ae6ff7 libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
0x7fff8682d000 - 0x7fff869daf27 libobjc.A.dylib (551.1) /usr/lib/libobjc.A.dylib
0x7fff86a4f000 - 0x7fff86a56fff libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
0x7fff86df8000 - 0x7fff86ea8ff7 libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff86ea9000 - 0x7fff86eb2ff3 libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
0x7fff86f76000 - 0x7fff86f77ffb libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
0x7fff88720000 - 0x7fff88721ff7 libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff88d92000 - 0x7fff88dc2fff libncurses.5.4.dylib (42) /usr/lib/libncurses.5.4.dylib
0x7fff892ab000 - 0x7fff892b2ff3 libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
0x7fff893a2000 - 0x7fff893d6fff libssl.0.9.8.dylib (50) /usr/lib/libssl.0.9.8.dylib
0x7fff893fe000 - 0x7fff893fefff com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8964c000 - 0x7fff89a2dffe libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff89ac6000 - 0x7fff89d9afc7 com.apple.vImage (7.0 - 7.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8a4f8000 - 0x7fff8a51fff7 libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
0x7fff8a6b2000 - 0x7fff8a6bcfff libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
0x7fff8a78f000 - 0x7fff8a79ffff libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
0x7fff8a907000 - 0x7fff8a92effb libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
0x7fff8b0c4000 - 0x7fff8b0c8fff libsystem_stats.dylib (93.1.26) /usr/lib/system/libsystem_stats.dylib
0x7fff8b821000 - 0x7fff8b863ff7 libauto.dylib (185.5) /usr/lib/libauto.dylib
0x7fff8bd2f000 - 0x7fff8bd49fff libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
0x7fff8bd4a000 - 0x7fff8bd51ff7 libsystem_pthread.dylib (53.1.4) /usr/lib/system/libsystem_pthread.dylib
0x7fff8c92a000 - 0x7fff8c92eff7 libcache.dylib (62) /usr/lib/system/libcache.dylib
0x7fff8cac1000 - 0x7fff8cca6ff7 com.apple.CoreFoundation (6.9 - 855.11) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff8cca7000 - 0x7fff8cd86fff libcrypto.0.9.8.dylib (50) /usr/lib/libcrypto.0.9.8.dylib
0x7fff8ce15000 - 0x7fff8ce1cff7 liblaunch.dylib (842.1.4) /usr/lib/system/liblaunch.dylib
0x7fff8ce1d000 - 0x7fff8ce20ff7 libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
0x7fff8d7e7000 - 0x7fff8d7e7fff com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff8dab8000 - 0x7fff8dab9fff libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
0x7fff8e8db000 - 0x7fff8e8e0ff7 libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 2382784
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=95.6M resident=25.9M(27%) swapped_out_or_unallocated=69.7M(73%)
Writable regions: Total=98.5M written=59.2M(60%) resident=66.6M(68%) swapped_out=0K(0%) unallocated=31.9M(32%)
REGION TYPE VIRTUAL
=========== =======
Kernel Alloc Once 4K
MALLOC 88.9M
MALLOC (admin) 16K
MALLOC_LARGE (reserved) 768K reserved VM address space (unallocated)
STACK GUARD 56.0M
Stack 8192K
VM_ALLOCATE 16K
__DATA 2648K
__LINKEDIT 68.5M
__TEXT 27.1M
__UNICODE 544K
shared memory 4K
=========== =======
TOTAL 252.5M
TOTAL, minus reserved VM space 251.7M
Model: MacBookPro10,1, BootROM MBP101.00EE.B03, 4 processors, Intel Core i7, 2.7 GHz, 16 GB, SMC 2.3f36
Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (5.106.98.100.22)
Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM768E, 751.28 GB
USB Device: Hub
USB Device: FaceTime HD Camera (Built-in)
USB Device: Hub
USB Device: Hub
USB Device: Apple Internal Keyboard / Trackpad
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 23.4
The text was updated successfully, but these errors were encountered: