modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / systime
blobd25f4c3d7aa5d5ba992fce8e093ce23fbe6f6e06
1 NAME
2     systime - kernel CPU time used by the current process
4 SYNOPSIS
5     systime()
7 TYPES
8     return      nonnegative real
10 DESCRIPTION
11     In POSIX based systems, this function will return the CPU seconds
12     used by the current process while in kernel mode executing kernel
13     code on behalf of the current process.  Time spent by the current
14     process executing user code (such as performing computation on
15     behalf of calc) is not counted.
17     On non-POSIX based systems, this function will always return 0.
18     In particular, most MS windows based systems do not have the required
19     POSIX system call and so this function will always return 0.
21 EXAMPLE
22     The result for this example will depend on the speed of the CPU
23     and precision of the operating CPU time accounting sub-system:
25     ; t = systime();
26     ; system("true"),
27     ; systime() - t;
28         .001
30 LIMITS
31     On non-POSIX based systems, this function always returns 0.
33 LINK LIBRARY
34     none
36 SEE ALSO
37     config, ctime, runtime, systime, time
39 ## Copyright (C) 2006  Landon Curt Noll
41 ## Calc is open software; you can redistribute it and/or modify it under
42 ## the terms of the version 2.1 of the GNU Lesser General Public License
43 ## as published by the Free Software Foundation.
45 ## Calc is distributed in the hope that it will be useful, but WITHOUT
46 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
47 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
48 ## Public License for more details.
50 ## A copy of version 2.1 of the GNU Lesser General Public License is
51 ## distributed with calc under the filename COPYING-LGPL.  You should have
52 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
53 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
55 ## @(#) $Revision: 30.1 $
56 ## @(#) $Id: systime,v 30.1 2007/03/16 11:10:42 chongo Exp $
57 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/systime,v $
59 ## Under source code control:   2006/12/16 10:31:08
60 ## File existed as early as:    2006
62 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
63 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/