increase sleep time to full sec instead of 1-0.1s

This commit is contained in:
Pawel "l0ner" Soltys 2015-01-07 14:58:47 +01:00
parent 72f1b03078
commit e7ee4279f6

@ -52,8 +52,8 @@
// OSX: DONE/partial
// BSD: TODO
std::string cpu_string( unsigned int cpu_usage_delay,
unsigned int graph_lines, bool use_colors = false ) {
std::string cpu_string(unsigned int cpu_usage_delay, unsigned int graph_lines,
bool use_colors = false) {
float percentage;
@ -81,7 +81,7 @@ std::string cpu_string( unsigned int cpu_usage_delay,
}
int main(int argc, char** argv) {
unsigned int cpu_usage_delay = 900000;
unsigned int cpu_usage_delay = 1000000;
int graph_lines = 10;
bool use_colors = false;
try {
@ -108,7 +108,7 @@ int main(int argc, char** argv) {
<< std::endl;
return EXIT_FAILURE;
}
cpu_usage_delay = status_interval * 1000000 - 100000;
cpu_usage_delay = status_interval * 1000000;
++arg_index;
}
if( argc > arg_index )