diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2007-07-13 16:04:00 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2007-07-13 16:04:00 +0000 |
commit | 66be5b4536f9edebbbfe8146d44767e4f93d15e4 (patch) | |
tree | ccee259a57bb34c14f3debd0cbc8fc98ae20c691 /ffmpeg.c | |
parent | 0f69ca7f143bbe143a8bdc31240bfc563452874a (diff) | |
download | ffmpeg-66be5b4536f9edebbbfe8146d44767e4f93d15e4.tar.gz |
Check for getrusage
Originally committed as revision 9627 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3113,10 +3113,12 @@ static int64_t getutime(void) #else static int64_t getutime(void) { +#ifdef HAVE_GETRUSAGE struct rusage rusage; getrusage(RUSAGE_SELF, &rusage); return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec; +#endif } #endif |