Changeset 2227


Ignore:
Timestamp:
Jul 7, 2005, 5:27:06 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.

Location:
trunk/src/emx
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/emx/ChangeLog.LIBC

    • Property cvs2svn:cvs-rev changed from 1.99 to 1.100
    r2226 r2227  
    11/* $Id$ */
     2
     32005-07-06: knut st. osmundsen <bird-gccos2-spam@anduin.net>
     4    - libc:
     5        o Changed utimes() to allow NULL pointer parameter.
     6          Please note that BSD will crash in if you try it there.
    27
    382005-07-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • TabularUnified trunk/src/emx/include/sys/times.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2226 r2227  
    11/* sys/times.h (emx+gcc) */
     2/** @file
     3 * EMX
     4 * @changed bird: corrected prototype, added BSD type blocker and use BSD style C++ wrappers.
     5 */
    26
    37#ifndef _SYS_TIMES_H
    48#define _SYS_TIMES_H
    59
    6 #if defined (__cplusplus)
    7 extern "C" {
    8 #endif
     10#include <sys/cdefs.h>
     11#include <sys/_types.h>
    912
    10 #if !defined (_CLOCK_T)
     13__BEGIN_DECLS
     14#if !defined (_CLOCK_T) && !defined(_CLOCK_T_DECLARED)
     15typedef __clock_t clock_t;
     16#define _CLOCK_T_DECLARED
    1117#define _CLOCK_T
    12 typedef long clock_t;
    1318#endif
    1419
    1520struct tms
    1621{
    17   clock_t tms_utime;
    18   clock_t tms_stime;
    19   clock_t tms_cutime;
    20   clock_t tms_cstime;
     22    clock_t tms_utime;
     23    clock_t tms_stime;
     24    clock_t tms_cutime;
     25    clock_t tms_cstime;
    2126};
    2227
    23 long times (struct tms *);
    24 
    25 #if defined (__cplusplus)
    26 }
    27 #endif
     28clock_t times(struct tms *);
     29__END_DECLS
    2830
    2931#endif /* not _SYS_TIMES_H */
  • TabularUnified trunk/src/emx/src/lib/time/times.c

    • Property cvs2svn:cvs-rev changed from 1.4 to 1.5
    r2226 r2227  
    88/* Note: return value overflows */
    99
    10 long _STD(times) (struct tms *buffer)
     10clock_t _STD(times) (struct tms *buffer)
    1111{
    1212  struct timeval tv;
    13 
    14   buffer->tms_utime = clock ();  /* clock () * HZ / CLOCKS_PER_SEC */
    15   buffer->tms_stime = 0;
    16   buffer->tms_cutime = 0;
    17   buffer->tms_cstime = 0;
     13  if (buffer)
     14    {
     15      buffer->tms_utime = clock ();  /* clock () * HZ / CLOCKS_PER_SEC */
     16      buffer->tms_stime = 0;
     17      buffer->tms_cutime = 0;
     18      buffer->tms_cstime = 0;
     19    }
    1820  if (gettimeofday (&tv, NULL) != 0)
    1921    return -1;
Note: See TracChangeset for help on using the changeset viewer.