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