2013-05-15 20:40:47 -04:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2013-05-18 21:55:59 -04:00
|
|
|
type Utsname struct {
|
|
|
|
Release [65]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func uname() (*Utsname, error) {
|
2013-05-15 20:40:47 -04:00
|
|
|
return nil, errors.New("Kernel version detection is not available on darwin")
|
|
|
|
}
|