1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
COPYING
MANIFEST.in
README.rst
SYSCALL_PROTOTYPES.codegen.py
gdb.py
runtests.py
setup.cfg
setup.py
setup_cptrace.py
strace.py
test_doc.py
tox.ini
cptrace/Makefile
cptrace/cptrace.c
cptrace/version.py
doc/Makefile
doc/authors.rst
doc/changelog.rst
doc/conf.py
doc/cptrace.rst
doc/gdb.rst
doc/index.rst
doc/install.rst
doc/make.bat
doc/process_events.rst
doc/ptrace_signal.rst
doc/syscall.rst
doc/todo.rst
doc/usage.rst
examples/itrace.py
examples/simple_dbg.py
ptrace/__init__.py
ptrace/cpu_info.py
ptrace/ctypes_libc.py
ptrace/ctypes_tools.py
ptrace/disasm.py
ptrace/error.py
ptrace/func_arg.py
ptrace/func_call.py
ptrace/linux_proc.py
ptrace/logging_tools.py
ptrace/mockup.py
ptrace/os_tools.py
ptrace/process_tools.py
ptrace/profiler.py
ptrace/pydistorm.py
ptrace/signames.py
ptrace/terminal.py
ptrace/tools.py
ptrace/version.py
ptrace/binding/__init__.py
ptrace/binding/cpu.py
ptrace/binding/freebsd_struct.py
ptrace/binding/func.py
ptrace/binding/linux_struct.py
ptrace/binding/openbsd_struct.py
ptrace/debugger/__init__.py
ptrace/debugger/application.py
ptrace/debugger/backtrace.py
ptrace/debugger/breakpoint.py
ptrace/debugger/child.py
ptrace/debugger/debugger.py
ptrace/debugger/memory_mapping.py
ptrace/debugger/parse_expr.py
ptrace/debugger/process.py
ptrace/debugger/process_error.py
ptrace/debugger/process_event.py
ptrace/debugger/ptrace_signal.py
ptrace/debugger/signal_reason.py
ptrace/debugger/syscall_state.py
ptrace/syscall/__init__.py
ptrace/syscall/freebsd_constants.py
ptrace/syscall/freebsd_syscall.py
ptrace/syscall/linux_constants.py
ptrace/syscall/linux_struct.py
ptrace/syscall/names.py
ptrace/syscall/posix_arg.py
ptrace/syscall/posix_constants.py
ptrace/syscall/prototypes.py
ptrace/syscall/ptrace_syscall.py
ptrace/syscall/socketcall.py
ptrace/syscall/socketcall_constants.py
ptrace/syscall/socketcall_struct.py
ptrace/syscall/syscall_argument.py
ptrace/syscall/linux/__init__.py
ptrace/syscall/linux/aarch64.py
ptrace/syscall/linux/i386.py
ptrace/syscall/linux/powerpc32.py
ptrace/syscall/linux/powerpc64.py
ptrace/syscall/linux/riscv32.py
ptrace/syscall/linux/riscv64.py
ptrace/syscall/linux/x86_64.py
python_ptrace.egg-info/PKG-INFO
python_ptrace.egg-info/SOURCES.txt
python_ptrace.egg-info/dependency_links.txt
python_ptrace.egg-info/top_level.txt
tests/test_gdb.py
tests/test_strace.py
tests/crash/BSDmakefile
tests/crash/Makefile
tests/crash/abort.c
tests/crash/call_null.c
tests/crash/div_zero.c
tests/crash/execve.c
tests/crash/fork.c
tests/crash/invalid_read.c
tests/crash/invalid_write.c
tests/crash/pthread.c
tests/crash/socket_ipv4_tcp.c
tests/crash/stack_overflow.c
|