Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for F_UNLCK (0.11 sec)

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

    	F_SETFL                        = 0x4
    	F_SETLK                        = 0xc
    	F_SETLKW                       = 0xd
    	F_SETLK_REMOTE                 = 0xe
    	F_SETOWN                       = 0x6
    	F_UNLCK                        = 0x2
    	F_UNLCKSYS                     = 0x4
    	F_WRLCK                        = 0x3
    	HUPCL                          = 0x4000
    	HW_MACHINE                     = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	F_SETFL                        = 0x4
    	F_SETLK                        = 0xc
    	F_SETLKW                       = 0xd
    	F_SETLK_REMOTE                 = 0xe
    	F_SETOWN                       = 0x6
    	F_UNLCK                        = 0x2
    	F_UNLCKSYS                     = 0x4
    	F_WRLCK                        = 0x3
    	HUPCL                          = 0x4000
    	HW_MACHINE                     = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_loong64.go

    	F_SET_RW_HINT                     = 0x40c
    	F_SHLCK                           = 0x8
    	F_TEST                            = 0x3
    	F_TLOCK                           = 0x2
    	F_ULOCK                           = 0x0
    	F_UNLCK                           = 0x2
    	F_WRLCK                           = 0x1
    	HUPCL                             = 0x400
    	ICANON                            = 0x2
    	ICMPV6_FILTER                     = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	F_SETFL                        = 0x4
    	F_SETLK                        = 0xc
    	F_SETLKW                       = 0xd
    	F_SETLK_REMOTE                 = 0xe
    	F_SETOWN                       = 0x6
    	F_UNLCK                        = 0x2
    	F_UNLCKSYS                     = 0x4
    	F_WRLCK                        = 0x3
    	HUPCL                          = 0x4000
    	HW_MACHINE                     = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	F_SETFL                        = 0x4
    	F_SETLK                        = 0xc
    	F_SETLKW                       = 0xd
    	F_SETLK_REMOTE                 = 0xe
    	F_SETOWN                       = 0x6
    	F_UNLCK                        = 0x2
    	F_UNLCKSYS                     = 0x4
    	F_WRLCK                        = 0x3
    	HUPCL                          = 0x4000
    	HW_MACHINE                     = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		fcntl_cmd = F_SETLK
    	case LOCK_EX | LOCK_NB:
    		flock_type = F_WRLCK
    		fcntl_cmd = F_SETLK
    	case LOCK_EX:
    		flock_type = F_WRLCK
    		fcntl_cmd = F_SETLKW
    	case LOCK_UN:
    		flock_type = F_UNLCK
    		fcntl_cmd = F_SETLKW
    	default:
    	}
    
    	flock := Flock_t{
    		Type:   int16(flock_type),
    		Whence: int16(0),
    		Start:  int64(0),
    		Len:    int64(0),
    		Pid:    int32(Getppid()),
    	}
    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