diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2004-10-07 09:45:43 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2004-10-07 09:45:43 +0000 |
commit | cc7274077564befa7426909e7c70f6de0169fa5e (patch) | |
tree | 30f3787cfc9bf3314c6fa9ea49229c6dd071020c /Src/init.c | |
parent | 0f7a3eaca59794030cd09b4c4518f7d970351d9e (diff) | |
download | zsh-cc7274077564befa7426909e7c70f6de0169fa5e.tar.gz zsh-cc7274077564befa7426909e7c70f6de0169fa5e.tar.xz zsh-cc7274077564befa7426909e7c70f6de0169fa5e.zip |
20462: Use getrusage for timing again.
Time processes from before rather than after fork.
Diffstat (limited to 'Src/init.c')
-rw-r--r-- | Src/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/init.c b/Src/init.c index ef101069c..370f93782 100644 --- a/Src/init.c +++ b/Src/init.c @@ -856,7 +856,7 @@ setupvals(void) #endif } - times(&shtms); + get_usage(); /* Close the file descriptors we opened to block off 0 to 9 */ for (i = 0; i < 10; i++) |