Changeset 2228 for trunk


Ignore:
Timestamp:
Jul 7, 2005, 5:30:42 AM (20 years ago)
Author:
bird
Message:

Changed utimes() to allow NULL pointer parameter. Please note that BSD will crash in if you try it there.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/times.h

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r2227 r2228  
    2020struct tms
    2121{
    22     clock_t tms_utime;
    23     clock_t tms_stime;
    24     clock_t tms_cutime;
    25     clock_t tms_cstime;
     22    clock_t tms_utime;      /**< User mode CPU time. */
     23    clock_t tms_stime;      /**< Kernel mode CPU time. */
     24    clock_t tms_cutime;     /**< User mode CPU time for waited for children. */
     25    clock_t tms_cstime;     /**< Kernel mode CPU time for waited for children. */
    2626};
    2727
Note: See TracChangeset for help on using the changeset viewer.