Re: [Qemu-devel] [Qemu-stable] [PATCH for-1.6] qemu-timer: fix get_clock() gettimeofday() fallback #ifdef

2013-09-24 Thread Michael Roth
Quoting Michael Roth (2013-09-24 16:58:22) > Quoting Stefan Hajnoczi (2013-08-06 06:48:58) > > If CLOCK_MONOTONIC is not defined by system headers we use > > gettimeofday(2). Apparently this is not used very often since no one > > noticed the #ifdef was actually broken and left the function defini

Re: [Qemu-devel] [Qemu-stable] [PATCH for-1.6] qemu-timer: fix get_clock() gettimeofday() fallback #ifdef

2013-09-24 Thread Michael Roth
Quoting Stefan Hajnoczi (2013-08-06 06:48:58) > If CLOCK_MONOTONIC is not defined by system headers we use > gettimeofday(2). Apparently this is not used very often since no one > noticed the #ifdef was actually broken and left the function definition > unterminated. > > Signed-off-by: Stefan Haj