Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ProcExit (0.08 sec)

  1. src/syscall/os_wasip1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    //go:wasmimport wasi_snapshot_preview1 proc_exit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 252 bytes
    - Viewed (0)
  2. src/syscall/syscall_wasip1.go

    	//
    	// Any signal that the application raises to the process itself will
    	// be interpreted as being cause for termination.
    	if pid > 0 && pid != Getpid() {
    		return ESRCH
    	}
    	ProcExit(128 + int32(signum))
    	return nil
    }
    
    func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return 0, ENOSYS
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:linkname procClockGettime libc_clockgettime
    //go:linkname procClose libc_close
    //go:linkname procCreat libc_creat
    //go:linkname procDup libc_dup
    //go:linkname procDup2 libc_dup2
    //go:linkname procExit libc_exit
    //go:linkname procFaccessat libc_faccessat
    //go:linkname procFchdir libc_fchdir
    //go:linkname procFchmod libc_fchmod
    //go:linkname procFchmodat libc_fchmodat
    //go:linkname procFchown libc_fchown
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
Back to top