This commit is contained in:
2020-01-23 23:13:36 -08:00
parent dcc0df955e
commit 2bc9ebdc6b
31829 changed files with 1229378 additions and 17 deletions

View File

@@ -0,0 +1 @@
initSidebarItems({"enum":[["Event","Using the ptrace options the tracer can configure the tracee to stop at certain events. This enum is used to define those events as defined in `man ptrace`."],["Request","Ptrace Request enum defining the action to be taken."]],"fn":[["attach","Attach to a running process, as with `ptrace(PTRACE_ATTACH, ...)`"],["cont","Restart the stopped tracee process, as with `ptrace(PTRACE_CONT, ...)`"],["detach","Detaches the current running process, as with `ptrace(PTRACE_DETACH, ...)`"],["getevent","Gets a ptrace event as described by `ptrace(PTRACE_GETEVENTMSG,...)`"],["getregs","Get user registers, as with `ptrace(PTRACE_GETREGS, ...)`"],["getsiginfo","Get siginfo as with `ptrace(PTRACE_GETSIGINFO,...)`"],["kill","Issues a kill request as with `ptrace(PTRACE_KILL, ...)`"],["ptrace","Performs a ptrace request. If the request in question is provided by a specialised function this function will return an unsupported operation error."],["read","Reads a word from a processes memory at the given address"],["setoptions","Set options, as with `ptrace(PTRACE_SETOPTIONS,...)`."],["setregs","Set user registers, as with `ptrace(PTRACE_SETREGS, ...)`"],["setsiginfo","Set siginfo as with `ptrace(PTRACE_SETSIGINFO,...)`"],["step","Move the stopped tracee process forward by a single step as with `ptrace(PTRACE_SINGLESTEP, ...)`"],["syscall","Ask for next syscall, as with `ptrace(PTRACE_SYSCALL, ...)`"],["traceme","Sets the process as traceable, as with `ptrace(PTRACE_TRACEME, ...)`"],["write","Writes a word into the processes memory at the given address"]],"struct":[["Options","Ptrace options used in conjunction with the PTRACE_SETOPTIONS request. See `man ptrace` for more details."]],"type":[["AddressType",""]]});