summaryrefslogtreecommitdiff
path: root/hw_darwin.go
blob: ab1aef81acaf94fca8b9a68824270944c80d5fd2 (plain)
1
2
3
4
5
6
7
package zoopb

// simple memory and cpu count
func (me *Machine) osGetMemory() {
	me.Memory = int64(1024 * 1024)
	me.Cpus = int64(1)
}