Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – //trunk/src/lib/machines/freebsd/80x86/include/time.h – Rev 73

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
72 7u83 1
struct tm {
2
	int	tm_sec;		/* seconds after the minute [0-60] */
3
	int	tm_min;		/* minutes after the hour [0-59] */
4
	int	tm_hour;	/* hours since midnight [0-23] */
5
	int	tm_mday;	/* day of the month [1-31] */
6
	int	tm_mon;		/* months since January [0-11] */
7
	int	tm_year;	/* years since 1900 */
8
	int	tm_wday;	/* days since Sunday [0-6] */
9
	int	tm_yday;	/* days since January 1 [0-365] */
10
	int	tm_isdst;	/* Daylight Savings Time flag */
11
	long	tm_gmtoff;	/* offset from UTC in seconds */
12
	char	*tm_zone;	/* timezone abbreviation */
13
};
14
 
15
/* Frequency of the clock ticks reported by clock().  */
16
#define	CLOCKS_PER_SEC	128
17
 
18
 
19
typedef unsigned long clock_t;
20
typedef unsigned long time_t;
21
 
73 7u83 22
/*
23
 * Frequency of the clock ticks reported by times().  Deprecated - use
24
 * sysconf(_SC_CLK_TCK) instead.  (Removed in 1003.1-2001.)
25
 */
26
#define	CLK_TCK		128
72 7u83 27