Files

80 lines
1.6 KiB
Go
Raw Permalink Normal View History

// Copyright 2018 The gVisor Authors.
2018-06-21 10:52:33 -07:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package linux
// Commands from linux/fcntl.h.
2018-06-21 10:52:33 -07:00
const (
2019-12-05 17:27:15 -08:00
F_DUPFD = 0
F_GETFD = 1
F_SETFD = 2
F_GETFL = 3
F_SETFL = 4
2021-01-22 13:55:42 -08:00
F_GETLK = 5
2019-12-05 17:27:15 -08:00
F_SETLK = 6
F_SETLKW = 7
F_SETOWN = 8
F_GETOWN = 9
F_SETSIG = 10
F_GETSIG = 11
2019-12-05 17:27:15 -08:00
F_SETOWN_EX = 15
F_GETOWN_EX = 16
2023-03-02 10:12:08 -08:00
F_OFD_GETLK = 36
F_OFD_SETLK = 37
F_OFD_SETLKW = 38
F_DUPFD_CLOEXEC = 1024 + 6
F_SETPIPE_SZ = 1024 + 7
F_GETPIPE_SZ = 1024 + 8
2018-06-21 10:52:33 -07:00
)
2018-07-27 12:26:42 -07:00
2019-07-09 16:16:46 -07:00
// Commands for F_SETLK.
const (
2019-12-05 17:27:15 -08:00
F_RDLCK = 0
F_WRLCK = 1
F_UNLCK = 2
2019-07-09 16:16:46 -07:00
)
2018-07-27 12:26:42 -07:00
// Flags for fcntl.
const (
FD_CLOEXEC = 00000001
)
2019-07-09 16:16:46 -07:00
2019-12-05 17:27:15 -08:00
// Flock is the lock structure for F_SETLK.
//
// +marshal
2019-07-09 16:16:46 -07:00
type Flock struct {
Type int16
Whence int16
_ [4]byte
Start int64
Len int64
2021-01-22 13:55:42 -08:00
PID int32
2019-07-09 16:16:46 -07:00
_ [4]byte
}
2019-12-05 17:27:15 -08:00
2020-06-27 21:32:16 -07:00
// Owner types for F_SETOWN_EX and F_GETOWN_EX.
2019-12-05 17:27:15 -08:00
const (
F_OWNER_TID = 0
F_OWNER_PID = 1
F_OWNER_PGRP = 2
)
// FOwnerEx is the owner structure for F_SETOWN_EX and F_GETOWN_EX.
//
// +marshal
2019-12-05 17:27:15 -08:00
type FOwnerEx struct {
Type int32
PID int32
}