Browse code

remove unused utils

Signed-off-by: Daniel, Dao Quang Minh <dqminh89@gmail.com>

Daniel, Dao Quang Minh authored on 2015/04/23 06:53:45
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,22 +0,0 @@
1
-// +build linux
2
-
3
-package native
4
-
5
-//func findUserArgs() []string {
6
-//for i, a := range os.Args {
7
-//if a == "--" {
8
-//return os.Args[i+1:]
9
-//}
10
-//}
11
-//return []string{}
12
-//}
13
-
14
-//// loadConfigFromFd loads a container's config from the sync pipe that is provided by
15
-//// fd 3 when running a process
16
-//func loadConfigFromFd() (*configs.Config, error) {
17
-//var config *libcontainer.Config
18
-//if err := json.NewDecoder(os.NewFile(3, "child")).Decode(&config); err != nil {
19
-//return nil, err
20
-//}
21
-//return config, nil
22
-//}