Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PtraceGetEventMsg (0.28 sec)

  1. src/syscall/syscall_linux.go

    }
    
    func PtraceSetOptions(pid int, options int) (err error) {
    	return ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))
    }
    
    func PtraceGetEventMsg(pid int) (msg uint, err error) {
    	var data _C_long
    	err = ptracePtr(PTRACE_GETEVENTMSG, pid, 0, unsafe.Pointer(&data))
    	msg = uint(data)
    	return
    }
    
    func PtraceCont(pid int, signal int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    func PtraceSetOptions(pid int, options int) (err error) {
    	return ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))
    }
    
    func PtraceGetEventMsg(pid int) (msg uint, err error) {
    	var data _C_long
    	err = ptracePtr(PTRACE_GETEVENTMSG, pid, 0, unsafe.Pointer(&data))
    	msg = uint(data)
    	return
    }
    
    func PtraceCont(pid int, signal int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (linux-386), func PtraceAttach(int) error
    pkg syscall (linux-386), func PtraceCont(int, int) error
    pkg syscall (linux-386), func PtraceDetach(int) error
    pkg syscall (linux-386), func PtraceGetEventMsg(int) (uint, error)
    pkg syscall (linux-386), func PtraceGetRegs(int, *PtraceRegs) error
    pkg syscall (linux-386), func PtracePeekData(int, uintptr, []uint8) (int, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Protoent.Aliases", Field, 0},
    		{"Protoent.Name", Field, 0},
    		{"Protoent.Proto", Field, 0},
    		{"PtraceAttach", Func, 0},
    		{"PtraceCont", Func, 0},
    		{"PtraceDetach", Func, 0},
    		{"PtraceGetEventMsg", Func, 0},
    		{"PtraceGetRegs", Func, 0},
    		{"PtracePeekData", Func, 0},
    		{"PtracePeekText", Func, 0},
    		{"PtracePokeData", Func, 0},
    		{"PtracePokeText", Func, 0},
    		{"PtraceRegs", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), func PtraceAttach(int) error
    pkg syscall (linux-arm-cgo), func PtraceCont(int, int) error
    pkg syscall (linux-arm-cgo), func PtraceDetach(int) error
    pkg syscall (linux-arm-cgo), func PtraceGetEventMsg(int) (uint, error)
    pkg syscall (linux-arm-cgo), func PtraceGetRegs(int, *PtraceRegs) error
    pkg syscall (linux-arm-cgo), func PtracePeekData(int, uintptr, []uint8) (int, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top