Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CapRightsInit (0.09 sec)

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

    		}
    	}
    
    	return true, nil
    }
    
    func capright(idx uint64, bit uint64) uint64 {
    	return ((1 << (57 + idx)) | bit)
    }
    
    // CapRightsInit returns a pointer to an initialised CapRights structure filled with rights.
    // See man cap_rights_init(3) and rights(4).
    func CapRightsInit(rights []uint64) (*CapRights, error) {
    	var r CapRights
    	r.Rights[0] = (capRightsGoVersion << 62) | capright(0, 0)
    	r.Rights[1] = capright(1, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top