getitimer.2: Fix types used to declare fields in timeval struct

Reported-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2012-09-30 07:39:56 +02:00
parent 8f172c56b2
commit f2d587e6a1
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
.\" Modified Tue Oct 22 00:22:35 EDT 1996 by Eric S. Raymond <esr@thyrsus.com>
.\" 2005-04-06 mtk, Matthias Lang <matthias@corelatus.se>
.\" Noted MAX_SEC_IN_JIFFIES ceiling
.TH GETITIMER 2 2009-03-15 "Linux" "Linux Programmer's Manual"
.TH GETITIMER 2 2012-09-30 "Linux" "Linux Programmer's Manual"
.SH NAME
getitimer, setitimer \- get or set value of an interval timer
.SH SYNOPSIS
@ -53,8 +53,8 @@ struct itimerval {
};
struct timeval {
long tv_sec; /* seconds */
long tv_usec; /* microseconds */
time_t tv_sec; /* seconds */
suseconds_t tv_usec; /* microseconds */
};
.fi
.in