diff options
author | Guido van Rossum <guido@python.org> | 1995-09-13 17:36:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-09-13 17:36:35 (GMT) |
commit | 1e150618a3c0716b48db346a5d315298e3d7d8b8 (patch) | |
tree | 231a7e289076a58043e264d1fd4536680b3daf36 | |
parent | 93cf55e369c211b6c7f20e6f360ce979f04e7ff8 (diff) | |
download | cpython-1e150618a3c0716b48db346a5d315298e3d7d8b8.zip cpython-1e150618a3c0716b48db346a5d315298e3d7d8b8.tar.gz cpython-1e150618a3c0716b48db346a5d315298e3d7d8b8.tar.bz2 |
add realtime as 5th item to os.times() return value
-rw-r--r-- | Doc/lib/libposix.tex | 6 | ||||
-rw-r--r-- | Doc/libposix.tex | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/Doc/lib/libposix.tex b/Doc/lib/libposix.tex index 71798a4..643cfda 100644 --- a/Doc/lib/libposix.tex +++ b/Doc/lib/libposix.tex @@ -300,9 +300,11 @@ value is the exit status of the process as returned by Standard C \end{funcdesc} \begin{funcdesc}{times}{} -Return a 4-tuple of floating point numbers indicating accumulated CPU +Return a 5-tuple of floating point numbers indicating accumulated (CPU +or other) times, in seconds. The items are: user time, system time, children's -user time, and children's system time, in that order. See the \UNIX{} +user time, children's system time, and elapsed real time since a fixed +point in the past, in that order. See the \UNIX{} manual page {\it times}(2). (Not on MS-DOS.) \end{funcdesc} diff --git a/Doc/libposix.tex b/Doc/libposix.tex index 71798a4..643cfda 100644 --- a/Doc/libposix.tex +++ b/Doc/libposix.tex @@ -300,9 +300,11 @@ value is the exit status of the process as returned by Standard C \end{funcdesc} \begin{funcdesc}{times}{} -Return a 4-tuple of floating point numbers indicating accumulated CPU +Return a 5-tuple of floating point numbers indicating accumulated (CPU +or other) times, in seconds. The items are: user time, system time, children's -user time, and children's system time, in that order. See the \UNIX{} +user time, children's system time, and elapsed real time since a fixed +point in the past, in that order. See the \UNIX{} manual page {\it times}(2). (Not on MS-DOS.) \end{funcdesc} |