Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for F_UNLCK (0.38 sec)

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

    	F_SETLK                          = 0x6
    	F_SETLK64                        = 0x6
    	F_SETLKW                         = 0x7
    	F_SETLKW64                       = 0x7
    	F_SETOWN                         = 0x18
    	F_UNLCK                          = 0x2
    	F_WRLCK                          = 0x1
    	HIDIOCGRAWINFO                   = 0x40084803
    	HIDIOCGRDESC                     = 0x50044802
    	HIDIOCGRDESCSIZE                 = 0x40044801
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	F_SETLK                          = 0x8
    	F_SETLK64                        = 0x8
    	F_SETLKW                         = 0x9
    	F_SETLKW64                       = 0x9
    	F_SETOWN                         = 0x6
    	F_UNLCK                          = 0x3
    	F_WRLCK                          = 0x2
    	HIDIOCGRAWINFO                   = 0x40084803
    	HIDIOCGRDESC                     = 0x50044802
    	HIDIOCGRDESCSIZE                 = 0x40044801
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	F_SETLK                          = 0x6
    	F_SETLK64                        = 0xd
    	F_SETLKW                         = 0x7
    	F_SETLKW64                       = 0xe
    	F_SETOWN                         = 0x8
    	F_UNLCK                          = 0x2
    	F_WRLCK                          = 0x1
    	HIDIOCGRAWINFO                   = 0x40084803
    	HIDIOCGRDESC                     = 0x50044802
    	HIDIOCGRDESCSIZE                 = 0x40044801
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	F_SETLK                          = 0x6
    	F_SETLK64                        = 0xd
    	F_SETLKW                         = 0x7
    	F_SETLKW64                       = 0xe
    	F_SETOWN                         = 0x8
    	F_UNLCK                          = 0x2
    	F_WRLCK                          = 0x1
    	HIDIOCGRAWINFO                   = 0x40084803
    	HIDIOCGRDESC                     = 0x50044802
    	HIDIOCGRDESCSIZE                 = 0x40044801
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	F_SETLK                          = 0x6
    	F_SETLK64                        = 0x6
    	F_SETLKW                         = 0x7
    	F_SETLKW64                       = 0x7
    	F_SETOWN                         = 0x8
    	F_UNLCK                          = 0x2
    	F_WRLCK                          = 0x1
    	HIDIOCGRAWINFO                   = 0x80084803
    	HIDIOCGRDESC                     = 0x90044802
    	HIDIOCGRDESCSIZE                 = 0x80044801
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	F_RDLCK                  = 1
    	F_SETFD                  = 2
    	F_SETFL                  = 4
    	F_SETLK                  = 6
    	F_SETLKW                 = 7
    	F_SETOWN                 = 11
    	F_SETTAG                 = 12
    	F_UNLCK                  = 3
    	F_WRLCK                  = 2
    	FSTYPE_ZFS               = 0xe9 //"Z"
    	FSTYPE_HFS               = 0xc8 //"H"
    	FSTYPE_NFS               = 0xd5 //"N"
    	FSTYPE_TFS               = 0xe3 //"T"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/users/users_linux.go

    		return nil, nil, err
    	}
    	close = func() {
    		// This function should be called once operations with the file are finished.
    		// It unlocks the file and closes it.
    		unlock := syscall.Flock_t{Type: syscall.F_UNLCK}
    		syscall.FcntlFlock(f.Fd(), syscall.F_SETLK, &unlock)
    		f.Close()
    	}
    	return f, close, nil
    }
    
    // readFile reads a File into a string.
    func readFile(f *os.File) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top