mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-14 18:30:21 +00:00
31 lines
646 B
Go
31 lines
646 B
Go
|
package timespec
|
||
|
|
||
|
/*
|
||
|
#include <time.h>
|
||
|
*/
|
||
|
import "C"
|
||
|
|
||
|
import (
|
||
|
"unsafe"
|
||
|
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
// Timespec behaves similarly to C's struct timespec.
|
||
|
// Timespec is used to retain fidelity to the C based file systems
|
||
|
// apis that could be lossy with the use of Go time types.
|
||
|
type Timespec unix.Timespec
|
||
|
|
||
|
// CTimespecPtr is an unsafe pointer wrapping C's `struct timespec`.
|
||
|
type CTimespecPtr unsafe.Pointer
|
||
|
|
||
|
// CStructToTimespec creates a new Timespec for the C 'struct timespec'.
|
||
|
func CStructToTimespec(cts CTimespecPtr) Timespec {
|
||
|
t := (*C.struct_timespec)(cts)
|
||
|
|
||
|
return Timespec{
|
||
|
Sec: int64(t.tv_sec),
|
||
|
Nsec: int64(t.tv_nsec),
|
||
|
}
|
||
|
}
|