-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Erik Sipsma <[email protected]>
- Loading branch information
Showing
4 changed files
with
1,525 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
//go:build linux | ||
// +build linux | ||
|
||
package client | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
|
||
"github.com/containerd/continuity/fs/fstest" | ||
"golang.org/x/sys/unix" | ||
) | ||
|
||
func mknod(path string, mode os.FileMode, maj, min uint32) fstest.Applier { | ||
return applyFn(func(root string) error { | ||
return unix.Mknod(filepath.Join(root, path), uint32(mode), int(unix.Mkdev(maj, min))) | ||
}) | ||
} | ||
|
||
func mkfifo(path string, mode os.FileMode) fstest.Applier { | ||
return mknod(path, mode|unix.S_IFIFO, 0, 0) | ||
} | ||
|
||
func mkchardev(path string, mode os.FileMode, maj, min uint32) fstest.Applier { | ||
return mknod(path, mode|unix.S_IFCHR, maj, min) | ||
} |
Oops, something went wrong.