4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-03 07:17:44 +00:00

Update dependencies (#1784)

This commit is contained in:
Wim
2022-04-01 00:23:19 +02:00
committed by GitHub
parent 4ab72acec6
commit c6716e030c
255 changed files with 69606 additions and 58489 deletions

1
vendor/modernc.org/memory/AUTHORS generated vendored
View File

@ -10,3 +10,4 @@
Jan Mercl <0xjnml@gmail.com>
Steffen Butzer <steffen(dot)butzer@outlook.com>
Gleb Sakhnov <gleb.sakhnov@gmail.com>

View File

@ -9,3 +9,4 @@
Jan Mercl <0xjnml@gmail.com>
Steffen Butzer <steffen(dot)butzer@outlook.com>
ZHU Zijia <piggynl@outlook.com>
Gleb Sakhnov <gleb.sakhnov@gmail.com>

View File

@ -1,7 +1,9 @@
// Copyright 2017 The Memory Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build (darwin && (amd64 || arm64)) || (openbsd && (386 || amd64))
//go:build amd64 || arm64
// +build amd64 arm64
package memory

View File

@ -3,6 +3,7 @@
// license that can be found in the LICENSE-GO file.
//go:build freebsd && 386
// +build freebsd,386
package memory

View File

@ -3,6 +3,7 @@
// license that can be found in the LICENSE-GO file.
//go:build freebsd && amd64
// +build freebsd,amd64
package memory

View File

@ -3,6 +3,8 @@
// license that can be found in the LICENSE-GO file.
//go:build linux && (386 || arm || mips || mipsle)
// +build linux
// +build 386 arm mips mipsle
package memory

View File

@ -3,6 +3,8 @@
// license that can be found in the LICENSE-GO file.
//go:build linux && (amd64 || arm64 || mips64 || mips64le || riscv64)
// +build linux
// +build amd64 arm64 mips64 mips64le riscv64
package memory

View File

@ -3,6 +3,7 @@
// license that can be found in the LICENSE-GO file.
//go:build netbsd && 386
// +build netbsd,386
package memory

View File

@ -3,6 +3,7 @@
// license that can be found in the LICENSE-GO file.
//go:build netbsd && amd64
// +build netbsd,amd64
package memory

19
vendor/modernc.org/memory/mmap_openbsd.go generated vendored Normal file
View File

@ -0,0 +1,19 @@
// Copyright 2017 The Memory Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build 386 || amd64
// +build 386 amd64
package memory
import (
_ "unsafe"
)
// Function syscall.mmap for darwin and openbsd calls internal/abi.FuncPCABI0,
// which is implemented as a compile intrinsic so the code cannot be reused.
// Using go:linkname directive to link mmapSyscall to syscall.mmap
//go:linkname mmapSyscall syscall.mmap
func mmapSyscall(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)