TIME.2
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. TIME(2)                   Minix Programmer's Manual                    TIME(2)
  2. NAME
  3.      time, stime - get/set date and time
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <time.h>
  7.      time_t time(time_t *tp)
  8.      int stime(time_t *tp)
  9. DESCRIPTION
  10.      The system's notion of the current Greenwich time is  obtained  with  the
  11.      time call, and set with the stime call.  The time is expressed in seconds
  12.      since midnight (0 hour), January 1, 1970.  The time is both  returned  by
  13.      time  and  stored  in the variable pointed to by tp unless tp is the null
  14.      pointer.
  15.      Stime obtains the time to set from the variable pointed to by tp.
  16.      Only the super-user may set the time of day.
  17. RETURN
  18.      A 0 return value from stime indicates  that  the  call  succeeded.   Time
  19.      returns  the  current  time  on  success.  A -1 return value indicates an
  20.      error occurred, and in this case an error code is stored into the  global
  21.      variable errno.
  22. ERRORS
  23.      The following error codes may be set in errno:
  24.      [EFAULT]       The tp address referenced invalid memory.
  25.      [EPERM]        A user other than the  super-user  attempted  to  set  the
  26.                     time.
  27. SEE ALSO
  28.      date(1), ctime(3).
  29. 4BSD                              May 14, 1986                               1