settimeofday(2)


NAME

   gettimeofday, settimeofday - get / set time

SYNOPSIS

   #include <sys/time.h>

   int gettimeofday(struct timeval *tv, struct timezone *tz);

   int settimeofday(const struct timeval *tv, const struct timezone *tz);

   Feature Test Macro Requirements for glibc (see feature_test_macros(7)):

   settimeofday():
       Since glibc 2.19:
           _DEFAULT_SOURCE
       Glibc 2.19 and earlier:
           _BSD_SOURCE

DESCRIPTION

   The  functions  gettimeofday()  and  settimeofday() can get and set the
   time as well as a timezone.  The tv argument is a  struct  timeval  (as
   specified in <sys/time.h>):

       struct timeval {
           time_t      tv_sec;     /* seconds */
           suseconds_t tv_usec;    /* microseconds */
       };

   and  gives  the number of seconds and microseconds since the Epoch (see
   time(2)).  The tz argument is a struct timezone:

       struct timezone {
           int tz_minuteswest;     /* minutes west of Greenwich */
           int tz_dsttime;         /* type of DST correction */
       };

   If either tv or tz is NULL, the corresponding structure is not  set  or
   returned.  (However, compilation warnings will result if tv is NULL.)

   The  use  of the timezone structure is obsolete; the tz argument should
   normally be specified as NULL.  (See NOTES below.)

   Under Linux, there are some peculiar "warp clock" semantics  associated
   with  the  settimeofday()  system call if on the very first call (after
   booting) that has a non-NULL tz argument, the tv argument is  NULL  and
   the  tz_minuteswest  field is nonzero.  (The tz_dsttime field should be
   zero for this case.)  In such a case it is assumed that the CMOS  clock
   is  on  local time, and that it has to be incremented by this amount to
   get UTC system time.  No doubt it is a bad idea to use this feature.

RETURN VALUE

   gettimeofday() and settimeofday() return  0  for  success,  or  -1  for
   failure (in which case errno is set appropriately).

ERRORS

   EFAULT One of tv or tz pointed outside the accessible address space.

   EINVAL Timezone (or something else) is invalid.

   EPERM  The   calling   process   has  insufficient  privilege  to  call
          settimeofday();  under  Linux  the  CAP_SYS_TIME  capability  is
          required.

CONFORMING TO

   SVr4,   4.3BSD.    POSIX.1-2001   describes   gettimeofday()   but  not
   settimeofday().   POSIX.1-2008  marks   gettimeofday()   as   obsolete,
   recommending the use of clock_gettime(2) instead.

NOTES

   The  time returned by gettimeofday() is affected by discontinuous jumps
   in the system time (e.g., if the system administrator manually  changes
   the  system  time).   If you need a monotonically increasing clock, see
   clock_gettime(2).

   Macros  for  operating  on  timeval   structures   are   described   in
   timeradd(3).

   Traditionally, the fields of struct timeval were of type long.

   The tz_dsttime field
   On  a  non-Linux  kernel,  with  glibc,  the tz_dsttime field of struct
   timezone will be set to  a  nonzero  value  by  gettimeofday()  if  the
   current  timezone  has  ever  had  or  will have a daylight saving rule
   applied.  In this sense it exactly mirrors the meaning  of  daylight(3)
   for  the  current  zone.   On  Linux,  with  glibc,  the setting of the
   tz_dsttime  field  of  struct  timezone  has   never   been   used   by
   settimeofday()  or  gettimeofday().   Thus,  the following is purely of
   historical interest.

   On old systems, the  field  tz_dsttime  contains  a  symbolic  constant
   (values  are  given  below)  that  indicates  in which part of the year
   Daylight Saving Time is  in  force.   (Note:  this  value  is  constant
   throughout the year: it does not indicate that DST is in force, it just
   selects an algorithm.)  The daylight saving time algorithms defined are
   as follows:

       DST_NONE     /* not on DST */
       DST_USA      /* USA style DST */
       DST_AUST     /* Australian style DST */
       DST_WET      /* Western European DST */
       DST_MET      /* Middle European DST */
       DST_EET      /* Eastern European DST */
       DST_CAN      /* Canada */
       DST_GB       /* Great Britain and Eire */
       DST_RUM      /* Romania */
       DST_TUR      /* Turkey */
       DST_AUSTALT  /* Australian style with shift in 1986 */

   Of  course  it turned out that the period in which Daylight Saving Time
   is in force cannot be given by a simple  algorithm,  one  per  country;
   indeed, this period is determined by unpredictable political decisions.
   So this method of representing timezones has been abandoned.

SEE ALSO

   date(1), adjtimex(2), clock_gettime(2),  time(2),  ctime(3),  ftime(3),
   timeradd(3), capabilities(7), time(7), vdso(7), hwclock(8)

COLOPHON

   This  page  is  part of release 4.09 of the Linux man-pages project.  A
   description of the project, information about reporting bugs,  and  the
   latest     version     of     this    page,    can    be    found    at
   https://www.kernel.org/doc/man-pages/.


More Linux Commands

manpages/mvadd_wchstr.3ncurses.html
mvadd_wchstr(3ncurses) - add an array of complex characters
These functions copy the (null-terminated) array of complex characters wchstr into the window image structure starting at the current cursor position. The four

manpages/XtSetEventDispatcher.3.html
XtSetEventDispatcher(3) - extension event handling (ManPage)
The XtInsertEventTypeHandler function registers a procedure with the dispatch mechanism that is to be called when an event that matches the specified event_type

manpages/sdiff.1.html
sdiff(1) - side-by-side merge of file differences (ManPage)
Side-by-side merge of differences between FILE1 and FILE2. Mandatory arguments to long options are mandatory for short options too. -o, --output=FILE operate in

manpages/ldap_get_option.3.html
ldap_get_option(3) - LDAP option handling routines (ManPage)
These routines provide access to options stored either in a LDAP handle or as global options, where applicable. They make use of a neutral interface, where the

manpages/libcurl-multi.3.html
libcurl-multi(3) - how to use the multi interface (ManPage)
This is an overview on how to use the libcurl multi interface in your C programs. There are specific man pages for each function mentioned in here. Theres also

manpages/link.1.html
link(1) - call the link function to create a link to a file
Call the link function to create a link named FILE2 to an existing FILE1. --help display this help and exit --version output version information and exit GNU co

manpages/Data::Grove::Parent.3pm.html
Data::Grove::Parent(3pm) - provide parent properties to Data
Data::Grove::Parent is an extension to Data::Grove that adds Parent and Raw properties to Data::Grove objects and methods for returning the root node of a grove

manpages/oobase.1.html
oobase(1) - LibreOffice office suite - Linux manual page....
LibreOffice (LO for short) is a multi-platform office productivity suite. It was derived from OpenOffice.org 3.3 Beta on September 28, 2010. libreoffice is a sh

manpages/attr_list.3.html
attr_list(3) - list the names of the user attributes of a fi
The attr_list and attr_listf functions provide a way to list the existing attributes of a filesystem object. Path points to a path name for a filesystem object,

manpages/_tracemouse.3ncurses.html
_tracemouse(3ncurses) - curses debugging routines (ManPage)
The trace routines are used for debugging the ncurses libraries, as well as applications which use the ncurses libraries. These functions are normally available

manpages/xdr_float.3.html
xdr_float(3) - library routines for external data representa
These routines allow C programmers to describe arbitrary data structures in a machine-independent fashion. Data for remote procedure calls are transmitted using

manpages/init.d.7.html
init.d(7) - The SuSE boot concept - Linux manual page.......
The scripts for controlling the system are placed in /etc/init.d/ (they have been moved according to the Linux Standard Base (LSB) specification). These scripts





We can't live, work or learn in freedom unless the software we use is free.