Skip to content
View RizzoV's full-sized avatar
Block or Report

Block or report RizzoV

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. How to attach to and inspect a runni... How to attach to and inspect a running Python process.md
    1
    `gdb` can be used to attach a running Python process and inspect its internal status by monitoring threads and their 
    2
    respective stack trace, with no need to use any particular option when first launching the process. In this way, you can
    3
    debug processes that were launched with no prior debugging intention.
    4
    
                  
    5
    The following procedure needs `/proc/sys/kernel/yama/ptrace_scope` to be set to `1`.