Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for EpollCreate (0.26 sec)

  1. src/syscall/syscall_linux.go

    	return Fchownat(_AT_FDCWD, path, uid, gid, 0)
    }
    
    func Creat(path string, mode uint32) (fd int, err error) {
    	return Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)
    }
    
    func EpollCreate(size int) (fd int, err error) {
    	if size <= 0 {
    		return -1, EINVAL
    	}
    	return EpollCreate1(0)
    }
    
    func isGroupMember(gid int) bool {
    	groups, err := Getgroups()
    	if err != nil {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top