Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setfpmasks (0.1 sec)

  1. src/runtime/os_plan9.go

    //go:noescape
    func notify(fn unsafe.Pointer) int32
    
    func noted(mode int32) int32
    
    //go:noescape
    func nsec(*int64) int64
    
    //go:noescape
    func sigtramp(ureg, note unsafe.Pointer)
    
    func setfpmasks()
    
    //go:noescape
    func tstart_plan9(newm *m)
    
    func errstr() string
    
    type _Plink uintptr
    
    func sigpanic() {
    	gp := getg()
    	if !canpanic() {
    		throw("unexpected signal during runtime execution")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/runtime/sys_plan9_arm.s

    	// call noted(R0)
    	MOVW	R0, 4(R13)
    	BL	runtime·noted(SB)
    	RET
    
    //func sigpanictramp()
    TEXT  runtime·sigpanictramp(SB),NOSPLIT,$0-0
    	MOVW.W	R0, -4(R13)
    	B	runtime·sigpanic(SB)
    
    //func setfpmasks()
    // Only used by the 64-bit runtime.
    TEXT runtime·setfpmasks(SB),NOSPLIT,$0
    	RET
    
    #define ERRMAX 128	/* from os_plan9.h */
    
    // func errstr() string
    // Only used by package syscall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 29 14:15:04 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top