Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

Commit

Permalink
Move osutil to sys package
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
  • Loading branch information
crosbymichael committed Nov 29, 2016
1 parent 789ff96 commit 51510a8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion osutils/fds.go → sys/fds.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// +build !windows,!darwin

package osutils
package sys

import (
"io/ioutil"
Expand Down
2 changes: 1 addition & 1 deletion osutils/prctl.go → sys/prctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Package osutils provide access to the Get Child and Set Child prctl
// flags.
// See http://man7.org/linux/man-pages/man2/prctl.2.html
package osutils
package sys

import (
"syscall"
Expand Down
2 changes: 1 addition & 1 deletion osutils/prctl_solaris.go → sys/prctl_solaris.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// +build solaris

package osutils
package sys

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion osutils/proc.go → sys/proc.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// +build linux

package osutils
package sys

import (
"bufio"
Expand Down
2 changes: 1 addition & 1 deletion osutils/reaper.go → sys/reaper.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// +build !windows

package osutils
package sys

import "syscall"

Expand Down

0 comments on commit 51510a8

Please sign in to comment.