aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
diff options
context:
space:
mode:
authorLibravatar Rutger Broekhoff2024-01-02 18:56:31 +0100
committerLibravatar Rutger Broekhoff2024-01-02 18:56:31 +0100
commit8db41da676ac8368ef7c2549d56239a5ff5eedde (patch)
tree09c427fd66de2ec1ebffc8342f5fdbb84b0701b5 /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
parentd4f75fb6db22e57577867445a022227e70958931 (diff)
downloadgitolfs3-8db41da676ac8368ef7c2549d56239a5ff5eedde.tar.gz
gitolfs3-8db41da676ac8368ef7c2549d56239a5ff5eedde.zip
Delete vendor directory
Diffstat (limited to 'vendor/golang.org/x/sys/unix/syscall_freebsd_386.go')
-rw-r--r--vendor/golang.org/x/sys/unix/syscall_freebsd_386.go64
1 files changed, 0 insertions, 64 deletions
diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
deleted file mode 100644
index 3967bca..0000000
--- a/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
+++ /dev/null
@@ -1,64 +0,0 @@
1// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5//go:build 386 && freebsd
6
7package unix
8
9import (
10 "syscall"
11 "unsafe"
12)
13
14func setTimespec(sec, nsec int64) Timespec {
15 return Timespec{Sec: int32(sec), Nsec: int32(nsec)}
16}
17
18func setTimeval(sec, usec int64) Timeval {
19 return Timeval{Sec: int32(sec), Usec: int32(usec)}
20}
21
22func SetKevent(k *Kevent_t, fd, mode, flags int) {
23 k.Ident = uint32(fd)
24 k.Filter = int16(mode)
25 k.Flags = uint16(flags)
26}
27
28func (iov *Iovec) SetLen(length int) {
29 iov.Len = uint32(length)
30}
31
32func (msghdr *Msghdr) SetControllen(length int) {
33 msghdr.Controllen = uint32(length)
34}
35
36func (msghdr *Msghdr) SetIovlen(length int) {
37 msghdr.Iovlen = int32(length)
38}
39
40func (cmsg *Cmsghdr) SetLen(length int) {
41 cmsg.Len = uint32(length)
42}
43
44func (d *PtraceIoDesc) SetLen(length int) {
45 d.Len = uint32(length)
46}
47
48func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
49 var writtenOut uint64 = 0
50 _, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr((*offset)>>32), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0)
51
52 written = int(writtenOut)
53
54 if e1 != 0 {
55 err = e1
56 }
57 return
58}
59
60func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
61
62func PtraceGetFsBase(pid int, fsbase *int64) (err error) {
63 return ptracePtr(PT_GETFSBASE, pid, unsafe.Pointer(fsbase), 0)
64}