Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for ioctlPtr (0.13 sec)

  1. src/syscall/linkname_bsd.go

    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd || netbsd || openbsd
    
    package syscall
    
    import _ "unsafe"
    
    // used by internal/syscall/unix
    //go:linkname ioctlPtr
    
    // golang.org/x/net linknames sysctl.
    // Do not remove or change the type signature.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 426 bytes
    - Viewed (0)
  2. src/syscall/exec_libc.go

    		uintptr(unsafe.Pointer(&envv[0])))
    
    childerror:
    	// send error code on pipe
    	write1(uintptr(pipe), uintptr(unsafe.Pointer(&err1)), unsafe.Sizeof(err1))
    	for {
    		exit(253)
    	}
    }
    
    func ioctlPtr(fd, req uintptr, arg unsafe.Pointer) (err Errno) {
    	return ioctl(fd, req, uintptr(arg))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top