Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for O_EXLOCK (0.14 sec)

  1. src/cmd/go/internal/lockedfile/lockedfile_filelock.go

    import (
    	"io/fs"
    	"os"
    
    	"cmd/go/internal/lockedfile/internal/filelock"
    )
    
    func openFile(name string, flag int, perm fs.FileMode) (*os.File, error) {
    	// On BSD systems, we could add the O_SHLOCK or O_EXLOCK flag to the OpenFile
    	// call instead of locking separately, but we have to support separate locking
    	// calls for Linux and Windows anyway, so it's simpler to use that approach
    	// consistently.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. src/syscall/zerrors_darwin_arm64.go

    	O_DIRECTORY                       = 0x100000
    	O_DP_GETRAWENCRYPTED              = 0x1
    	O_DSYNC                           = 0x400000
    	O_EVTONLY                         = 0x8000
    	O_EXCL                            = 0x800
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x20000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  3. src/syscall/zerrors_freebsd_arm.go

    	O_DIRECT                          = 0x10000
    	O_DIRECTORY                       = 0x20000
    	O_EXCL                            = 0x800
    	O_EXEC                            = 0x40000
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x8000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.3K bytes
    - Viewed (0)
  4. src/syscall/zerrors_freebsd_arm64.go

    	O_DIRECT                          = 0x10000
    	O_DIRECTORY                       = 0x20000
    	O_EXCL                            = 0x800
    	O_EXEC                            = 0x40000
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x8000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  5. src/syscall/zerrors_freebsd_riscv64.go

    	O_DIRECT                          = 0x10000
    	O_DIRECTORY                       = 0x20000
    	O_EXCL                            = 0x800
    	O_EXEC                            = 0x40000
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x8000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 67.4K bytes
    - Viewed (0)
  6. src/syscall/zerrors_openbsd_arm64.go

    	O_CLOEXEC                         = 0x10000
    	O_CREAT                           = 0x200
    	O_DIRECTORY                       = 0x20000
    	O_DSYNC                           = 0x80
    	O_EXCL                            = 0x800
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x8000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 66.4K bytes
    - Viewed (0)
  7. src/syscall/zerrors_netbsd_arm64.go

    	O_DIRECT                          = 0x80000
    	O_DIRECTORY                       = 0x200000
    	O_DSYNC                           = 0x10000
    	O_EXCL                            = 0x800
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x8000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
  8. src/syscall/zerrors_netbsd_386.go

    	O_DIRECT                          = 0x80000
    	O_DIRECTORY                       = 0x200000
    	O_DSYNC                           = 0x10000
    	O_EXCL                            = 0x800
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x8000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  9. src/syscall/zerrors_openbsd_ppc64.go

    	O_CREAT                           = 0x200
    	O_DIRECTORY                       = 0x20000
    	O_DSYNC                           = 0x80
    	O_EXCL                            = 0x800
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x8000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  10. src/syscall/zerrors_openbsd_riscv64.go

    	O_CLOEXEC                         = 0x10000
    	O_CREAT                           = 0x200
    	O_DIRECTORY                       = 0x20000
    	O_DSYNC                           = 0x80
    	O_EXCL                            = 0x800
    	O_EXLOCK                          = 0x20
    	O_FSYNC                           = 0x80
    	O_NDELAY                          = 0x4
    	O_NOCTTY                          = 0x8000
    	O_NOFOLLOW                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 67.1K bytes
    - Viewed (0)
Back to top