-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1244 from omar-polo/master
fix cpu_openbsd.go once and for all
- Loading branch information
Showing
3 changed files
with
77 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package cpu | ||
|
||
type cpuTimes struct { | ||
User uint32 | ||
Nice uint32 | ||
Sys uint32 | ||
Spin uint32 | ||
Intr uint32 | ||
Idle uint32 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package cpu | ||
|
||
type cpuTimes struct { | ||
User uint64 | ||
Nice uint64 | ||
Sys uint64 | ||
Spin uint64 | ||
Intr uint64 | ||
Idle uint64 | ||
} |