2016-03-01 22:57:46 +00:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
2014-07-10 15:15:06 -04:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
package syscall
|
|
|
|
|
|
|
|
|
|
type Timespec struct {
|
|
|
|
|
Sec int64
|
|
|
|
|
Nsec int32
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Timeval struct {
|
|
|
|
|
Sec int64
|
|
|
|
|
Usec int32
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 21:04:16 -07:00
|
|
|
func setTimespec(sec, nsec int64) Timespec {
|
|
|
|
|
return Timespec{Sec: sec, Nsec: int32(nsec)}
|
2014-07-10 15:15:06 -04:00
|
|
|
}
|
|
|
|
|
|
2016-10-11 21:04:16 -07:00
|
|
|
func setTimeval(sec, usec int64) Timeval {
|
|
|
|
|
return Timeval{Sec: sec, Usec: int32(usec)}
|
2014-07-10 15:15:06 -04:00
|
|
|
}
|