Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go-fuse
Commits
3e4edc88
Commit
3e4edc88
authored
Apr 09, 2024
by
lch
Committed by
lchopn
Apr 20, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
splice: add build tag to prevent building other than linux
Change-Id: Ib1e1e1054db73df031e4be958206fc94bbea1236
parent
6cc11438
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
20 deletions
+12
-20
splice/copy.go
splice/copy.go
+2
-0
splice/copy_test.go
splice/copy_test.go
+2
-0
splice/pair.go
splice/pair.go
+2
-0
splice/pair_darwin.go
splice/pair_darwin.go
+0
-20
splice/pool.go
splice/pool.go
+2
-0
splice/splice.go
splice/splice.go
+2
-0
splice/splice_test.go
splice/splice_test.go
+2
-0
No files found.
splice/copy.go
View file @
3e4edc88
//go:build linux
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
...
...
splice/copy_test.go
View file @
3e4edc88
//go:build linux
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
...
...
splice/pair.go
View file @
3e4edc88
//go:build linux
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
...
...
splice/pair_darwin.go
deleted
100644 → 0
View file @
6cc11438
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
func
(
p
*
Pair
)
LoadFromAt
(
fd
uintptr
,
sz
int
,
off
int64
)
(
int
,
error
)
{
panic
(
"not implemented"
)
return
0
,
nil
}
func
(
p
*
Pair
)
LoadFrom
(
fd
uintptr
,
sz
int
)
(
int
,
error
)
{
panic
(
"not implemented"
)
return
0
,
nil
}
func
(
p
*
Pair
)
WriteTo
(
fd
uintptr
,
n
int
)
(
int
,
error
)
{
panic
(
"not implemented"
)
return
0
,
nil
}
splice/pool.go
View file @
3e4edc88
//go:build linux
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
...
...
splice/splice.go
View file @
3e4edc88
//go:build linux
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
...
...
splice/splice_test.go
View file @
3e4edc88
//go:build linux
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment