Skip to content
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

Pepper camera subscription segmentation error: Process finished with exit code 139 (interrupted by signal 11:SIGSEGV) #4632

Open
transxposon opened this issue Jun 26, 2024 · 3 comments

Comments

@transxposon
Copy link

I have been trying to get the information from Pepper's camera on qibullet (tried both bottom and top cameras).
My computer is a Macbook Pro with M2 chip.

the versions of libraries i am using are below

Name: pybullet
Version: 3.2.6
Name: qibullet
Version: 1.4.6
Name: numpy
Version: 2.0.0
Name: pip
Version: 24.1
Name: opencv-python
Version: 4.10.0.84

the simplified version of the code I tried to run is here.


import pybullet as p
import pybullet_data
from qibullet import SimulationManager, PepperVirtual

def main():
    # Connect to the physics server
    client = p.connect(p.GUI)
    p.setAdditionalSearchPath(pybullet_data.getDataPath())
    p.setGravity(0, 0, -9.81)
    print("Connected to PyBullet.")

    # Initialize the Simulation Manager
    simulation_manager = SimulationManager()
    print("Simulation Manager initialized.")

    # Spawn Pepper robot
    pepper = simulation_manager.spawnPepper(client, translation=[0, 0, 0], quaternion=[0, 0, 0, 1])
    print("Pepper robot spawned.")

    # Subscribe to Pepper's camera
    try:
        print("Subscribing to Pepper's camera...")
        pepper_camera = pepper.subscribeCamera(PepperVirtual.ID_CAMERA_BOTTOM)
        print("Successfully subscribed to Pepper's camera.")
    except Exception as e:
        print("Error subscribing to Pepper's camera:", e)
        return

    # Check if the camera subscription is working
    try:
        print("Getting camera frame...")
        img = pepper.getCameraFrame(pepper_camera)
        if img is None:
            print("Camera frame is None")
        else:
            print("Camera frame acquired successfully")
    except Exception as e:
        print("Error getting camera frame:", e)
        return

    # Unsubscribe from the camera
    try:
        print("Unsubscribing from Pepper's camera...")
        pepper.unsubscribeCamera(pepper_camera)
        print("Unsubscribed from Pepper's camera.")
    except Exception as e:
        print("Error unsubscribing from Pepper's camera:", e)

    p.disconnect()

if __name__ == "__main__":
    main()

and what I see on the terminal after Pepper is built on OPENGL3+ window and shuts down immediately.

Version = 4.1 Metal - 83
Vendor = Apple
Renderer = Apple M2 Pro
b3Printf: Selected demo: Physics Server
startThreads creating 1 threads.
starting thread 0
started thread 0
MotionThreadFunc thread started
Connected to PyBullet.
Simulation Manager initialized.
Pepper robot spawned.
Subscribing to Pepper's camera...

Process finished with exit code 139 (interrupted by signal 11:SIGSEGV)

I am able to extract information from Pepper's camera when I am using UTM Virtual Machine Linux, however, since I also need to use PsychoPy which is not supported properly on Unix and slows my computer considerably, I have to switch back to my Mac. Has anyone been able to solve this segmentation issue? Is it incompatibility, do I throw an M2 Mac to garbage?

Thanks!!

@transxposon
Copy link
Author

this is my system report


Translated Report (Full Report Below)

Process: Python [990]
Path: /Library/Frameworks/Python.framework/Versions/3.10/Resources/Python.app/Contents/MacOS/Python
Identifier: org.python.python
Version: 3.10.11 (3.10.11)
Code Type: ARM-64 (Native)
Parent Process: pycharm [446]
Responsible: pycharm [446]
User ID: 501

Date/Time: 2024-06-26 19:33:04.7617 +0200
OS Version: macOS 13.0 (22A8380)
Report Version: 12
Anonymous UUID: ED424680-F225-B66C-75C4-E10730CD2F0F

Time Awake Since Boot: 250 seconds

System Integrity Protection: enabled

Crashed Thread: 26

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000248
Exception Codes: 0x0000000000000001, 0x0000000000000248

Termination Reason: Namespace SIGNAL, Code 11 Segmentation fault: 11
Terminating Process: exc handler [990]

VM Region Info: 0x248 is not in any region. Bytes before following region: 105553518919096
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
UNUSED SPACE AT START
--->
MALLOC_NANO (reserved) 600018000000-600020000000 [128.0M] rw-/rwx SM=NUL ...(unallocated)

Thread 0:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 _pthread_cond_wait + 1232
2 Python 0x105642cf0 take_gil + 516
3 Python 0x10564fe64 _PyEval_EvalFrameDefault + 42704
4 Python 0x105643f28 _PyEval_Vector + 360
5 Python 0x105653140 call_function + 132
6 Python 0x10564a47c _PyEval_EvalFrameDefault + 19688
7 Python 0x105643f28 _PyEval_Vector + 360
8 Python 0x105653140 call_function + 132
9 Python 0x10564a47c _PyEval_EvalFrameDefault + 19688
10 Python 0x105643f28 _PyEval_Vector + 360
11 Python 0x105520bc0 method_vectorcall + 124
12 Python 0x105653140 call_function + 132
13 Python 0x105649be0 _PyEval_EvalFrameDefault + 17484
14 Python 0x105643f28 _PyEval_Vector + 360
15 Python 0x105653140 call_function + 132
16 Python 0x10564a47c _PyEval_EvalFrameDefault + 19688
17 Python 0x105643f28 _PyEval_Vector + 360
18 Python 0x105653140 call_function + 132
19 Python 0x105649b5c _PyEval_EvalFrameDefault + 17352
20 Python 0x105643f28 _PyEval_Vector + 360
21 Python 0x1056aec54 pyrun_file + 308
22 Python 0x1056ae398 _PyRun_SimpleFileObject + 336
23 Python 0x1056ad9e4 _PyRun_AnyFileObject + 216
24 Python 0x1056d9dd0 pymain_run_file_obj + 180
25 Python 0x1056d9470 pymain_run_file + 72
26 Python 0x1056d8a58 pymain_run_python + 300
27 Python 0x1056d88ec Py_RunMain + 24
28 Python 0x1056d9f78 pymain_main + 56
29 Python 0x1056da23c Py_BytesMain + 40
30 dyld 0x1a9157e50 start + 2544

Thread 1:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 2:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 3:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 4:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 5:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 6:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 7:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 8:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 9:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 10:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 11:
0 libsystem_kernel.dylib 0x1a94465e4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x1a9482638 pthread_cond_wait + 1232
2 libscipy_openblas64
.dylib 0x10882a2b8 blas_thread_server + 360
3 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
4 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 12:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 13:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 14:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 15:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 16:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 17:
0 pybullet.cpython-310-darwin.so 0x106bf5f54 PhysicsServerCommandProcessor::processRequestActualStateCommand(SharedMemoryCommand const&, SharedMemoryStatus&, char*, int) + 0
1 pybullet.cpython-310-darwin.so 0x106c0c454 PhysicsServerCommandProcessor::processCommand(SharedMemoryCommand const&, SharedMemoryStatus&, char*, int) + 380
2 pybullet.cpython-310-darwin.so 0x106c3c414 PhysicsServerSharedMemory::processClientCommands() + 356
3 pybullet.cpython-310-darwin.so 0x106c31100 MotionThreadFunc(void*, void*) + 4508
4 pybullet.cpython-310-darwin.so 0x106b9936c threadFunction(void*) + 144
5 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
6 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 18:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x1a9442df0 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x1a94548d8 mach_msg2_internal + 80
2 libsystem_kernel.dylib 0x1a944b638 mach_msg_overwrite + 540
3 libsystem_kernel.dylib 0x1a944316c mach_msg + 24
4 CoreFoundation 0x1a9561bdc __CFRunLoopServiceMachPort + 160
5 CoreFoundation 0x1a95604c8 __CFRunLoopRun + 1232
6 CoreFoundation 0x1a955f8a4 CFRunLoopRunSpecific + 612
7 AppKit 0x1ac8e2248 _NSEventThread + 172
8 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
9 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 19:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 20:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 21:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 22:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 23:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 24:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 25:
0 libsystem_pthread.dylib 0x1a947ce18 start_wqthread + 0

Thread 26 Crashed:
0 libGL.dylib 0x1f79f60a0 glEnable + 12
1 pybullet.cpython-310-darwin.so 0x106b9cb38 GLInstancingRenderer::init() + 52
2 pybullet.cpython-310-darwin.so 0x106b58a08 OpenGLExampleBrowser::update(float) + 136
3 pybullet.cpython-310-darwin.so 0x106c40398 InProcessPhysicsClientSharedMemoryMainThread::processServerStatus() + 76
4 pybullet.cpython-310-darwin.so 0x106bbee68 b3SubmitClientCommandAndWaitStatus + 252
5 pybullet.cpython-310-darwin.so 0x106d1c534 pybullet_getLinkState + 228
6 Python 0x10558432c cfunction_call + 60
7 Python 0x10551ccf8 _PyObject_MakeTpCall + 136
8 Python 0x105653238 call_function + 380
9 Python 0x105649be0 _PyEval_EvalFrameDefault + 17484
10 Python 0x105643f28 _PyEval_Vector + 360
11 Python 0x105653140 call_function + 132
12 Python 0x10564a47c _PyEval_EvalFrameDefault + 19688
13 Python 0x105643f28 _PyEval_Vector + 360
14 Python 0x105520cc8 method_vectorcall + 388
15 Python 0x105645d54 _PyEval_EvalFrameDefault + 1472
16 Python 0x105643f28 _PyEval_Vector + 360
17 Python 0x105653140 call_function + 132
18 Python 0x10564a47c _PyEval_EvalFrameDefault + 19688
19 Python 0x105643f28 _PyEval_Vector + 360
20 Python 0x105653140 call_function + 132
21 Python 0x10564a47c _PyEval_EvalFrameDefault + 19688
22 Python 0x105643f28 _PyEval_Vector + 360
23 Python 0x105520cc8 method_vectorcall + 388
24 Python 0x1057412d4 thread_run + 172
25 Python 0x1056c41d8 pythread_wrapper + 48
26 libsystem_pthread.dylib 0x1a948206c _pthread_start + 148
27 libsystem_pthread.dylib 0x1a947ce2c thread_start + 8

Thread 26 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000b71 x1: 0x0000000000000b71 x2: 0x0000000000000000 x3: 0x0000000fffffc088
x4: 0x0000000000000009 x5: 0x0000000000002900 x6: 0x0000600003c72900 x7: 0x0000000293325828
x8: 0x0000000000000000 x9: 0xd42e84ad47f8003b x10: 0x0000000000000000 x11: 0x0000000000000002
x12: 0x0000000000000002 x13: 0x0000000000000000 x14: 0xc480000106fdcd7f x15: 0x0000000106fdcd78
x16: 0x00000001a947caf0 x17: 0x0000000209a21998 x18: 0x0000000000000000 x19: 0x0000600001d5e210
x20: 0x0000600003e7f198 x21: 0x0000000129c50008 x22: 0x0000000104e663c0 x23: 0x000000010712f000
x24: 0x000000010712f000 x25: 0x0000000130fb9948 x26: 0x0000000130fb9938 x27: 0x00000001055842f0
x28: 0x0000000000000002 fp: 0x0000000293325670 lr: 0x0000000106b9cb38
sp: 0x0000000293325620 pc: 0x00000001f79f60a0 cpsr: 0x60001000
far: 0x0000000000000248 esr: 0x92000006 (Data Abort) byte read Translation fault

Binary Images:
0x1a9442000 - 0x1a947affb libsystem_kernel.dylib () /usr/lib/system/libsystem_kernel.dylib
0x1a947b000 - 0x1a9487ffb libsystem_pthread.dylib (
) <1712c255-a808-3763-b5e4-8c3faeb3dd68> /usr/lib/system/libsystem_pthread.dylib
0x1054a0000 - 0x1057fffff org.python.python (3.10.11, (c) 2001-2023 Python Software Foundation.) <3fe90b0d-d091-3b4e-ac7c-15d5cf743818> /Library/Frameworks/Python.framework/Versions/3.10/Python
0x1a9152000 - 0x1a91dc4b3 dyld () /usr/lib/dyld
0x1086bc000 - 0x1097fbfff libscipy_openblas64_.dylib (
) <9b56f548-f50b-3abe-ac97-59ace88605f2> /Users/USER//libscipy_openblas64_.dylib
0x106b04000 - 0x106fa7fff pybullet.cpython-310-darwin.so (
) <6000353b-cf32-39e5-9a3d-9d3940e2805f> /Users/USER//pybullet.cpython-310-darwin.so
0x1a94e0000 - 0x1a99b7fff com.apple.CoreFoundation (6.9) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x1ac77f000 - 0x1ad686fff com.apple.AppKit (6.9) <47f20729-e102-3a52-a31d-8be7277f85fb> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x1f79f5000 - 0x1f79fefff libGL.dylib (
) <0621c674-f53e-3fbb-8255-fdb5f537df28> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???

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

VM Region Summary:
ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)
Writable regions: Total=2.8G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.8G(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 512K 4
Activity Tracing 256K 1
CG backing stores 4864K 4
CG image 96K 5
ColorSync 560K 25
CoreAnimation 144K 8
CoreGraphics 32K 2
CoreUI image data 1168K 8
Foundation 16K 1
Kernel Alloc Once 32K 1
MALLOC 517.4M 73
MALLOC guard page 192K 11
MALLOC_MEDIUM (reserved) 1.4G 12 reserved VM address space (unallocated)
MALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated)
OpenGL GLSL 256K 3
STACK GUARD 432K 27
Stack 45.3M 27
VM_ALLOCATE 178.2M 100
VM_ALLOCATE (reserved) 352.0M 3 reserved VM address space (unallocated)
__AUTH 651K 167
__AUTH_CONST 11.3M 320
__CTF 756 1
__DATA 4957K 332
__DATA_CONST 15.1M 345
__DATA_DIRTY 718K 112
__FONT_DATA 2352 1
__GLSLBUILTINS 5174K 1
__LINKEDIT 769.1M 25
__OBJC_CONST 1347K 141
__OBJC_RO 65.1M 1
__OBJC_RW 1981K 1
__TEXT 258.8M 358
dyld private memory 256K 1
mapped file 187.4M 27
shared memory 912K 17
=========== ======= =======
TOTAL 4.1G 2166
TOTAL, minus reserved VM space 2.0G 2166


Full Report

{"app_name":"Python","timestamp":"2024-06-26 19:33:06.00 +0200","app_version":"3.10.11","slice_uuid":"ef677878-e7fb-329d-bb8b-0f651210d52b","build_version":"3.10.11","platform":1,"bundleID":"org.python.python","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 13.0 (22A8380)","roots_installed":0,"name":"Python","incident_id":"0BD1ACB1-8713-40E4-B676-CE12681DC262"}
{
"uptime" : 250,
"procRole" : "Foreground",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "Mac14,9",
"coalitionID" : 493,
"osVersion" : {
"train" : "macOS 13.0",
"build" : "22A8380",
"releaseType" : "User"
},
"captureTime" : "2024-06-26 19:33:04.7617 +0200",
"incident" : "0BD1ACB1-8713-40E4-B676-CE12681DC262",
"pid" : 990,
"translated" : false,
"cpuType" : "ARM-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2024-06-26 19:32:47.1392 +0200",
"procStartAbsTime" : 5604156861,
"procExitAbsTime" : 6027040013,
"procName" : "Python",
"procPath" : "/Library/Frameworks/Python.framework/Versions/3.10/Resources/Python.app/Contents/MacOS/Python",
"bundleInfo" : {"CFBundleShortVersionString":"3.10.11","CFBundleVersion":"3.10.11","CFBundleIdentifier":"org.python.python"},
"storeInfo" : {"deviceIdentifierForVendor":"6D825EAD-6C6A-55A5-BF5B-AE12F2D610D1","thirdParty":true},
"parentProc" : "pycharm",
"parentPid" : 446,
"coalitionName" : "com.jetbrains.pycharm.ce",
"crashReporterKey" : "ED424680-F225-B66C-75C4-E10730CD2F0F",
"responsiblePid" : 446,
"responsibleProc" : "pycharm",
"sip" : "enabled",
"vmRegionInfo" : "0x248 is not in any region. Bytes before following region: 105553518919096\n REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n MALLOC_NANO (reserved) 600018000000-600020000000 [128.0M] rw-/rwx SM=NUL ...(unallocated)",
"exception" : {"codes":"0x0000000000000001, 0x0000000000000248","rawCodes":[1,584],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000248"},
"termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":990},
"vmregioninfo" : "0x248 is not in any region. Bytes before following region: 105553518919096\n REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n MALLOC_NANO (reserved) 600018000000-600020000000 [128.0M] rw-/rwx SM=NUL ...(unallocated)",
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"faultingThread" : 26,
"threads" : [{"id":12604,"queue":"com.apple.main-thread","frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1715440,"symbol":"take_gil","symbolLocation":516,"imageIndex":2},{"imageOffset":1769060,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":42704,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":1782080,"symbol":"call_function","symbolLocation":132,"imageIndex":2},{"imageOffset":1746044,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":19688,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":1782080,"symbol":"call_function","symbolLocation":132,"imageIndex":2},{"imageOffset":1746044,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":19688,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":527296,"symbol":"method_vectorcall","symbolLocation":124,"imageIndex":2},{"imageOffset":1782080,"symbol":"call_function","symbolLocation":132,"imageIndex":2},{"imageOffset":1743840,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":17484,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":1782080,"symbol":"call_function","symbolLocation":132,"imageIndex":2},{"imageOffset":1746044,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":19688,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":1782080,"symbol":"call_function","symbolLocation":132,"imageIndex":2},{"imageOffset":1743708,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":17352,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":2157652,"symbol":"pyrun_file","symbolLocation":308,"imageIndex":2},{"imageOffset":2155416,"symbol":"_PyRun_SimpleFileObject","symbolLocation":336,"imageIndex":2},{"imageOffset":2152932,"symbol":"_PyRun_AnyFileObject","symbolLocation":216,"imageIndex":2},{"imageOffset":2334160,"symbol":"pymain_run_file_obj","symbolLocation":180,"imageIndex":2},{"imageOffset":2331760,"symbol":"pymain_run_file","symbolLocation":72,"imageIndex":2},{"imageOffset":2329176,"symbol":"pymain_run_python","symbolLocation":300,"imageIndex":2},{"imageOffset":2328812,"symbol":"Py_RunMain","symbolLocation":24,"imageIndex":2},{"imageOffset":2334584,"symbol":"pymain_main","symbolLocation":56,"imageIndex":2},{"imageOffset":2335292,"symbol":"Py_BytesMain","symbolLocation":40,"imageIndex":2},{"imageOffset":24144,"symbol":"start","symbolLocation":2544,"imageIndex":3}]},{"id":12611,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12612,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12613,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12614,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12615,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12616,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12617,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12618,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12619,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12620,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12621,"frames":[{"imageOffset":17892,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":0},{"imageOffset":30264,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":1},{"imageOffset":1499832,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":4},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12635,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12674,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12675,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12678,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12681,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12682,"frames":[{"imageOffset":991060,"symbol":"PhysicsServerCommandProcessor::processRequestActualStateCommand(SharedMemoryCommand const&, SharedMemoryStatus&, char*, int)","symbolLocation":0,"imageIndex":5},{"imageOffset":1082452,"symbol":"PhysicsServerCommandProcessor::processCommand(SharedMemoryCommand const&, SharedMemoryStatus&, char*, int)","symbolLocation":380,"imageIndex":5},{"imageOffset":1278996,"symbol":"PhysicsServerSharedMemory::processClientCommands()","symbolLocation":356,"imageIndex":5},{"imageOffset":1233152,"symbol":"MotionThreadFunc(void*, void*)","symbolLocation":4508,"imageIndex":5},{"imageOffset":611180,"symbol":"threadFunction(void*)","symbolLocation":144,"imageIndex":5},{"imageOffset":28780,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12686,"name":"com.apple.NSEventThread","frames":[{"imageOffset":3568,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":0},{"imageOffset":75992,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":0},{"imageOffset":38456,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":0},{"imageOffset":4460,"symbol":"mach_msg","symbolLocation":24,"imageIndex":0},{"imageOffset":531420,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":6},{"imageOffset":525512,"symbol":"__CFRunLoopRun","symbolLocation":1232,"imageIndex":6},{"imageOffset":522404,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":6},{"imageOffset":1454664,"symbol":"_NSEventThread","symbolLocation":172,"imageIndex":7},{"imageOffset":28780,"symbol":"pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]},{"id":12840,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12841,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12842,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12843,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12844,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12845,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":12846,"frames":[{"imageOffset":7704,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"triggered":true,"id":12849,"threadState":{"x":[{"value":2929},{"value":2929},{"value":0},{"value":68719460488},{"value":9},{"value":10496},{"value":105553179650304},{"value":11059484712},{"value":0},{"value":15289303664741056571},{"value":0},{"value":2},{"value":2},{"value":0},{"value":14159317232865103231},{"value":4412263800,"symbolLocation":0,"symbol":"OBJC_CLASS$_TestView"},{"value":7135021808,"symbolLocation":0,"symbol":"pthread_mutex_unlock"},{"value":8751552920},{"value":0},{"value":105553147060752},{"value":105553181798808},{"value":4995743752},{"value":4377174976},{"value":4413648896,"symbolLocation":522936,"symbol":"gStartTimes"},{"value":4413648896,"symbolLocation":522936,"symbol":"gStartTimes"},{"value":5116762440},{"value":5116762424},{"value":4384637680,"symbolLocation":0,"symbol":"cfunction_call"},{"value":2}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4407806776},"cpsr":{"value":1610616832},"fp":{"value":11059484272},"sp":{"value":11059484192},"esr":{"value":2449473542,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":8449384608,"matchesCrashFrame":1},"far":{"value":584}},"frames":[{"imageOffset":4256,"symbol":"glEnable","symbolLocation":12,"imageIndex":8},{"imageOffset":625464,"symbol":"GLInstancingRenderer::init()","symbolLocation":52,"imageIndex":5},{"imageOffset":346632,"symbol":"OpenGLExampleBrowser::update(float)","symbolLocation":136,"imageIndex":5},{"imageOffset":1295256,"symbol":"InProcessPhysicsClientSharedMemoryMainThread::processServerStatus()","symbolLocation":76,"imageIndex":5},{"imageOffset":765544,"symbol":"b3SubmitClientCommandAndWaitStatus","symbolLocation":252,"imageIndex":5},{"imageOffset":2196788,"symbol":"pybullet_getLinkState","symbolLocation":228,"imageIndex":5},{"imageOffset":934700,"symbol":"cfunction_call","symbolLocation":60,"imageIndex":2},{"imageOffset":511224,"symbol":"_PyObject_MakeTpCall","symbolLocation":136,"imageIndex":2},{"imageOffset":1782328,"symbol":"call_function","symbolLocation":380,"imageIndex":2},{"imageOffset":1743840,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":17484,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":1782080,"symbol":"call_function","symbolLocation":132,"imageIndex":2},{"imageOffset":1746044,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":19688,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":527560,"symbol":"method_vectorcall","symbolLocation":388,"imageIndex":2},{"imageOffset":1727828,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":1472,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":1782080,"symbol":"call_function","symbolLocation":132,"imageIndex":2},{"imageOffset":1746044,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":19688,"imageIndex":2},{"imageOffset":1720104,"symbol":"_PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":1782080,"symbol":"call_function","symbolLocation":132,"imageIndex":2},{"imageOffset":1746044,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":19688,"imageIndex":2},{"imageOffset":1720104,"symbol":"PyEval_Vector","symbolLocation":360,"imageIndex":2},{"imageOffset":527560,"symbol":"method_vectorcall","symbolLocation":388,"imageIndex":2},{"imageOffset":2757332,"symbol":"thread_run","symbolLocation":172,"imageIndex":2},{"imageOffset":2245080,"symbol":"pythread_wrapper","symbolLocation":48,"imageIndex":2},{"imageOffset":28780,"symbol":"pthread_start","symbolLocation":148,"imageIndex":1},{"imageOffset":7724,"symbol":"thread_start","symbolLocation":8,"imageIndex":1}]}],
"usedImages" : [
{
"source" : "P",
"arch" : "arm64e",
"base" : 7134781440,
"size" : 233468,
"uuid" : "cc8c9730-0055-3658-bb1c-1b49a5eadccd",
"path" : "/usr/lib/system/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 7135014912,
"size" : 53244,
"uuid" : "1712c255-a808-3763-b5e4-8c3faeb3dd68",
"path" : "/usr/lib/system/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4383703040,
"CFBundleShortVersionString" : "3.10.11, (c) 2001-2023 Python Software Foundation.",
"CFBundleIdentifier" : "org.python.python",
"size" : 3538944,
"uuid" : "3fe90b0d-d091-3b4e-ac7c-15d5cf743818",
"path" : "/Library/Frameworks/Python.framework/Versions/3.10/Python",
"name" : "Python",
"CFBundleVersion" : "3.10.11"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 7131701248,
"size" : 566452,
"uuid" : "b7142778-f6ba-31ca-820c-34b24d90f149",
"path" : "/usr/lib/dyld",
"name" : "dyld"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4436246528,
"size" : 18087936,
"uuid" : "9b56f548-f50b-3abe-ac97-59ace88605f2",
"path" : "/Users/USER/*/libscipy_openblas64
.dylib",
"name" : "libscipy_openblas64
.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4407181312,
"size" : 4866048,
"uuid" : "6000353b-cf32-39e5-9a3d-9d3940e2805f",
"path" : "/Users/USER/*/pybullet.cpython-310-darwin.so",
"name" : "pybullet.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 7135428608,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 5079040,
"uuid" : "da41d167-77ad-3bee-8a4c-ccc1399ee15e",
"path" : "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "1953.1"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 7188508672,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.AppKit",
"size" : 15761408,
"uuid" : "47f20729-e102-3a52-a31d-8be7277f85fb",
"path" : "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit",
"name" : "AppKit",
"CFBundleVersion" : "2299"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 8449380352,
"size" : 40960,
"uuid" : "0621c674-f53e-3fbb-8255-fdb5f537df28",
"path" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib",
"name" : "libGL.dylib"
},
{
"size" : 0,
"source" : "A",
"base" : 0,
"uuid" : "00000000-0000-0000-0000-000000000000"
}
],
"sharedCache" : {
"base" : 7131054080,
"size" : 3411476480,
"uuid" : "4028b886-0785-32de-af1f-eca0b8899374"
},
"vmSummary" : "ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)\nWritable regions: Total=2.8G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.8G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 512K 4 \nActivity Tracing 256K 1 \nCG backing stores 4864K 4 \nCG image 96K 5 \nColorSync 560K 25 \nCoreAnimation 144K 8 \nCoreGraphics 32K 2 \nCoreUI image data 1168K 8 \nFoundation 16K 1 \nKernel Alloc Once 32K 1 \nMALLOC 517.4M 73 \nMALLOC guard page 192K 11 \nMALLOC_MEDIUM (reserved) 1.4G 12 reserved VM address space (unallocated)\nMALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated)\nOpenGL GLSL 256K 3 \nSTACK GUARD 432K 27 \nStack 45.3M 27 \nVM_ALLOCATE 178.2M 100 \nVM_ALLOCATE (reserved) 352.0M 3 reserved VM address space (unallocated)\n__AUTH 651K 167 \n__AUTH_CONST 11.3M 320 \n__CTF 756 1 \n__DATA 4957K 332 \n__DATA_CONST 15.1M 345 \n__DATA_DIRTY 718K 112 \n__FONT_DATA 2352 1 \n__GLSLBUILTINS 5174K 1 \n__LINKEDIT 769.1M 25 \n__OBJC_CONST 1347K 141 \n__OBJC_RO 65.1M 1 \n__OBJC_RW 1981K 1 \n__TEXT 258.8M 358 \ndyld private memory 256K 1 \nmapped file 187.4M 27 \nshared memory 912K 17 \n=========== ======= ======= \nTOTAL 4.1G 2166 \nTOTAL, minus reserved VM space 2.0G 2166 \n",
"legacyInfo" : {
"threadTriggered" : {

}
},
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "645c2d2f9e69a025b0a37e29",
"factorPackIds" : {

  },
  "deploymentId" : 240000003
},
{
  "rolloutId" : "60da5e84ab0ca017dace9abf",
  "factorPackIds" : {

  },
  "deploymentId" : 240000008
}

],
"experiments" : [
{
"treatmentId" : "3dff9c91-a8fb-424e-a656-c8d6e6037574",
"experimentId" : "662152ede2d11d1408c4db33",
"deploymentId" : 400000010
},
{
"treatmentId" : "45f4e2a5-551b-4bc2-a2dc-19c244dda8f8",
"experimentId" : "6643969b3099cf28e049862f",
"deploymentId" : 400000003
}
]
}
}

Model: Mac14,9, BootROM 8419.41.10, proc 12:8:4 processors, 16 GB, SMC
Graphics: Apple M2 Pro, Apple M2 Pro, Built-In
Display: Color LCD, 3024 x 1964 Retina, Main, MirrorOff, Online
Memory Module: LPDDR5, Micron
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4388), wl0: Oct 22 2022 21:32:09 version 22.27.1.2.40.50.74 FWID 01-a4d78d2a
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: USB31Bus
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.

@transxposon
Copy link
Author

the issue i encounter now with using intel python and pycharm with rosetta 2.


Translated Report (Full Report Below)

Incident Identifier: 2825C48D-A80C-4F6A-B192-F811C917EEAC
CrashReporter Key: ED424680-F225-B66C-75C4-E10730CD2F0F
Hardware Model: Mac14,9
Process: Python [4078]
Path: /usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/Resources/Python.app/Contents/MacOS/Python
Identifier: org.python.python
Version: 3.12.4 (3.12.4)
Code Type: X86-64 (Native)
Role: Unspecified
Parent Process: Exited process [4079]
Coalition: com.apple.Terminal [637]

Date/Time: 2024-08-01 14:23:49.2310 +0200
Launch Time: 2024-08-01 14:23:45.5055 +0200
OS Version: macOS 13.0 (22A8380)
Release Type: User
Report Version: 104

Exception Type: EXC_CRASH (SIGTRAP)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Highlighted by Thread: 0

Backtrace not available

No thread state (register information) available

Binary Images:
Binary images description not available

Error Formulating Crash Report:
dyld_process_info_create failed with 30
dyld_process_snapshot_get_shared_cache failed
Failed to create CSSymbolicatorRef - corpse still valid ¯_(ツ)

thread_get_state(PAGEIN) returned 0x10000003: (ipc/send) invalid destination port
thread_get_state(EXCEPTION) returned 0x10000003: (ipc/send) invalid destination port
thread_get_state(FLAVOR) returned 0x10000003: (ipc/send) invalid destination port

EOF


Full Report

{"app_name":"Python","timestamp":"2024-08-01 14:23:52.00 +0200","app_version":"3.12.4","slice_uuid":"3079272b-e686-3efd-8d24-c01f62fdb7c2","build_version":"3.12.4","platform":0,"bundleID":"org.python.python","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 13.0 (22A8380)","roots_installed":0,"name":"Python","incident_id":"2825C48D-A80C-4F6A-B192-F811C917EEAC"}
{
"uptime" : 6500,
"procRole" : "Unspecified",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "Mac14,9",
"coalitionID" : 637,
"osVersion" : {
"train" : "macOS 13.0",
"build" : "22A8380",
"releaseType" : "User"
},
"captureTime" : "2024-08-01 14:23:49.2310 +0200",
"incident" : "2825C48D-A80C-4F6A-B192-F811C917EEAC",
"pid" : 4078,
"translated" : true,
"cpuType" : "X86-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2024-08-01 14:23:45.5055 +0200",
"procStartAbsTime" : 155932948800,
"procExitAbsTime" : 156022340174,
"procName" : "Python",
"procPath" : "/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/Resources/Python.app/Contents/MacOS/Python",
"bundleInfo" : {"CFBundleShortVersionString":"3.12.4","CFBundleVersion":"3.12.4","CFBundleIdentifier":"org.python.python"},
"storeInfo" : {"deviceIdentifierForVendor":"8841E5F0-8946-5951-AC49-65FA40D5E273","thirdParty":true},
"parentProc" : "Exited process",
"parentPid" : 4079,
"coalitionName" : "com.apple.Terminal",
"crashReporterKey" : "ED424680-F225-B66C-75C4-E10730CD2F0F",
"wakeTime" : 2505,
"sleepWakeUUID" : "CE7EF610-D749-45AD-8B59-F1DB964B42E4",
"sip" : "enabled",
"exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGTRAP"},
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":2,"task_for_pid":2},"targeted":{"thread_create":0,"thread_set_state":1,"task_for_pid":1},"warnings":1},
"legacyInfo" : {
"threadHighlighted" : 0
},
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "645c2d2f9e69a025b0a37e29",
"factorPackIds" : {

  },
  "deploymentId" : 240000003
},
{
  "rolloutId" : "60da5e84ab0ca017dace9abf",
  "factorPackIds" : {

  },
  "deploymentId" : 240000008
}

],
"experiments" : [
{
"treatmentId" : "c47ab4cc-c9c3-4b5d-a87c-e2433ce02597",
"experimentId" : "6639bc6ba73d460582162323",
"deploymentId" : 400000006
},
{
"treatmentId" : "45f4e2a5-551b-4bc2-a2dc-19c244dda8f8",
"experimentId" : "6643969b3099cf28e049862f",
"deploymentId" : 400000007
}
]
},
"reportNotes" : [
"dyld_process_info_create failed with 30",
"dyld_process_snapshot_get_shared_cache failed",
"Failed to create CSSymbolicatorRef - corpse still valid ¯\
(ツ)_/¯",
"thread_get_state(PAGEIN) returned 0x10000003: (ipc/send) invalid destination port",
"thread_get_state(EXCEPTION) returned 0x10000003: (ipc/send) invalid destination port",
"thread_get_state(FLAVOR) returned 0x10000003: (ipc/send) invalid destination port"
]
}

Model: Mac14,9, BootROM 8419.41.10, proc 12:8:4 processors, 16 GB, SMC
Graphics: Apple M2 Pro, Apple M2 Pro, Built-In
Display: Color LCD, 3024 x 1964 Retina, Main, MirrorOff, Online
Memory Module: LPDDR5, Micron
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4388), wl0: Oct 22 2022 21:32:09 version 22.27.1.2.40.50.74 FWID 01-a4d78d2a
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: USB31Bus
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.

@transxposon
Copy link
Author

this is the full report from the new segmentation error.


Translated Report (Full Report Below)

Process: Python [2279]
Path: /Library/Frameworks/Python.framework/Versions/3.10/Resources/Python.app/Contents/MacOS/Python
Identifier: org.python.python
Version: 3.10.11 (3.10.11)
Code Type: X86-64 (Translated)
Parent Process: pycharm [1173]
Responsible: pycharm [1173]
User ID: 501

Date/Time: 2024-08-01 14:09:53.6480 +0200
OS Version: macOS 13.0 (22A8380)
Report Version: 12
Anonymous UUID: ED424680-F225-B66C-75C4-E10730CD2F0F

Sleep/Wake UUID: CE7EF610-D749-45AD-8B59-F1DB964B42E4

Time Awake Since Boot: 5600 seconds
Time Since Wake: 1669 seconds

System Integrity Protection: enabled

Notes:
dyld_process_snapshot_create_for_process failed with 5

Crashed Thread: 20

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000248
Exception Codes: 0x0000000000000001, 0x0000000000000248

Termination Reason: Namespace SIGNAL, Code 11 Segmentation fault: 11
Terminating Process: exc handler [2279]

VM Region Info: 0x248 is not in any region. Bytes before following region: 140722983108024
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
UNUSED SPACE AT START
--->
mapped file 7ffc9f6b8000-7ffca7dbc000 [135.0M] r-x/r-x SM=COW ...t_id=cf7714cf

Error Formulating Crash Report:
dyld_process_snapshot_create_for_process failed with 5

Thread 0:: Dispatch queue: com.apple.main-thread
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 Python 0x10bc3de63 take_gil + 579
4 Python 0x10bc4cc50 _PyEval_EvalFrameDefault + 49712
5 Python 0x10bc3f04f _PyEval_Vector + 383
6 Python 0x10bc504df call_function + 175
7 Python 0x10bc467cd _PyEval_EvalFrameDefault + 23981
8 Python 0x10bc3f04f _PyEval_Vector + 383
9 Python 0x10bc504df call_function + 175
10 Python 0x10bc467cd _PyEval_EvalFrameDefault + 23981
11 Python 0x10bc3f04f _PyEval_Vector + 383
12 Python 0x10bb12bdf method_vectorcall + 159
13 Python 0x10bc504df call_function + 175
14 Python 0x10bc4695c _PyEval_EvalFrameDefault + 24380
15 Python 0x10bc3f04f _PyEval_Vector + 383
16 Python 0x10bc504df call_function + 175
17 Python 0x10bc467cd _PyEval_EvalFrameDefault + 23981
18 Python 0x10bc3f04f _PyEval_Vector + 383
19 Python 0x10bc504df call_function + 175
20 Python 0x10bc468a1 _PyEval_EvalFrameDefault + 24193
21 Python 0x10bc3f04f _PyEval_Vector + 383
22 Python 0x10bcb49fd pyrun_file + 333
23 Python 0x10bcb41bd _PyRun_SimpleFileObject + 365
24 Python 0x10bcb380f _PyRun_AnyFileObject + 143
25 Python 0x10bcdf947 pymain_run_file_obj + 199
26 Python 0x10bcdf115 pymain_run_file + 85
27 Python 0x10bcde89e pymain_run_python + 334
28 Python 0x10bcde707 Py_RunMain + 23
29 Python 0x10bcdfae2 pymain_main + 50
30 Python 0x10bcdfd8a Py_BytesMain + 42
31 dyld 0x202bd8310 start + 2432

Thread 1:: com.apple.rosetta.exceptionserver
0 runtime 0x7ff7ffdd0750 0x7ff7ffdcc000 + 18256
1 runtime 0x7ff7ffddc66c 0x7ff7ffdcc000 + 67180
2 runtime 0x7ff7ffdde06c 0x7ff7ffdcc000 + 73836

Thread 2:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 3:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 4:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 5:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 6:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 7:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 8:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 9:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 10:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 11:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 12:
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156731fe __psynch_cvwait + 10
2 libsystem_pthread.dylib 0x7ff8156af7e1 _pthread_cond_wait + 1243
3 libscipy_openblas.dylib 0x14af450ce blas_thread_server + 174
4 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
5 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 13:
0 runtime 0x7ff7ffdee87c 0x7ff7ffdcc000 + 141436

Thread 14:
0 runtime 0x7ff7ffdee87c 0x7ff7ffdcc000 + 141436

Thread 15:
0 runtime 0x7ff7ffdee87c 0x7ff7ffdcc000 + 141436

Thread 16:
0 pybullet.cpython-310-darwin.so 0x12f6abda3 btMultiBody::calcAccelerationDeltasMultiDof(double const*, double*, btAlignedObjectArray&, btAlignedObjectArray&) const + 3859
1 pybullet.cpython-310-darwin.so 0x12f6c6831 btMultiBodyConstraintSolver::setupMultiBodyContactConstraint(btMultiBodySolverConstraint&, btVector3 const&, double const&, btManifoldPoint&, btContactSolverInfo const&, double&, bool, double, double) + 5617
2 pybullet.cpython-310-darwin.so 0x12f6ca72b btMultiBodyConstraintSolver::convertMultiBodyContact(btPersistentManifold*, btContactSolverInfo const&) + 939
3 pybullet.cpython-310-darwin.so 0x12f6cb54b btMultiBodyConstraintSolver::convertContacts(btPersistentManifold**, int, btContactSolverInfo const&) + 59
4 pybullet.cpython-310-darwin.so 0x12f66d440 btSequentialImpulseConstraintSolver::solveGroupCacheFriendlySetup(btCollisionObject**, int, btPersistentManifold**, int, btTypedConstraint**, int, btContactSolverInfo const&, btIDebugDraw*) + 208
5 pybullet.cpython-310-darwin.so 0x12f6c4fd3 btMultiBodyConstraintSolver::solveGroupCacheFriendlySetup(btCollisionObject**, int, btPersistentManifold**, int, btTypedConstraint**, int, btContactSolverInfo const&, btIDebugDraw*) + 1491
6 pybullet.cpython-310-darwin.so 0x12f6cc5d7 btMultiBodyConstraintSolver::solveMultiBodyGroup(btCollisionObject**, int, btPersistentManifold**, int, btTypedConstraint**, int, btMultiBodyConstraint**, int, btContactSolverInfo const&, btIDebugDraw*, btDispatcher*) + 135
7 pybullet.cpython-310-darwin.so 0x12f569dea MultiBodyInplaceSolverIslandCallback::processConstraints(int) + 154
8 pybullet.cpython-310-darwin.so 0x12f5d4d0e btSimulationIslandManager::processIslands(btDispatcher*, btCollisionWorld*, btSimulationIslandManager::IslandCallback*) + 1166
9 pybullet.cpython-310-darwin.so 0x12f6b3f30 btMultiBodyDynamicsWorld::solveConstraints(btContactSolverInfo&) + 48
10 pybullet.cpython-310-darwin.so 0x12f645281 btDiscreteDynamicsWorld::internalSingleStepSimulation(double) + 177
11 pybullet.cpython-310-darwin.so 0x12f5b5358 btSoftMultiBodyDynamicsWorld::internalSingleStepSimulation(double) + 72
12 pybullet.cpython-310-darwin.so 0x12f645181 btDiscreteDynamicsWorld::stepSimulation(double, int, double) + 305
13 pybullet.cpython-310-darwin.so 0x12f3c4919 PhysicsServerCommandProcessor::stepSimulationRealTime(double, b3VRControllerEvent const*, int, b3KeyboardEvent const*, int, b3MouseEvent const*, int) + 2025
14 pybullet.cpython-310-darwin.so 0x12f3f02cf MotionThreadFunc(void*, void*) + 6175
15 pybullet.cpython-310-darwin.so 0x12f3258ea threadFunction(void*) + 106
16 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
17 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 17:
0 runtime 0x7ff7ffdee87c 0x7ff7ffdcc000 + 141436

Thread 18:
0 runtime 0x7ff7ffdee87c 0x7ff7ffdcc000 + 141436

Thread 19:: com.apple.NSEventThread
0 ??? 0x7ff8a493e9a8 ???
1 libsystem_kernel.dylib 0x7ff8156706a2 mach_msg2_trap + 10
2 libsystem_kernel.dylib 0x7ff81567e67d mach_msg2_internal + 82
3 libsystem_kernel.dylib 0x7ff81567771a mach_msg_overwrite + 723
4 libsystem_kernel.dylib 0x7ff815670989 mach_msg + 19
5 CoreFoundation 0x7ff81578a02b __CFRunLoopServiceMachPort + 145
6 CoreFoundation 0x7ff815788a84 __CFRunLoopRun + 1387
7 CoreFoundation 0x7ff815787e9f CFRunLoopRunSpecific + 560
8 AppKit 0x7ff818945696 _NSEventThread + 132
9 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
10 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 20 Crashed:
0 libGL.dylib 0x7ffa2a90c672 glEnable + 15
1 pybullet.cpython-310-darwin.so 0x12f329980 GLInstancingRenderer::init() + 32
2 pybullet.cpython-310-darwin.so 0x12f2c9228 OpenGLExampleBrowser::update(float) + 104
3 pybullet.cpython-310-darwin.so 0x12f4044f6 InProcessPhysicsClientSharedMemoryMainThread::processServerStatus() + 70
4 pybullet.cpython-310-darwin.so 0x12f3543bf b3SubmitClientCommandAndWaitStatus + 223
5 pybullet.cpython-310-darwin.so 0x12f514dae pybullet_getLinkState + 254
6 Python 0x10bb75f04 cfunction_call + 52
7 Python 0x10bb0eb14 _PyObject_MakeTpCall + 132
8 Python 0x10bc505a3 call_function + 371
9 Python 0x10bc4695c _PyEval_EvalFrameDefault + 24380
10 Python 0x10bc3f04f _PyEval_Vector + 383
11 Python 0x10bc504df call_function + 175
12 Python 0x10bc467cd _PyEval_EvalFrameDefault + 23981
13 Python 0x10bc3f04f _PyEval_Vector + 383
14 Python 0x10bb12d21 method_vectorcall + 481
15 Python 0x10bc46fb2 _PyEval_EvalFrameDefault + 26002
16 Python 0x10bc3f04f _PyEval_Vector + 383
17 Python 0x10bc504df call_function + 175
18 Python 0x10bc467cd _PyEval_EvalFrameDefault + 23981
19 Python 0x10bc3f04f _PyEval_Vector + 383
20 Python 0x10bc504df call_function + 175
21 Python 0x10bc467cd _PyEval_EvalFrameDefault + 23981
22 Python 0x10bc3f04f _PyEval_Vector + 383
23 Python 0x10bb12d21 method_vectorcall + 481
24 Python 0x10bd471e6 thread_run + 198
25 Python 0x10bcca0c4 pythread_wrapper + 36
26 libsystem_pthread.dylib 0x7ff8156af259 _pthread_start + 125
27 libsystem_pthread.dylib 0x7ff8156aac7b thread_start + 15

Thread 20 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000600000c4d5e0 rcx: 0x00007ff46a9296d0 rdx: 0x0000000000000000
rdi: 0x0000000000000b71 rsi: 0x0000000000000b71 rbp: 0x00000003086f07f0 rsp: 0x00000003086f07f0
r8: 0x0000000000011396 r9: 0xffffffff00000000 r10: 0x00007ff46a9296c8 r11: 0x000000012f3315f0
r12: 0x0000000000000000 r13: 0x000000016cc95240 r14: 0x0000600002f6d1d0 r15: 0x0000600000c4d5e0
rip: rfl: 0x0000000000000202
tmp0: 0x00000000000000f0 tmp1: 0x00000003086f21d0 tmp2: 0x000000012fe5ede8

Binary Images:
0x0 - 0xffffffffffffffff ??? () <00000000-0000-0000-0000-000000000000> ???
0x7ff81566f000 - 0x7ff8156a8ff7 libsystem_kernel.dylib (
) <0d3afb8e-c4a6-340b-afc6-66e7a88a762a> /usr/lib/system/libsystem_kernel.dylib
0x7ff8156a9000 - 0x7ff8156b4ff7 libsystem_pthread.dylib () /usr/lib/system/libsystem_pthread.dylib
0x10ba8b000 - 0x10be02fff org.python.python (3.10.11, (c) 2001-2023 Python Software Foundation.) <80874ad1-e33e-32fa-9fde-51b4da771420> /Library/Frameworks/Python.framework/Versions/3.10/Python
0x202bd2000 - 0x202c69fff dyld (
) <353fba60-65ea-3ae3-ab42-d22e2bb6d9ef> /usr/lib/dyld
0x7ff7ffdcc000 - 0x7ff7ffdfbfff runtime () /usr/libexec/rosetta/runtime
0x14abf0000 - 0x14eaf3fff libscipy_openblas.dylib (
) /Users/USER//libscipy_openblas.dylib
0x12f25c000 - 0x12f8affff pybullet.cpython-310-darwin.so (
) <75d21849-69a6-376b-9df4-ee578ed3e4f2> /Users/USER//pybullet.cpython-310-darwin.so
0x7ff81570b000 - 0x7ff815ba2fff com.apple.CoreFoundation (6.9) <165e79da-ccad-3112-b9fa-97a5813b7724> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7ff8187a7000 - 0x7ff8197abff6 com.apple.AppKit (6.9) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7ffa2a90b000 - 0x7ffa2a915fff libGL.dylib (
) <10171424-b59c-375b-8a4c-d41660d0d5e4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.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: 0
thread_create: 0
thread_set_state: 0

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

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 512K 4
Activity Tracing 256K 1
CG backing stores 4864K 4
CG image 72K 6
ColorSync 224K 25
CoreAnimation 40K 6
CoreGraphics 12K 2
CoreUI image data 692K 5
Foundation 16K 1
Kernel Alloc Once 8K 1
MALLOC 521.3M 77
MALLOC guard page 192K 10
MALLOC_MEDIUM (reserved) 1.2G 11 reserved VM address space (unallocated)
MALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated)
OpenGL GLSL 256K 3
Rosetta Arena 4096K 2
Rosetta Generic 1004K 248
Rosetta JIT 128.0M 1
Rosetta Return Stack 320K 32
Rosetta Thread Context 320K 32
STACK GUARD 20K 5
Stack 41.2M 20
Stack Guard 72K 15
VM_ALLOCATE 219.6M 253
VM_ALLOCATE (reserved) 736.4M 80 reserved VM address space (unallocated)
__CTF 756 1
__DATA 54.5M 593
__DATA_CONST 18.6M 279
__DATA_DIRTY 754K 115
__FONT_DATA 2352 1
__GLSLBUILTINS 5174K 1
__LINKEDIT 209.4M 250
__OBJC_RO 65.1M 1
__OBJC_RW 1980K 2
__TEXT 601.5M 599
dyld private memory 512K 3
mapped file 4.5G 1986
shared memory 816K 17
unshared pmap 9.9M 7
=========== ======= =======
TOTAL 8.7G 4700
TOTAL, minus reserved VM space 6.4G 4700


Full Report

{"app_name":"Python","timestamp":"2024-08-01 14:10:15.00 +0200","app_version":"3.10.11","slice_uuid":"1576db14-80d9-3f38-9508-a3e460cfa8b0","build_version":"3.10.11","platform":1,"bundleID":"org.python.python","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 13.0 (22A8380)","roots_installed":0,"name":"Python","incident_id":"3A920845-A9F3-42D2-B430-08B74F466567"}
{
"uptime" : 5600,
"procRole" : "Foreground",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "Mac14,9",
"coalitionID" : 631,
"osVersion" : {
"train" : "macOS 13.0",
"build" : "22A8380",
"releaseType" : "User"
},
"captureTime" : "2024-08-01 14:09:53.6480 +0200",
"incident" : "3A920845-A9F3-42D2-B430-08B74F466567",
"pid" : 2279,
"translated" : true,
"cpuType" : "X86-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2024-08-01 14:09:35.3982 +0200",
"procStartAbsTime" : 135529584790,
"procExitAbsTime" : 135967375308,
"procName" : "Python",
"procPath" : "/Library/Frameworks/Python.framework/Versions/3.10/Resources/Python.app/Contents/MacOS/Python",
"bundleInfo" : {"CFBundleShortVersionString":"3.10.11","CFBundleVersion":"3.10.11","CFBundleIdentifier":"org.python.python"},
"storeInfo" : {"deviceIdentifierForVendor":"FD952266-8340-5E77-B75B-9321A7C54559","thirdParty":true},
"parentProc" : "pycharm",
"parentPid" : 1173,
"coalitionName" : "com.jetbrains.pycharm.ce",
"crashReporterKey" : "ED424680-F225-B66C-75C4-E10730CD2F0F",
"responsiblePid" : 1173,
"responsibleProc" : "pycharm",
"wakeTime" : 1669,
"sleepWakeUUID" : "CE7EF610-D749-45AD-8B59-F1DB964B42E4",
"sip" : "enabled",
"vmRegionInfo" : "0x248 is not in any region. Bytes before following region: 140722983108024\n REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n mapped file 7ffc9f6b8000-7ffca7dbc000 [135.0M] r-x/r-x SM=COW ...t_id=cf7714cf",
"exception" : {"codes":"0x0000000000000001, 0x0000000000000248","rawCodes":[1,584],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000248"},
"termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":2279},
"vmregioninfo" : "0x248 is not in any region. Bytes before following region: 140722983108024\n REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n mapped file 7ffc9f6b8000-7ffca7dbc000 [135.0M] r-x/r-x SM=COW ...t_id=cf7714cf",
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"faultingThread" : 20,
"threads" : [{"id":70233,"queue":"com.apple.main-thread","frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":1781347,"symbol":"take_gil","symbolLocation":579,"imageIndex":3},{"imageOffset":1842256,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":49712,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":1856735,"symbol":"call_function","symbolLocation":175,"imageIndex":3},{"imageOffset":1816525,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":23981,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":1856735,"symbol":"call_function","symbolLocation":175,"imageIndex":3},{"imageOffset":1816525,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":23981,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":555999,"symbol":"method_vectorcall","symbolLocation":159,"imageIndex":3},{"imageOffset":1856735,"symbol":"call_function","symbolLocation":175,"imageIndex":3},{"imageOffset":1816924,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":24380,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":1856735,"symbol":"call_function","symbolLocation":175,"imageIndex":3},{"imageOffset":1816525,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":23981,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":1856735,"symbol":"call_function","symbolLocation":175,"imageIndex":3},{"imageOffset":1816737,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":24193,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":2267645,"symbol":"pyrun_file","symbolLocation":333,"imageIndex":3},{"imageOffset":2265533,"symbol":"_PyRun_SimpleFileObject","symbolLocation":365,"imageIndex":3},{"imageOffset":2263055,"symbol":"_PyRun_AnyFileObject","symbolLocation":143,"imageIndex":3},{"imageOffset":2443591,"symbol":"pymain_run_file_obj","symbolLocation":199,"imageIndex":3},{"imageOffset":2441493,"symbol":"pymain_run_file","symbolLocation":85,"imageIndex":3},{"imageOffset":2439326,"symbol":"pymain_run_python","symbolLocation":334,"imageIndex":3},{"imageOffset":2438919,"symbol":"Py_RunMain","symbolLocation":23,"imageIndex":3},{"imageOffset":2444002,"symbol":"pymain_main","symbolLocation":50,"imageIndex":3},{"imageOffset":2444682,"symbol":"Py_BytesMain","symbolLocation":42,"imageIndex":3},{"imageOffset":25360,"symbol":"start","symbolLocation":2432,"imageIndex":4}]},{"id":70234,"name":"com.apple.rosetta.exceptionserver","frames":[{"imageOffset":18256,"imageIndex":5},{"imageOffset":67180,"imageIndex":5},{"imageOffset":73836,"imageIndex":5}]},{"id":70263,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70264,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70265,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70266,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70267,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70268,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70269,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70270,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70271,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70272,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70273,"frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":16894,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":1},{"imageOffset":26593,"symbol":"_pthread_cond_wait","symbolLocation":1243,"imageIndex":2},{"imageOffset":3494094,"symbol":"blas_thread_server","symbolLocation":174,"imageIndex":6},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70298,"frames":[{"imageOffset":141436,"imageIndex":5}]},{"id":70300,"frames":[{"imageOffset":141436,"imageIndex":5}]},{"id":70402,"frames":[{"imageOffset":141436,"imageIndex":5}]},{"id":70406,"frames":[{"imageOffset":4521379,"symbol":"btMultiBody::calcAccelerationDeltasMultiDof(double const*, double*, btAlignedObjectArray&, btAlignedObjectArray&) const","symbolLocation":3859,"imageIndex":7},{"imageOffset":4630577,"symbol":"btMultiBodyConstraintSolver::setupMultiBodyContactConstraint(btMultiBodySolverConstraint&, btVector3 const&, double const&, btManifoldPoint&, btContactSolverInfo const&, double&, bool, double, double)","symbolLocation":5617,"imageIndex":7},{"imageOffset":4646699,"symbol":"btMultiBodyConstraintSolver::convertMultiBodyContact(btPersistentManifold*, btContactSolverInfo const&)","symbolLocation":939,"imageIndex":7},{"imageOffset":4650315,"symbol":"btMultiBodyConstraintSolver::convertContacts(btPersistentManifold**, int, btContactSolverInfo const&)","symbolLocation":59,"imageIndex":7},{"imageOffset":4265024,"symbol":"btSequentialImpulseConstraintSolver::solveGroupCacheFriendlySetup(btCollisionObject**, int, btPersistentManifold**, int, btTypedConstraint**, int, btContactSolverInfo const&, btIDebugDraw*)","symbolLocation":208,"imageIndex":7},{"imageOffset":4624339,"symbol":"btMultiBodyConstraintSolver::solveGroupCacheFriendlySetup(btCollisionObject**, int, btPersistentManifold**, int, btTypedConstraint**, int, btContactSolverInfo const&, btIDebugDraw*)","symbolLocation":1491,"imageIndex":7},{"imageOffset":4654551,"symbol":"btMultiBodyConstraintSolver::solveMultiBodyGroup(btCollisionObject**, int, btPersistentManifold**, int, btTypedConstraint**, int, btMultiBodyConstraint**, int, btContactSolverInfo const&, btIDebugDraw*, btDispatcher*)","symbolLocation":135,"imageIndex":7},{"imageOffset":3202538,"symbol":"MultiBodyInplaceSolverIslandCallback::processConstraints(int)","symbolLocation":154,"imageIndex":7},{"imageOffset":3640590,"symbol":"btSimulationIslandManager::processIslands(btDispatcher*, btCollisionWorld*, btSimulationIslandManager::IslandCallback*)","symbolLocation":1166,"imageIndex":7},{"imageOffset":4554544,"symbol":"btMultiBodyDynamicsWorld::solveConstraints(btContactSolverInfo&)","symbolLocation":48,"imageIndex":7},{"imageOffset":4100737,"symbol":"btDiscreteDynamicsWorld::internalSingleStepSimulation(double)","symbolLocation":177,"imageIndex":7},{"imageOffset":3511128,"symbol":"btSoftMultiBodyDynamicsWorld::internalSingleStepSimulation(double)","symbolLocation":72,"imageIndex":7},{"imageOffset":4100481,"symbol":"btDiscreteDynamicsWorld::stepSimulation(double, int, double)","symbolLocation":305,"imageIndex":7},{"imageOffset":1476889,"symbol":"PhysicsServerCommandProcessor::stepSimulationRealTime(double, b3VRControllerEvent const*, int, b3KeyboardEvent const*, int, b3MouseEvent const*, int)","symbolLocation":2025,"imageIndex":7},{"imageOffset":1655503,"symbol":"MotionThreadFunc(void*, void*)","symbolLocation":6175,"imageIndex":7},{"imageOffset":825578,"symbol":"threadFunction(void*)","symbolLocation":106,"imageIndex":7},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"id":70408,"frames":[{"imageOffset":141436,"imageIndex":5}]},{"id":70410,"frames":[{"imageOffset":141436,"imageIndex":5}]},{"id":70413,"name":"com.apple.NSEventThread","frames":[{"imageOffset":140705889773992,"imageIndex":0},{"imageOffset":5794,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":1},{"imageOffset":63101,"symbol":"mach_msg2_internal","symbolLocation":82,"imageIndex":1},{"imageOffset":34586,"symbol":"mach_msg_overwrite","symbolLocation":723,"imageIndex":1},{"imageOffset":6537,"symbol":"mach_msg","symbolLocation":19,"imageIndex":1},{"imageOffset":520235,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":145,"imageIndex":8},{"imageOffset":514692,"symbol":"__CFRunLoopRun","symbolLocation":1387,"imageIndex":8},{"imageOffset":511647,"symbol":"CFRunLoopRunSpecific","symbolLocation":560,"imageIndex":8},{"imageOffset":1697430,"symbol":"_NSEventThread","symbolLocation":132,"imageIndex":9},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]},{"triggered":true,"id":70550,"threadState":{"flavor":"x86_THREAD_STATE","rbp":{"value":13026396144},"r12":{"value":0},"rosetta":{"tmp2":{"value":5098565096},"tmp1":{"value":13026402768},"tmp0":{"value":240}},"rbx":{"value":105553129166304},"r8":{"value":70550},"r15":{"value":105553129166304},"r10":{"value":140687736739528},"rdx":{"value":0},"rdi":{"value":2929},"r9":{"value":18446744069414584320},"r13":{"value":6120100416},"rflags":{"value":514},"rax":{"value":0},"rsp":{"value":13026396144},"r11":{"value":5086844400,"symbolLocation":0,"symbol":"-[TestView GetRequestClose]"},"rcx":{"value":140687736739536},"r14":{"value":105553165996496},"rsi":{"value":2929}},"frames":[{"imageOffset":5746,"symbol":"glEnable","symbolLocation":15,"imageIndex":10},{"imageOffset":842112,"symbol":"GLInstancingRenderer::init()","symbolLocation":32,"imageIndex":7},{"imageOffset":447016,"symbol":"OpenGLExampleBrowser::update(float)","symbolLocation":104,"imageIndex":7},{"imageOffset":1737974,"symbol":"InProcessPhysicsClientSharedMemoryMainThread::processServerStatus()","symbolLocation":70,"imageIndex":7},{"imageOffset":1016767,"symbol":"b3SubmitClientCommandAndWaitStatus","symbolLocation":223,"imageIndex":7},{"imageOffset":2854318,"symbol":"pybullet_getLinkState","symbolLocation":254,"imageIndex":7},{"imageOffset":962308,"symbol":"cfunction_call","symbolLocation":52,"imageIndex":3},{"imageOffset":539412,"symbol":"_PyObject_MakeTpCall","symbolLocation":132,"imageIndex":3},{"imageOffset":1856931,"symbol":"call_function","symbolLocation":371,"imageIndex":3},{"imageOffset":1816924,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":24380,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":1856735,"symbol":"call_function","symbolLocation":175,"imageIndex":3},{"imageOffset":1816525,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":23981,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":556321,"symbol":"method_vectorcall","symbolLocation":481,"imageIndex":3},{"imageOffset":1818546,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":26002,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":1856735,"symbol":"call_function","symbolLocation":175,"imageIndex":3},{"imageOffset":1816525,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":23981,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":1856735,"symbol":"call_function","symbolLocation":175,"imageIndex":3},{"imageOffset":1816525,"symbol":"_PyEval_EvalFrameDefault","symbolLocation":23981,"imageIndex":3},{"imageOffset":1785935,"symbol":"_PyEval_Vector","symbolLocation":383,"imageIndex":3},{"imageOffset":556321,"symbol":"method_vectorcall","symbolLocation":481,"imageIndex":3},{"imageOffset":2867686,"symbol":"thread_run","symbolLocation":198,"imageIndex":3},{"imageOffset":2355396,"symbol":"pythread_wrapper","symbolLocation":36,"imageIndex":3},{"imageOffset":25177,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":2},{"imageOffset":7291,"symbol":"thread_start","symbolLocation":15,"imageIndex":2}]}],
"usedImages" : [
{
"size" : 0,
"source" : "A",
"base" : 0,
"uuid" : "00000000-0000-0000-0000-000000000000"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703487684608,
"size" : 237560,
"uuid" : "0d3afb8e-c4a6-340b-afc6-66e7a88a762a",
"path" : "/usr/lib/system/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703487922176,
"size" : 49144,
"uuid" : "d4e9006b-603b-35f3-a4a8-69af913ca9ff",
"path" : "/usr/lib/system/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4490571776,
"CFBundleShortVersionString" : "3.10.11, (c) 2001-2023 Python Software Foundation.",
"CFBundleIdentifier" : "org.python.python",
"size" : 3637248,
"uuid" : "80874ad1-e33e-32fa-9fde-51b4da771420",
"path" : "/Library/Frameworks/Python.framework/Versions/3.10/Python",
"name" : "Python",
"CFBundleVersion" : "3.10.11"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 8635883520,
"size" : 622592,
"uuid" : "353fba60-65ea-3ae3-ab42-d22e2bb6d9ef",
"path" : "/usr/lib/dyld",
"name" : "dyld"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 140703126306816,
"size" : 196608,
"uuid" : "d7c32679-b88a-3261-a92b-f9400dd7522d",
"path" : "/usr/libexec/rosetta/runtime",
"name" : "runtime"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 5548998656,
"size" : 66076672,
"uuid" : "e2e14b7a-3474-3d5c-9c75-2aff5149e856",
"path" : "/Users/USER//libscipy_openblas.dylib",
"name" : "libscipy_openblas.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 5085970432,
"size" : 6635520,
"uuid" : "75d21849-69a6-376b-9df4-ee578ed3e4f2",
"path" : "/Users/USER/
/pybullet.cpython-310-darwin.so",
"name" : "pybullet.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703488323584,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 4816896,
"uuid" : "165e79da-ccad-3112-b9fa-97a5813b7724",
"path" : "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "1953.1"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703539294208,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.AppKit",
"size" : 16797687,
"uuid" : "fef7ad38-85c5-3635-a58c-dc1e06dc1628",
"path" : "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit",
"name" : "AppKit",
"CFBundleVersion" : "2299"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140712432676864,
"size" : 45056,
"uuid" : "10171424-b59c-375b-8a4c-d41660d0d5e4",
"path" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib",
"name" : "libGL.dylib"
}
],
"vmSummary" : "ReadOnly portion of Libraries: Total=810.9M resident=0K(0%) swapped_out_or_unallocated=810.9M(100%)\nWritable regions: Total=3.3G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=3.3G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 512K 4 \nActivity Tracing 256K 1 \nCG backing stores 4864K 4 \nCG image 72K 6 \nColorSync 224K 25 \nCoreAnimation 40K 6 \nCoreGraphics 12K 2 \nCoreUI image data 692K 5 \nFoundation 16K 1 \nKernel Alloc Once 8K 1 \nMALLOC 521.3M 77 \nMALLOC guard page 192K 10 \nMALLOC_MEDIUM (reserved) 1.2G 11 reserved VM address space (unallocated)\nMALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated)\nOpenGL GLSL 256K 3 \nRosetta Arena 4096K 2 \nRosetta Generic 1004K 248 \nRosetta JIT 128.0M 1 \nRosetta Return Stack 320K 32 \nRosetta Thread Context 320K 32 \nSTACK GUARD 20K 5 \nStack 41.2M 20 \nStack Guard 72K 15 \nVM_ALLOCATE 219.6M 253 \nVM_ALLOCATE (reserved) 736.4M 80 reserved VM address space (unallocated)\n__CTF 756 1 \n__DATA 54.5M 593 \n__DATA_CONST 18.6M 279 \n__DATA_DIRTY 754K 115 \n__FONT_DATA 2352 1 \n__GLSLBUILTINS 5174K 1 \n__LINKEDIT 209.4M 250 \n__OBJC_RO 65.1M 1 \n__OBJC_RW 1980K 2 \n__TEXT 601.5M 599 \ndyld private memory 512K 3 \nmapped file 4.5G 1986 \nshared memory 816K 17 \nunshared pmap 9.9M 7 \n=========== ======= ======= \nTOTAL 8.7G 4700 \nTOTAL, minus reserved VM space 6.4G 4700 \n",
"legacyInfo" : {
"threadTriggered" : {

}
},
"reportNotes" : [
"dyld_process_snapshot_create_for_process failed with 5"
]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant