Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syscall_Exit (0.32 sec)

  1. src/runtime/syscall_aix.go

    	_, err = syscall3(&libc_execve, path, argv, envp)
    	return
    }
    
    // like exit, but must not split stack, for fork.
    //
    //go:linkname syscall_exit syscall.exit
    //go:nosplit
    func syscall_exit(code uintptr) {
    	syscall1(&libc_exit, code)
    }
    
    //go:linkname syscall_fcntl1 syscall.fcntl1
    //go:nosplit
    func syscall_fcntl1(fd, cmd, arg uintptr) (val, err uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/runtime/runtime.go

    //go:linkname os_runtime_args os.runtime_args
    func os_runtime_args() []string { return append([]string{}, argslice...) }
    
    //go:linkname syscall_Exit syscall.Exit
    //go:nosplit
    func syscall_Exit(code int) {
    	exit(int32(code))
    }
    
    var godebugDefault string
    var godebugUpdate atomic.Pointer[func(string, string)]
    var godebugEnv atomic.Pointer[string] // set by parsedebugvars
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top