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