TaPAS  0.2
ccl-rusage.h
1 /*
2  * ccl-rusage.h -- A simple wrapper for getrusage
3  *
4  * This file is a part of the C Common Library (CCL) project.
5  *
6  * See file AUTHORS and COPYING for copyright details.
7  *
8  */
9 
10 #ifndef CCL_RUSAGE_H
11 # define CCL_RUSAGE_H
12 
13 # include <ccl/ccl-common.h>
14 
15 BEGIN_C_DECLS
16 
17 extern int
18 ccl_getrusage (long *p_usertime, long *p_maxrss);
19 
20 END_C_DECLS
21 
22 #endif /* ! CCL_RUSAGE_H */
Some useful and common macros.