perf top: Use MSEC_PER_SEC
Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/n/tip-iof4j6mutyogdeie1sj98dhv@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
565e69114e
commit
b9c4b0f40d
@ -68,6 +68,7 @@
|
|||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
|
|
||||||
#include <linux/stringify.h>
|
#include <linux/stringify.h>
|
||||||
|
#include <linux/time64.h>
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
static volatile int done;
|
static volatile int done;
|
||||||
@ -624,7 +625,7 @@ static void *display_thread(void *arg)
|
|||||||
display_setup_sig();
|
display_setup_sig();
|
||||||
pthread__unblock_sigwinch();
|
pthread__unblock_sigwinch();
|
||||||
repeat:
|
repeat:
|
||||||
delay_msecs = top->delay_secs * 1000;
|
delay_msecs = top->delay_secs * MSEC_PER_SEC;
|
||||||
set_term_quiet_input(&save);
|
set_term_quiet_input(&save);
|
||||||
/* trash return*/
|
/* trash return*/
|
||||||
getc(stdin);
|
getc(stdin);
|
||||||
|
Loading…
Reference in New Issue
Block a user