Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for PT_STEP (0.19 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    }
    
    func PtraceSetRegs(pid int, regs *Reg) (err error) {
    	return ptracePtr(PT_SETREGS, pid, unsafe.Pointer(regs), 0)
    }
    
    func PtraceSingleStep(pid int) (err error) {
    	return ptrace(PT_STEP, pid, 1, 0)
    }
    
    func Dup3(oldfd, newfd, flags int) error {
    	if oldfd == newfd || flags&^O_CLOEXEC != 0 {
    		return EINVAL
    	}
    	how := F_DUP2FD
    	if flags&O_CLOEXEC != 0 {
    		how = F_DUP2FD_CLOEXEC
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/syscall/zerrors_darwin_arm64.go

    	PT_KILL                           = 0x8
    	PT_READ_D                         = 0x2
    	PT_READ_I                         = 0x1
    	PT_READ_U                         = 0x3
    	PT_SIGEXC                         = 0xc
    	PT_STEP                           = 0x9
    	PT_THUPDATE                       = 0xd
    	PT_TRACE_ME                       = 0x0
    	PT_WRITE_D                        = 0x5
    	PT_WRITE_I                        = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  3. src/syscall/zerrors_aix_ppc64.go

    	PT_READ_GPR                   = 0xb
    	PT_READ_I                     = 0x1
    	PT_REATT                      = 0x21
    	PT_REGSET                     = 0x20
    	PT_SET                        = 0x25
    	PT_STEP                       = 0x9
    	PT_TRACE_ME                   = 0x0
    	PT_WATCH                      = 0x29
    	PT_WRITE_BLOCK                = 0x13
    	PT_WRITE_D                    = 0x5
    	PT_WRITE_FPR                  = 0xf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  4. src/syscall/syscall_aix.go

    	return ptracePoke(pid, addr, data)
    }
    
    func PtraceCont(pid int, signal int) (err error) {
    	return ptrace64(PT_CONTINUE, int64(pid), 1, signal, 0)
    }
    
    func PtraceSingleStep(pid int) (err error) { return ptrace64(PT_STEP, int64(pid), 1, 0, 0) }
    
    func PtraceAttach(pid int) (err error) { return ptrace64(PT_ATTACH, int64(pid), 0, 0, 0) }
    
    func PtraceDetach(pid int) (err error) { return ptrace64(PT_DETACH, int64(pid), 0, 0, 0) }
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/syscall/zerrors_darwin_amd64.go

    	PT_KILL                           = 0x8
    	PT_READ_D                         = 0x2
    	PT_READ_I                         = 0x1
    	PT_READ_U                         = 0x3
    	PT_SIGEXC                         = 0xc
    	PT_STEP                           = 0x9
    	PT_THUPDATE                       = 0xd
    	PT_TRACE_ME                       = 0x0
    	PT_WRITE_D                        = 0x5
    	PT_WRITE_I                        = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	PT_READ_D                               = 0x2
    	PT_READ_I                               = 0x1
    	PT_READ_U                               = 0x3
    	PT_SIGEXC                               = 0xc
    	PT_STEP                                 = 0x9
    	PT_THUPDATE                             = 0xd
    	PT_TRACE_ME                             = 0x0
    	PT_WRITE_D                              = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go

    	PT_SETFPREGS                   = 0x24
    	PT_SETREGS                     = 0x22
    	PT_SETSTEP                     = 0x11
    	PT_SETVFPREGS                  = 0x41
    	PT_SET_EVENT_MASK              = 0x1a
    	PT_STEP                        = 0x9
    	PT_SUSPEND                     = 0x12
    	PT_SYSCALL                     = 0x16
    	PT_TO_SCE                      = 0x14
    	PT_TO_SCX                      = 0x15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go

    	PT_SETDBREGS                   = 0x26
    	PT_SETFPREGS                   = 0x24
    	PT_SETREGS                     = 0x22
    	PT_SETSTEP                     = 0x11
    	PT_SET_EVENT_MASK              = 0x1a
    	PT_STEP                        = 0x9
    	PT_SUSPEND                     = 0x12
    	PT_SYSCALL                     = 0x16
    	PT_TO_SCE                      = 0x14
    	PT_TO_SCX                      = 0x15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go

    	PT_READ_D                               = 0x2
    	PT_READ_I                               = 0x1
    	PT_READ_U                               = 0x3
    	PT_SIGEXC                               = 0xc
    	PT_STEP                                 = 0x9
    	PT_THUPDATE                             = 0xd
    	PT_TRACE_ME                             = 0x0
    	PT_WRITE_D                              = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	PT_SETGSBASE                   = 0x4a
    	PT_SETREGS                     = 0x22
    	PT_SETSTEP                     = 0x11
    	PT_SETXSTATE                   = 0x46
    	PT_SET_EVENT_MASK              = 0x1a
    	PT_STEP                        = 0x9
    	PT_SUSPEND                     = 0x12
    	PT_SYSCALL                     = 0x16
    	PT_TO_SCE                      = 0x14
    	PT_TO_SCX                      = 0x15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top