Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for issetugid_trampoline (0.5 sec)

  1. src/runtime/sys_openbsd2.go

    func exitThread(wait *atomic.Uint32) {
    	throw("exitThread")
    }
    
    //go:nosplit
    //go:cgo_unsafe_args
    func issetugid() (ret int32) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(issetugid_trampoline)), unsafe.Pointer(&ret))
    	return
    }
    func issetugid_trampoline()
    
    // Tell the linker that the libc_* functions are to be found
    // in a system library, with the libc_ prefix missing.
    
    //go:cgo_import_dynamic libc_errno __errno "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    	flags, _ := fcntl(fd, _F_GETFL, 0)
    	if flags != -1 {
    		fcntl(fd, _F_SETFL, flags|_O_NONBLOCK)
    	}
    }
    
    func issetugid() int32 {
    	return libcCall(unsafe.Pointer(abi.FuncPCABI0(issetugid_trampoline)), nil)
    }
    func issetugid_trampoline()
    
    // mach_vm_region is used to obtain virtual memory mappings for use by the
    // profiling system and is only exported to runtime/pprof. It is restricted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top