mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 07:36:27 -04:00
Merge d7bc5637d0 into c07f4d381b
This commit is contained in:
commit
4f95528734
4
go.mod
4
go.mod
|
|
@ -1,6 +1,6 @@
|
||||||
module github.com/jesseduffield/lazygit
|
module github.com/jesseduffield/lazygit
|
||||||
|
|
||||||
go 1.25.0
|
go 1.26.0
|
||||||
|
|
||||||
// This is necessary to ignore test files when executing gofumpt.
|
// This is necessary to ignore test files when executing gofumpt.
|
||||||
ignore ./test
|
ignore ./test
|
||||||
|
|
@ -42,7 +42,7 @@ require (
|
||||||
github.com/xo/terminfo v1.0.0
|
github.com/xo/terminfo v1.0.0
|
||||||
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
|
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
|
||||||
golang.org/x/sync v0.22.0
|
golang.org/x/sync v0.22.0
|
||||||
golang.org/x/sys v0.47.0
|
golang.org/x/sys v0.48.0
|
||||||
gopkg.in/ozeidan/fuzzy-patricia.v3 v3.0.0
|
gopkg.in/ozeidan/fuzzy-patricia.v3 v3.0.0
|
||||||
gopkg.in/yaml.v3 v3.0.1
|
gopkg.in/yaml.v3 v3.0.1
|
||||||
)
|
)
|
||||||
|
|
|
||||||
4
go.sum
4
go.sum
|
|
@ -162,8 +162,8 @@ golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBc
|
||||||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs=
|
golang.org/x/sys v0.48.0 h1:bbX/i/6MgT9BVLM9RT1thmxL04yeTAhbEz4SyadbXoo=
|
||||||
golang.org/x/sys v0.47.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
golang.org/x/sys v0.48.0/go.mod h1:hNLxWAXmnKAxqDtdwIYC4bM9oQPEecfsnNMuSxOs3og=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||||
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
|
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
|
||||||
|
|
|
||||||
8
vendor/golang.org/x/sys/unix/ifreq_linux.go
generated
vendored
8
vendor/golang.org/x/sys/unix/ifreq_linux.go
generated
vendored
|
|
@ -22,7 +22,13 @@ import (
|
||||||
// fields can be get and set using the following methods:
|
// fields can be get and set using the following methods:
|
||||||
// - Uint16/SetUint16: flags
|
// - Uint16/SetUint16: flags
|
||||||
// - Uint32/SetUint32: ifindex, metric, mtu
|
// - Uint32/SetUint32: ifindex, metric, mtu
|
||||||
type Ifreq struct{ raw ifreq }
|
type Ifreq struct {
|
||||||
|
// Aligns the union for the accessors below, which cast it in place;
|
||||||
|
// the generated ifreq is all byte arrays, so its alignment is one.
|
||||||
|
_ [0]int64
|
||||||
|
|
||||||
|
raw ifreq
|
||||||
|
}
|
||||||
|
|
||||||
// NewIfreq creates an Ifreq with the input network interface name after
|
// NewIfreq creates an Ifreq with the input network interface name after
|
||||||
// validating the name does not exceed IFNAMSIZ-1 (trailing NULL required)
|
// validating the name does not exceed IFNAMSIZ-1 (trailing NULL required)
|
||||||
|
|
|
||||||
7
vendor/golang.org/x/sys/unix/ioctl_linux.go
generated
vendored
7
vendor/golang.org/x/sys/unix/ioctl_linux.go
generated
vendored
|
|
@ -332,3 +332,10 @@ func IoctlLoopSetStatus64(fd int, value *LoopInfo64) error {
|
||||||
func IoctlLoopConfigure(fd int, value *LoopConfig) error {
|
func IoctlLoopConfigure(fd int, value *LoopConfig) error {
|
||||||
return ioctlPtr(fd, LOOP_CONFIGURE, unsafe.Pointer(value))
|
return ioctlPtr(fd, LOOP_CONFIGURE, unsafe.Pointer(value))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IoctlPidfdInfo fetches information about a pidfd.
|
||||||
|
// The Mask field of the info argument indicates which
|
||||||
|
// values to fetch.
|
||||||
|
func IoctlPidfdInfo(fd int, info *PidfdInfo) error {
|
||||||
|
return ioctlPtr(fd, PIDFD_GET_INFO, unsafe.Pointer(info))
|
||||||
|
}
|
||||||
|
|
|
||||||
9
vendor/golang.org/x/sys/unix/mkerrors.sh
generated
vendored
9
vendor/golang.org/x/sys/unix/mkerrors.sh
generated
vendored
|
|
@ -290,14 +290,7 @@ struct ltchars {
|
||||||
#include <mtd/mtd-user.h>
|
#include <mtd/mtd-user.h>
|
||||||
#include <net/route.h>
|
#include <net/route.h>
|
||||||
|
|
||||||
#if defined(__sparc__)
|
|
||||||
// On sparc{,64}, the kernel defines struct termios2 itself which clashes with the
|
|
||||||
// definition in glibc. As only the error constants are needed here, include the
|
|
||||||
// generic termibits.h (which is included by termbits.h on sparc).
|
|
||||||
#include <asm-generic/termbits.h>
|
|
||||||
#else
|
|
||||||
#include <asm/termbits.h>
|
#include <asm/termbits.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PTRACE_GETREGS
|
#ifndef PTRACE_GETREGS
|
||||||
#define PTRACE_GETREGS 0xc
|
#define PTRACE_GETREGS 0xc
|
||||||
|
|
@ -544,7 +537,7 @@ ccflags="$@"
|
||||||
$2 ~ /^LO_(KEY|NAME)_SIZE$/ ||
|
$2 ~ /^LO_(KEY|NAME)_SIZE$/ ||
|
||||||
$2 ~ /^LOOP_(CLR|CTL|GET|SET)_/ ||
|
$2 ~ /^LOOP_(CLR|CTL|GET|SET)_/ ||
|
||||||
$2 == "LOOP_CONFIGURE" ||
|
$2 == "LOOP_CONFIGURE" ||
|
||||||
$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MREMAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL|TCPOPT|UDP)_/ ||
|
$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MREMAP|MFD|MLOCK|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL|TCPOPT|UDP)_/ ||
|
||||||
$2 ~ /^NFC_(GENL|PROTO|COMM|RF|SE|DIRECTION|LLCP|SOCKPROTO)_/ ||
|
$2 ~ /^NFC_(GENL|PROTO|COMM|RF|SE|DIRECTION|LLCP|SOCKPROTO)_/ ||
|
||||||
$2 ~ /^NFC_.*_(MAX)?SIZE$/ ||
|
$2 ~ /^NFC_.*_(MAX)?SIZE$/ ||
|
||||||
$2 ~ /^PTP_/ ||
|
$2 ~ /^PTP_/ ||
|
||||||
|
|
|
||||||
2
vendor/golang.org/x/sys/unix/syscall.go
generated
vendored
2
vendor/golang.org/x/sys/unix/syscall.go
generated
vendored
|
|
@ -76,7 +76,7 @@ func BytePtrToString(p *byte) string {
|
||||||
// Find NUL terminator.
|
// Find NUL terminator.
|
||||||
n := 0
|
n := 0
|
||||||
for ptr := unsafe.Pointer(p); *(*byte)(ptr) != 0; n++ {
|
for ptr := unsafe.Pointer(p); *(*byte)(ptr) != 0; n++ {
|
||||||
ptr = unsafe.Pointer(uintptr(ptr) + 1)
|
ptr = unsafe.Add(ptr, 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
return string(unsafe.Slice(p, n))
|
return string(unsafe.Slice(p, n))
|
||||||
|
|
|
||||||
2
vendor/golang.org/x/sys/unix/syscall_bsd.go
generated
vendored
2
vendor/golang.org/x/sys/unix/syscall_bsd.go
generated
vendored
|
|
@ -188,7 +188,7 @@ func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
|
||||||
}
|
}
|
||||||
sa.raw.Len = byte(3 + n) // 2 for Family, Len; 1 for NUL
|
sa.raw.Len = byte(3 + n) // 2 for Family, Len; 1 for NUL
|
||||||
sa.raw.Family = AF_UNIX
|
sa.raw.Family = AF_UNIX
|
||||||
for i := 0; i < n; i++ {
|
for i := range n {
|
||||||
sa.raw.Path[i] = int8(name[i])
|
sa.raw.Path[i] = int8(name[i])
|
||||||
}
|
}
|
||||||
return unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil
|
return unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil
|
||||||
|
|
|
||||||
2
vendor/golang.org/x/sys/unix/syscall_linux.go
generated
vendored
2
vendor/golang.org/x/sys/unix/syscall_linux.go
generated
vendored
|
|
@ -2363,7 +2363,7 @@ func (fh *FileHandle) Bytes() []byte {
|
||||||
if n == 0 {
|
if n == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return unsafe.Slice((*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(&fh.fileHandle.Type))+4)), n)
|
return unsafe.Slice((*byte)(unsafe.Add(unsafe.Pointer(&fh.fileHandle.Type), 4)), n)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NameToHandleAt wraps the name_to_handle_at system call; it obtains
|
// NameToHandleAt wraps the name_to_handle_at system call; it obtains
|
||||||
|
|
|
||||||
2
vendor/golang.org/x/sys/unix/zerrors_linux.go
generated
vendored
2
vendor/golang.org/x/sys/unix/zerrors_linux.go
generated
vendored
|
|
@ -2048,6 +2048,7 @@ const (
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
MINIX_SUPER_MAGIC = 0x137f
|
MINIX_SUPER_MAGIC = 0x137f
|
||||||
MINIX_SUPER_MAGIC2 = 0x138f
|
MINIX_SUPER_MAGIC2 = 0x138f
|
||||||
|
MLOCK_ONFAULT = 0x1
|
||||||
MNT_DETACH = 0x2
|
MNT_DETACH = 0x2
|
||||||
MNT_EXPIRE = 0x4
|
MNT_EXPIRE = 0x4
|
||||||
MNT_FORCE = 0x1
|
MNT_FORCE = 0x1
|
||||||
|
|
@ -3862,6 +3863,7 @@ const (
|
||||||
TIOCPKT_NOSTOP = 0x10
|
TIOCPKT_NOSTOP = 0x10
|
||||||
TIOCPKT_START = 0x8
|
TIOCPKT_START = 0x8
|
||||||
TIOCPKT_STOP = 0x4
|
TIOCPKT_STOP = 0x4
|
||||||
|
TIOCSER_TEMT = 0x1
|
||||||
TIPC_ADDR_ID = 0x3
|
TIPC_ADDR_ID = 0x3
|
||||||
TIPC_ADDR_MCAST = 0x1
|
TIPC_ADDR_MCAST = 0x1
|
||||||
TIPC_ADDR_NAME = 0x2
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_386.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_386.go
generated
vendored
|
|
@ -483,7 +483,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSIG = 0x40045436
|
TIOCSIG = 0x40045436
|
||||||
TIOCSISO7816 = 0xc0285443
|
TIOCSISO7816 = 0xc0285443
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
generated
vendored
|
|
@ -484,7 +484,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSIG = 0x40045436
|
TIOCSIG = 0x40045436
|
||||||
TIOCSISO7816 = 0xc0285443
|
TIOCSISO7816 = 0xc0285443
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
generated
vendored
|
|
@ -489,7 +489,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSIG = 0x40045436
|
TIOCSIG = 0x40045436
|
||||||
TIOCSISO7816 = 0xc0285443
|
TIOCSISO7816 = 0xc0285443
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
generated
vendored
|
|
@ -483,7 +483,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSIG = 0x40045436
|
TIOCSIG = 0x40045436
|
||||||
TIOCSISO7816 = 0xc0285443
|
TIOCSISO7816 = 0xc0285443
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go
generated
vendored
|
|
@ -476,7 +476,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSIG = 0x40045436
|
TIOCSIG = 0x40045436
|
||||||
TIOCSISO7816 = 0xc0285443
|
TIOCSISO7816 = 0xc0285443
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
generated
vendored
|
|
@ -481,7 +481,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5489
|
TIOCSERGWILD = 0x5489
|
||||||
TIOCSERSETMULTI = 0x5490
|
TIOCSERSETMULTI = 0x5490
|
||||||
TIOCSERSWILD = 0x548a
|
TIOCSERSWILD = 0x548a
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x7401
|
TIOCSETD = 0x7401
|
||||||
TIOCSETN = 0x740a
|
TIOCSETN = 0x740a
|
||||||
TIOCSETP = 0x7409
|
TIOCSETP = 0x7409
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
generated
vendored
|
|
@ -481,7 +481,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5489
|
TIOCSERGWILD = 0x5489
|
||||||
TIOCSERSETMULTI = 0x5490
|
TIOCSERSETMULTI = 0x5490
|
||||||
TIOCSERSWILD = 0x548a
|
TIOCSERSWILD = 0x548a
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x7401
|
TIOCSETD = 0x7401
|
||||||
TIOCSETN = 0x740a
|
TIOCSETN = 0x740a
|
||||||
TIOCSETP = 0x7409
|
TIOCSETP = 0x7409
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
generated
vendored
|
|
@ -481,7 +481,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5489
|
TIOCSERGWILD = 0x5489
|
||||||
TIOCSERSETMULTI = 0x5490
|
TIOCSERSETMULTI = 0x5490
|
||||||
TIOCSERSWILD = 0x548a
|
TIOCSERSWILD = 0x548a
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x7401
|
TIOCSETD = 0x7401
|
||||||
TIOCSETN = 0x740a
|
TIOCSETN = 0x740a
|
||||||
TIOCSETP = 0x7409
|
TIOCSETP = 0x7409
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
generated
vendored
|
|
@ -481,7 +481,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5489
|
TIOCSERGWILD = 0x5489
|
||||||
TIOCSERSETMULTI = 0x5490
|
TIOCSERSETMULTI = 0x5490
|
||||||
TIOCSERSWILD = 0x548a
|
TIOCSERSWILD = 0x548a
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x7401
|
TIOCSETD = 0x7401
|
||||||
TIOCSETN = 0x740a
|
TIOCSETN = 0x740a
|
||||||
TIOCSETP = 0x7409
|
TIOCSETP = 0x7409
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go
generated
vendored
|
|
@ -535,7 +535,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETC = 0x80067411
|
TIOCSETC = 0x80067411
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSETN = 0x8006740a
|
TIOCSETN = 0x8006740a
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
generated
vendored
|
|
@ -539,7 +539,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETC = 0x80067411
|
TIOCSETC = 0x80067411
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSETN = 0x8006740a
|
TIOCSETN = 0x8006740a
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
generated
vendored
|
|
@ -539,7 +539,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETC = 0x80067411
|
TIOCSETC = 0x80067411
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSETN = 0x8006740a
|
TIOCSETN = 0x8006740a
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
generated
vendored
|
|
@ -486,7 +486,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSIG = 0x40045436
|
TIOCSIG = 0x40045436
|
||||||
TIOCSISO7816 = 0xc0285443
|
TIOCSISO7816 = 0xc0285443
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
generated
vendored
|
|
@ -545,7 +545,6 @@ const (
|
||||||
TIOCSERGWILD = 0x5454
|
TIOCSERGWILD = 0x5454
|
||||||
TIOCSERSETMULTI = 0x545b
|
TIOCSERSETMULTI = 0x545b
|
||||||
TIOCSERSWILD = 0x5455
|
TIOCSERSWILD = 0x5455
|
||||||
TIOCSER_TEMT = 0x1
|
|
||||||
TIOCSETD = 0x5423
|
TIOCSETD = 0x5423
|
||||||
TIOCSIG = 0x40045436
|
TIOCSIG = 0x40045436
|
||||||
TIOCSISO7816 = 0xc0285443
|
TIOCSISO7816 = 0xc0285443
|
||||||
|
|
|
||||||
35
vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
generated
vendored
35
vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
generated
vendored
|
|
@ -14,21 +14,21 @@ const (
|
||||||
ASI_LEON_DFLUSH = 0x11
|
ASI_LEON_DFLUSH = 0x11
|
||||||
ASI_LEON_IFLUSH = 0x10
|
ASI_LEON_IFLUSH = 0x10
|
||||||
ASI_LEON_MMUFLUSH = 0x18
|
ASI_LEON_MMUFLUSH = 0x18
|
||||||
B1000000 = 0x1008
|
B1000000 = 0x100c
|
||||||
B115200 = 0x1002
|
B115200 = 0x1002
|
||||||
B1152000 = 0x1009
|
B1152000 = 0x100d
|
||||||
B1500000 = 0x100a
|
B1500000 = 0x100e
|
||||||
B2000000 = 0x100b
|
B153600 = 0x1006
|
||||||
|
B2000000 = 0x100f
|
||||||
B230400 = 0x1003
|
B230400 = 0x1003
|
||||||
B2500000 = 0x100c
|
B307200 = 0x1007
|
||||||
B3000000 = 0x100d
|
|
||||||
B3500000 = 0x100e
|
|
||||||
B4000000 = 0x100f
|
|
||||||
B460800 = 0x1004
|
B460800 = 0x1004
|
||||||
B500000 = 0x1005
|
B500000 = 0x100a
|
||||||
B57600 = 0x1001
|
B57600 = 0x1001
|
||||||
B576000 = 0x1006
|
B576000 = 0x100b
|
||||||
B921600 = 0x1007
|
B614400 = 0x1008
|
||||||
|
B76800 = 0x1005
|
||||||
|
B921600 = 0x1009
|
||||||
BLKALIGNOFF = 0x2000127a
|
BLKALIGNOFF = 0x2000127a
|
||||||
BLKBSZGET = 0x40081270
|
BLKBSZGET = 0x40081270
|
||||||
BLKBSZSET = 0x80081271
|
BLKBSZSET = 0x80081271
|
||||||
|
|
@ -91,7 +91,7 @@ const (
|
||||||
FFDLY = 0x8000
|
FFDLY = 0x8000
|
||||||
FICLONE = 0x80049409
|
FICLONE = 0x80049409
|
||||||
FICLONERANGE = 0x8020940d
|
FICLONERANGE = 0x8020940d
|
||||||
FLUSHO = 0x1000
|
FLUSHO = 0x2000
|
||||||
FS_IOC_ENABLE_VERITY = 0x80806685
|
FS_IOC_ENABLE_VERITY = 0x80806685
|
||||||
FS_IOC_GETFLAGS = 0x40086601
|
FS_IOC_GETFLAGS = 0x40086601
|
||||||
FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b
|
FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b
|
||||||
|
|
@ -563,6 +563,9 @@ const (
|
||||||
TIOCM_CD = 0x40
|
TIOCM_CD = 0x40
|
||||||
TIOCM_CTS = 0x20
|
TIOCM_CTS = 0x20
|
||||||
TIOCM_DSR = 0x100
|
TIOCM_DSR = 0x100
|
||||||
|
TIOCM_LOOP = 0x8000
|
||||||
|
TIOCM_OUT1 = 0x2000
|
||||||
|
TIOCM_OUT2 = 0x4000
|
||||||
TIOCM_RI = 0x80
|
TIOCM_RI = 0x80
|
||||||
TIOCM_RNG = 0x80
|
TIOCM_RNG = 0x80
|
||||||
TIOCM_SR = 0x10
|
TIOCM_SR = 0x10
|
||||||
|
|
@ -641,10 +644,11 @@ const (
|
||||||
UBI_IOCVOLRMBLK = 0x20004f08
|
UBI_IOCVOLRMBLK = 0x20004f08
|
||||||
UBI_IOCVOLUP = 0x80084f00
|
UBI_IOCVOLUP = 0x80084f00
|
||||||
VDISCARD = 0xd
|
VDISCARD = 0xd
|
||||||
|
VDSUSP = 0xb
|
||||||
VEOF = 0x4
|
VEOF = 0x4
|
||||||
VEOL = 0xb
|
VEOL = 0x5
|
||||||
VEOL2 = 0x10
|
VEOL2 = 0x6
|
||||||
VMIN = 0x6
|
VMIN = 0x4
|
||||||
VREPRINT = 0xc
|
VREPRINT = 0xc
|
||||||
VSTART = 0x8
|
VSTART = 0x8
|
||||||
VSTOP = 0x9
|
VSTOP = 0x9
|
||||||
|
|
@ -664,6 +668,7 @@ const (
|
||||||
WDIOC_KEEPALIVE = 0x40045705
|
WDIOC_KEEPALIVE = 0x40045705
|
||||||
WDIOC_SETOPTIONS = 0x40045704
|
WDIOC_SETOPTIONS = 0x40045704
|
||||||
WORDSIZE = 0x40
|
WORDSIZE = 0x40
|
||||||
|
WRAP = 0x20000
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
_HIDIOCGRAWNAME = 0x40804804
|
_HIDIOCGRAWNAME = 0x40804804
|
||||||
|
|
|
||||||
86
vendor/golang.org/x/sys/unix/ztypes_linux.go
generated
vendored
86
vendor/golang.org/x/sys/unix/ztypes_linux.go
generated
vendored
|
|
@ -4264,19 +4264,29 @@ type HwTstampConfig struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
HWTSTAMP_FILTER_NONE = 0x0
|
HWTSTAMP_FILTER_NONE = 0x0
|
||||||
HWTSTAMP_FILTER_ALL = 0x1
|
HWTSTAMP_FILTER_ALL = 0x1
|
||||||
HWTSTAMP_FILTER_SOME = 0x2
|
HWTSTAMP_FILTER_SOME = 0x2
|
||||||
HWTSTAMP_FILTER_PTP_V1_L4_EVENT = 0x3
|
HWTSTAMP_FILTER_PTP_V1_L4_EVENT = 0x3
|
||||||
HWTSTAMP_FILTER_PTP_V2_L4_EVENT = 0x6
|
HWTSTAMP_FILTER_PTP_V1_L4_SYNC = 0x4
|
||||||
HWTSTAMP_FILTER_PTP_V2_L2_EVENT = 0x9
|
HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ = 0x5
|
||||||
HWTSTAMP_FILTER_PTP_V2_EVENT = 0xc
|
HWTSTAMP_FILTER_PTP_V2_L4_EVENT = 0x6
|
||||||
|
HWTSTAMP_FILTER_PTP_V2_L4_SYNC = 0x7
|
||||||
|
HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ = 0x8
|
||||||
|
HWTSTAMP_FILTER_PTP_V2_L2_EVENT = 0x9
|
||||||
|
HWTSTAMP_FILTER_PTP_V2_L2_SYNC = 0xa
|
||||||
|
HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ = 0xb
|
||||||
|
HWTSTAMP_FILTER_PTP_V2_EVENT = 0xc
|
||||||
|
HWTSTAMP_FILTER_PTP_V2_SYNC = 0xd
|
||||||
|
HWTSTAMP_FILTER_PTP_V2_DELAY_REQ = 0xe
|
||||||
|
HWTSTAMP_FILTER_NTP_ALL = 0xf
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
HWTSTAMP_TX_OFF = 0x0
|
HWTSTAMP_TX_OFF = 0x0
|
||||||
HWTSTAMP_TX_ON = 0x1
|
HWTSTAMP_TX_ON = 0x1
|
||||||
HWTSTAMP_TX_ONESTEP_SYNC = 0x2
|
HWTSTAMP_TX_ONESTEP_SYNC = 0x2
|
||||||
|
HWTSTAMP_TX_ONESTEP_P2P = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
||||||
|
|
@ -4541,6 +4551,48 @@ const (
|
||||||
LANDLOCK_RULE_PATH_BENEATH = 0x1
|
LANDLOCK_RULE_PATH_BENEATH = 0x1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
PIDFD_SIGNAL_THREAD = 0x1
|
||||||
|
PIDFD_SIGNAL_THREAD_GROUP = 0x2
|
||||||
|
PIDFD_SIGNAL_PROCESS_GROUP = 0x4
|
||||||
|
PIDFD_SELF_THREAD = -0x2710
|
||||||
|
PIDFD_SELF_THREAD_GROUP = -0x2711
|
||||||
|
PIDFD_SELF = -0x2710
|
||||||
|
PIDFD_SELF_PROCESS = -0x2711
|
||||||
|
PIDFD_INFO_PID = 0x1
|
||||||
|
PIDFD_INFO_CREDS = 0x2
|
||||||
|
PIDFD_INFO_CGROUPID = 0x4
|
||||||
|
PIDFD_INFO_EXIT = 0x8
|
||||||
|
PIDFD_INFO_COREDUMP = 0x10
|
||||||
|
PIDFD_COREDUMPED = 0x1
|
||||||
|
PIDFD_COREDUMP_SKIP = 0x2
|
||||||
|
PIDFD_COREDUMP_USER = 0x4
|
||||||
|
PIDFD_COREDUMP_ROOT = 0x8
|
||||||
|
PIDFD_INFO_SIZE_VER0 = 0x40
|
||||||
|
PIDFD_GET_INFO = 0xc048ff0b
|
||||||
|
)
|
||||||
|
|
||||||
|
const SizeofPidfdInfo = 0x48
|
||||||
|
|
||||||
|
type PidfdInfo struct {
|
||||||
|
Mask uint64
|
||||||
|
Cgroupid uint64
|
||||||
|
Pid uint32
|
||||||
|
Tgid uint32
|
||||||
|
Ppid uint32
|
||||||
|
Ruid uint32
|
||||||
|
Rgid uint32
|
||||||
|
Euid uint32
|
||||||
|
Egid uint32
|
||||||
|
Suid uint32
|
||||||
|
Sgid uint32
|
||||||
|
Fsuid uint32
|
||||||
|
Fsgid uint32
|
||||||
|
Exit_code int32
|
||||||
|
Coredump_mask uint32
|
||||||
|
_ uint32
|
||||||
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
IPC_CREAT = 0x200
|
IPC_CREAT = 0x200
|
||||||
IPC_EXCL = 0x400
|
IPC_EXCL = 0x400
|
||||||
|
|
@ -6473,3 +6525,23 @@ type GPIOV2LineEvent struct {
|
||||||
Line_seqno uint32
|
Line_seqno uint32
|
||||||
_ [6]uint32
|
_ [6]uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMI_MAX_ADDR_SIZE = 0x20
|
||||||
|
IPMI_SYSTEM_INTERFACE_ADDR_TYPE = 0xc
|
||||||
|
IPMI_BMC_CHANNEL = 0xf
|
||||||
|
IPMI_RESPONSE_RECV_TYPE = 0x1
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMISystemInterfaceAddr struct {
|
||||||
|
Type int32
|
||||||
|
Channel int16
|
||||||
|
Lun uint8
|
||||||
|
_ [1]byte
|
||||||
|
}
|
||||||
|
type IPMIMsg struct {
|
||||||
|
Netfn uint8
|
||||||
|
Cmd uint8
|
||||||
|
Len uint16
|
||||||
|
Data *uint8
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_386.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_386.go
generated
vendored
|
|
@ -680,7 +680,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0xff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0xff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0xff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0xff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0xff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0xff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0xff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0xff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0xff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0xff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -715,3 +726,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x8014690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc018690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
generated
vendored
|
|
@ -697,7 +697,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0xff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0xff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0xff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0xff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0xff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0xff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0xff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0xff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0xff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0xff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -729,3 +740,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x8028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
generated
vendored
|
|
@ -674,7 +674,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0xff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0xff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0xff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0xff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0xff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0xff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0xff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0xff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0xff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0xff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -709,3 +720,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x8014690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc018690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
generated
vendored
|
|
@ -676,7 +676,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0xff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0xff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0xff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0xff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0xff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0xff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0xff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0xff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0xff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0xff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -708,3 +719,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x8028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go
generated
vendored
|
|
@ -677,7 +677,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0xff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0xff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0xff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0xff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0xff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0xff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0xff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0xff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0xff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0xff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -709,3 +720,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x8028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
generated
vendored
|
|
@ -680,7 +680,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x80
|
PIDFD_NONBLOCK = 0x80
|
||||||
|
PIDFD_THREAD = 0x400
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0x2000ff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0x2000ff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0x2000ff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0x2000ff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0x2000ff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0x2000ff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0x2000ff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0x2000ff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0x2000ff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0x2000ff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -714,3 +725,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x4014690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc018690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
generated
vendored
|
|
@ -679,7 +679,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x80
|
PIDFD_NONBLOCK = 0x80
|
||||||
|
PIDFD_THREAD = 0x400
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0x2000ff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0x2000ff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0x2000ff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0x2000ff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0x2000ff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0x2000ff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0x2000ff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0x2000ff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0x2000ff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0x2000ff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -711,3 +722,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x4028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
generated
vendored
|
|
@ -679,7 +679,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x80
|
PIDFD_NONBLOCK = 0x80
|
||||||
|
PIDFD_THREAD = 0x400
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0x2000ff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0x2000ff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0x2000ff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0x2000ff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0x2000ff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0x2000ff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0x2000ff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0x2000ff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0x2000ff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0x2000ff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -711,3 +722,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x4028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
generated
vendored
|
|
@ -680,7 +680,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x80
|
PIDFD_NONBLOCK = 0x80
|
||||||
|
PIDFD_THREAD = 0x400
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0x2000ff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0x2000ff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0x2000ff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0x2000ff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0x2000ff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0x2000ff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0x2000ff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0x2000ff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0x2000ff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0x2000ff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -714,3 +725,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x4014690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc018690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go
generated
vendored
|
|
@ -686,7 +686,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0x2000ff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0x2000ff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0x2000ff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0x2000ff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0x2000ff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0x2000ff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0x2000ff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0x2000ff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0x2000ff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0x2000ff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -722,3 +733,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x4014690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc018690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int32
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
generated
vendored
|
|
@ -686,7 +686,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0x2000ff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0x2000ff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0x2000ff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0x2000ff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0x2000ff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0x2000ff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0x2000ff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0x2000ff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0x2000ff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0x2000ff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -717,3 +728,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x4028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
generated
vendored
|
|
@ -686,7 +686,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0x2000ff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0x2000ff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0x2000ff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0x2000ff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0x2000ff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0x2000ff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0x2000ff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0x2000ff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0x2000ff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0x2000ff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -717,3 +728,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x4028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
generated
vendored
|
|
@ -704,7 +704,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0xff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0xff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0xff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0xff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0xff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0xff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0xff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0xff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0xff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0xff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -796,3 +807,22 @@ const (
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x8028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
generated
vendored
|
|
@ -700,7 +700,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x800
|
PIDFD_NONBLOCK = 0x800
|
||||||
|
PIDFD_THREAD = 0x80
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0xff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0xff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0xff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0xff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0xff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0xff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0xff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0xff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0xff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0xff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -731,3 +742,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x8044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x8028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
32
vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
generated
vendored
32
vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
generated
vendored
|
|
@ -681,7 +681,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PIDFD_NONBLOCK = 0x4000
|
PIDFD_NONBLOCK = 0x4000
|
||||||
|
PIDFD_THREAD = 0x800
|
||||||
|
PIDFD_GET_CGROUP_NAMESPACE = 0x2000ff01
|
||||||
|
PIDFD_GET_IPC_NAMESPACE = 0x2000ff02
|
||||||
|
PIDFD_GET_MNT_NAMESPACE = 0x2000ff03
|
||||||
|
PIDFD_GET_NET_NAMESPACE = 0x2000ff04
|
||||||
|
PIDFD_GET_PID_NAMESPACE = 0x2000ff05
|
||||||
|
PIDFD_GET_PID_FOR_CHILDREN_NAMESPACE = 0x2000ff06
|
||||||
|
PIDFD_GET_TIME_NAMESPACE = 0x2000ff07
|
||||||
|
PIDFD_GET_TIME_FOR_CHILDREN_NAMESPACE = 0x2000ff08
|
||||||
|
PIDFD_GET_USER_NAMESPACE = 0x2000ff09
|
||||||
|
PIDFD_GET_UTS_NAMESPACE = 0x2000ff0a
|
||||||
)
|
)
|
||||||
|
|
||||||
type SysvIpcPerm struct {
|
type SysvIpcPerm struct {
|
||||||
|
|
@ -712,3 +723,22 @@ type SysvShmDesc struct {
|
||||||
const (
|
const (
|
||||||
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
GPIO_GET_CHIPINFO_IOCTL = 0x4044b401
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IPMICTL_SEND_COMMAND = 0x4028690d
|
||||||
|
IPMICTL_RECEIVE_MSG = 0xc030690c
|
||||||
|
)
|
||||||
|
|
||||||
|
type IPMIReq struct {
|
||||||
|
Addr *uint8
|
||||||
|
Len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
type IPMIRecv struct {
|
||||||
|
Recv_type int32
|
||||||
|
Addr *uint8
|
||||||
|
Addr_len uint32
|
||||||
|
Msgid int64
|
||||||
|
Msg IPMIMsg
|
||||||
|
}
|
||||||
|
|
|
||||||
1
vendor/golang.org/x/sys/windows/types_windows.go
generated
vendored
1
vendor/golang.org/x/sys/windows/types_windows.go
generated
vendored
|
|
@ -1065,6 +1065,7 @@ const (
|
||||||
SO_BROADCAST = 32
|
SO_BROADCAST = 32
|
||||||
SO_LINGER = 128
|
SO_LINGER = 128
|
||||||
SO_RCVBUF = 0x1002
|
SO_RCVBUF = 0x1002
|
||||||
|
SO_SNDTIMEO = 0x1005
|
||||||
SO_RCVTIMEO = 0x1006
|
SO_RCVTIMEO = 0x1006
|
||||||
SO_SNDBUF = 0x1001
|
SO_SNDBUF = 0x1001
|
||||||
SO_UPDATE_ACCEPT_CONTEXT = 0x700b
|
SO_UPDATE_ACCEPT_CONTEXT = 0x700b
|
||||||
|
|
|
||||||
4
vendor/modules.txt
vendored
4
vendor/modules.txt
vendored
|
|
@ -177,8 +177,8 @@ golang.org/x/mod/semver
|
||||||
## explicit; go 1.25.0
|
## explicit; go 1.25.0
|
||||||
golang.org/x/sync/errgroup
|
golang.org/x/sync/errgroup
|
||||||
golang.org/x/sync/semaphore
|
golang.org/x/sync/semaphore
|
||||||
# golang.org/x/sys v0.47.0
|
# golang.org/x/sys v0.48.0
|
||||||
## explicit; go 1.25.0
|
## explicit; go 1.26.0
|
||||||
golang.org/x/sys/plan9
|
golang.org/x/sys/plan9
|
||||||
golang.org/x/sys/unix
|
golang.org/x/sys/unix
|
||||||
golang.org/x/sys/windows
|
golang.org/x/sys/windows
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue