2021-08-23 09:14:53 -04:00
|
|
|
//go:build !linux && !windows && !freebsd
|
2015-07-21 12:41:01 -04:00
|
|
|
// +build !linux,!windows,!freebsd
|
2015-06-08 13:35:41 -04:00
|
|
|
|
2015-07-02 01:00:48 -04:00
|
|
|
package osl
|
2015-06-08 13:35:41 -04:00
|
|
|
|
|
|
|
// GC triggers garbage collection of namespace path right away
|
|
|
|
// and waits for it.
|
|
|
|
func GC() {
|
|
|
|
}
|
2015-09-09 19:20:54 -04:00
|
|
|
|
2017-06-12 14:30:30 -04:00
|
|
|
// GetSandboxForExternalKey returns sandbox object for the supplied path
|
2015-09-09 19:20:54 -04:00
|
|
|
func GetSandboxForExternalKey(path string, key string) (Sandbox, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2016-07-15 00:25:52 -04:00
|
|
|
|
|
|
|
// SetBasePath sets the base url prefix for the ns path
|
|
|
|
func SetBasePath(path string) {
|
|
|
|
}
|