syscall_nacl_arm.go 460 Bytes
Newer Older
1
// Copyright 2014 The Go Authors. All rights reserved.
Shenghou Ma's avatar
Shenghou Ma committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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
}

17 18
func setTimespec(sec, nsec int64) Timespec {
	return Timespec{Sec: sec, Nsec: int32(nsec)}
Shenghou Ma's avatar
Shenghou Ma committed
19 20
}

21 22
func setTimeval(sec, usec int64) Timeval {
	return Timeval{Sec: sec, Usec: int32(usec)}
Shenghou Ma's avatar
Shenghou Ma committed
23
}