Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ProcExit (0.1 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)
Back to top