Changeset c247120a in rtems


Ignore:
Timestamp:
09/09/98 18:09:02 (25 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
c7cb6bbb
Parents:
8d0ea20
Message:

Added gettimeofday().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/new_chapters/clock.t

    r8d0ea20 rc247120a  
    2020@item @code{clock_getres} -
    2121@item @code{nanosleep} -
     22@item @code{gettimeofday} -
    2223@item @code{time} -
    2324@end itemize
     
    191192
    192193@page
     194@subsection gettimeofday
     195
     196@subheading CALLING SEQUENCE:
     197
     198@example
     199#include <sys/time.h>
     200#include <unistd.h>
     201
     202int gettimeofday(
     203  struct timeval  *tp,
     204  struct timezone *tzp
     205);
     206@end example
     207
     208@subheading STATUS CODES:
     209
     210On error, this routine returns -1 and sets errno as appropriate.
     211
     212@subheading DESCRIPTION:
     213
     214@subheading NOTES:
     215
     216Currently, the timezone information is not supported.
     217
     218@page
    193219@subsection time
    194220 
Note: See TracChangeset for help on using the changeset viewer.