mirror of https://github.com/shirou/gopsutil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
211 B
Go
18 lines
211 B
Go
10 years ago
|
// +build ignore
|
||
|
// plus hand editing about timeval
|
||
|
|
||
|
/*
|
||
|
Input to cgo -godefs.
|
||
|
*/
|
||
|
|
||
|
package host
|
||
|
|
||
|
/*
|
||
|
#include <sys/time.h>
|
||
|
#include <utmpx.h>
|
||
|
*/
|
||
|
import "C"
|
||
|
|
||
|
type Utmpx C.struct_utmpx
|
||
|
type Timeval C.struct_timeval
|