genericopenlibs/cstdlib/LINCSYS/TIMES.H
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 /*
       
     2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef	_SYS_TIMES_H
       
    21 #define	_SYS_TIMES_H
       
    22 #ifdef __cplusplus
       
    23 extern "C" {
       
    24 #endif
       
    25 
       
    26 #include <_ansi.h>
       
    27 #include <libc/machine/types.h>
       
    28 /**
       
    29 @publishedAll
       
    30 @released
       
    31 */
       
    32 #ifndef __clock_t_defined
       
    33 typedef _CLOCK_T_ clock_t;
       
    34 #define __clock_t_defined
       
    35 #endif
       
    36 /**
       
    37 @publishedAll
       
    38 @released
       
    39 */
       
    40 struct tms {
       
    41 	clock_t	tms_utime;		/* user time */
       
    42 	clock_t	tms_stime;		/* system time */
       
    43 	clock_t	tms_cutime;		/* user time, children */
       
    44 	clock_t	tms_cstime;		/* system time, children */
       
    45 };
       
    46 /**
       
    47 @publishedAll
       
    48 @released
       
    49 */
       
    50 extern clock_t times(struct tms *);
       
    51 
       
    52 #ifdef __cplusplus
       
    53 }
       
    54 #endif
       
    55 #endif	/* !_SYS_TIMES_H */