Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isValidLeFunc (0.3 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	name := string(funcname[:nameLen])
    	if name != funcName {
    		return 1
    	}
    
    	return 0
    }
    
    // For detection of capabilities on a system.
    // Is function descriptor f a valid function?
    func isValidLeFunc(f uintptr) error {
    	ret := funcptrtest(f, "")
    	if ret != 0 {
    		return fmt.Errorf("Bad pointer, not an LE function ")
    	}
    	return nil
    }
    
    // Retrieve function name from descriptor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top