ps: fix build failure if FEATURE_PS_TIME is disabled
The global seconds_since_boot is only defined if FEATURE_PS_TIME is enabled. Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
efcc89b21b
commit
0ec0fac045
@ -567,9 +567,11 @@ int ps_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
};
|
};
|
||||||
|
|
||||||
INIT_G();
|
INIT_G();
|
||||||
|
#if ENABLE_FEATURE_PS_TIME
|
||||||
G.seconds_since_boot = get_uptime();
|
G.seconds_since_boot = get_uptime();
|
||||||
#if ENABLE_FEATURE_PS_TIME && (ENABLE_FEATURE_PS_UNUSUAL_SYSTEMS || !defined(__linux__))
|
# if ENABLE_FEATURE_PS_UNUSUAL_SYSTEMS || !defined(__linux__)
|
||||||
G.kernel_HZ = bb_clk_tck(); /* this is sysconf(_SC_CLK_TCK) */
|
G.kernel_HZ = bb_clk_tck(); /* this is sysconf(_SC_CLK_TCK) */
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// POSIX:
|
// POSIX:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user