OSDN Git Service

Use time() instead of clock() for timeouts.
authorChristopher Ferris <cferris@google.com>
Tue, 9 Sep 2014 20:10:49 +0000 (13:10 -0700)
committerChristopher Ferris <cferris@google.com>
Tue, 9 Sep 2014 20:36:52 +0000 (13:36 -0700)
commite2c86c71c2a214f6a8bd3335616a58484919dcb1
tree7adb52da1d985a9e468b0801b51bc4e65526376e
parent86aeb9ef154d7aa63c58cbe5be62e5b61d6ae5fa
Use time() instead of clock() for timeouts.

The clock() function returns the processor time used by the process. This
is not a good timeout mechanism since the code is suspended most of the
time waiting for the forked process to finish. Replace with the time()
function.

Bug: 17154069

(cherry picked from commit 89d4949f86f4f7b6710e951afefad186c667fd6e)

Change-Id: I42f0f24ee53ef99955fd482a1089e39d491f3bd5
cmds/dumpstate/utils.c