aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/osutil/osutil_fuchsia.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/osutil/osutil_fuchsia.go')
-rw-r--r--pkg/osutil/osutil_fuchsia.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkg/osutil/osutil_fuchsia.go b/pkg/osutil/osutil_fuchsia.go
index 1ebd64eb4..fce4e38ba 100644
--- a/pkg/osutil/osutil_fuchsia.go
+++ b/pkg/osutil/osutil_fuchsia.go
@@ -6,7 +6,6 @@
package osutil
import (
- "fmt"
"os"
"os/exec"
"time"
@@ -27,14 +26,6 @@ func SystemMemorySize() uint64 {
return 0
}
-func CreateMemMappedFile(size int) (f *os.File, mem []byte, err error) {
- return nil, nil, fmt.Errorf("CreateMemMappedFile is not implemented")
-}
-
-func CloseMemMappedFile(f *os.File, mem []byte) error {
- return fmt.Errorf("CloseMemMappedFile is not implemented")
-}
-
func ProcessExitStatus(ps *os.ProcessState) int {
// TODO: can be extracted from ExitStatus string.
return 0