epoc32/include/libc/sys/times.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     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 */