|
ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. This manual page is associated with the Mac OS X developer tools. The software or headers described may not be present on your Mac OS X installation until you install the developer tools package. This package is available on your Mac OS X installation DVD, and the latest versions can be downloaded from developer.apple.com. For more information about the manual page format, see the manual page for manpages(5). |
Tcl_GetTime(3) Tcl Library Procedures Tcl_GetTime(3)
____________________________________________________________________________________________________________
NAME
Tcl_GetTime - get date and time
SYNOPSIS
#include <tcl.h>
Tcl_GetTime( timePtr )
ARGUMENTS
Tcl_Time * timePtr (out) Points to memory in which to store the date and time information.
____________________________________________________________________________________________________________
DESCRIPTION
The Tcl_GetTime function retrieves the current time as a Tcl_Time structure in memory the caller pro-vides. provides.
vides. This structure has the following definition:
typedef struct Tcl_Time {
long sec;
long usec;
} Tcl_Time;
On return, the sec member of the structure is filled in with the number of seconds that have elapsed
since the epoch: the epoch is the point in time of 00:00 UTC, 1 January 1970. This number does not
count leap seconds - an interval of one day advances it by 86400 seconds regardless of whether a leap
second has been inserted.
The usec member of the structure is filled in with the number of microseconds that have elapsed since
the start of the second designated by sec. The Tcl library makes every effort to keep this number as
precise as possible, subject to the limitations of the computer system. On multiprocessor variants
of Windows, this number may be limited to the 10- or 20-ms granularity of the system clock. (On sin-gle-processor single-processor
gle-processor Windows systems, the usec field is derived from a performance counter and is highly
precise.)
SEE ALSO
clock
KEYWORDS
date, time
Tcl 8.4 Tcl_GetTime(3)
|
|