ADDED:
* Convenience function to return a namespace FD and its type from a
  namespace ID (Linux only)
This commit is contained in:
brent saner
2025-10-07 17:11:37 -04:00
parent d7db23d58c
commit 35c56d3f98
2 changed files with 40 additions and 4 deletions

9
errs/errs_linux.go Normal file
View File

@@ -0,0 +1,9 @@
package errs
import (
"errors"
)
var (
ErrInvalidNs error = errors.New("invalid namespace identifier")
)