mirror of https://github.com/shirou/gopsutil
Merge pull request #261 from monstermunchkin/issues/260
process: make `ClockTicks` arch-independentpull/263/head
commit
5332238407
@ -1,8 +0,0 @@
|
|||||||
// +build linux
|
|
||||||
// +build 386
|
|
||||||
|
|
||||||
package process
|
|
||||||
|
|
||||||
const (
|
|
||||||
ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
|
|
||||||
)
|
|
@ -1,8 +0,0 @@
|
|||||||
// +build linux
|
|
||||||
// +build amd64
|
|
||||||
|
|
||||||
package process
|
|
||||||
|
|
||||||
const (
|
|
||||||
ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
|
|
||||||
)
|
|
@ -1,8 +0,0 @@
|
|||||||
// +build linux
|
|
||||||
// +build arm
|
|
||||||
|
|
||||||
package process
|
|
||||||
|
|
||||||
const (
|
|
||||||
ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
|
|
||||||
)
|
|
@ -1,8 +0,0 @@
|
|||||||
// +build linux
|
|
||||||
// +build arm64
|
|
||||||
|
|
||||||
package process
|
|
||||||
|
|
||||||
const (
|
|
||||||
ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
|
|
||||||
)
|
|
Loading…
Reference in New Issue