Xinqi Bao's Git
projects
/
slstatus.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
fix delay in a cleaner way
[slstatus.git]
/
slstatus.c
diff --git
a/slstatus.c
b/slstatus.c
index
329093f
..
c92da0d
100644
(file)
--- a/
slstatus.c
+++ b/
slstatus.c
@@
-75,7
+75,7
@@
static void usage(void);
char *argv0;
char concat[];
char *argv0;
char concat[];
-static unsigned short int delay;
+static unsigned short int delay
= 0
;
static unsigned short int done;
static unsigned short int dflag, oflag;
static Display *dpy;
static unsigned short int done;
static unsigned short int dflag, oflag;
static Display *dpy;
@@
-164,7
+164,7
@@
cpu_perc(void)
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
fclose(fp);
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
fclose(fp);
- delay
= (UPDATE_INTERVAL - (UPDATE_INTERVAL - 1))
;
+ delay
++
;
sleep(delay);
fp = fopen("/proc/stat", "r");
sleep(delay);
fp = fopen("/proc/stat", "r");
@@
-407,7
+407,7
@@
run_command(const char *cmd)
{
char *nlptr;
FILE *fp;
{
char *nlptr;
FILE *fp;
- char buf[1024] =
"n/a"
;
+ char buf[1024] =
UNKNOWN_STR
;
fp = popen(cmd, "r");
if (fp == NULL) {
fp = popen(cmd, "r");
if (fp == NULL) {
@@
-443,7
+443,7
@@
swap_free(void)
buf[bytes_read] = '\0';
fclose(fp);
if (bytes_read == 0 || bytes_read == sizeof(buf)) {
buf[bytes_read] = '\0';
fclose(fp);
if (bytes_read == 0 || bytes_read == sizeof(buf)) {
- warn("Failed to read
/proc/meminfo\n
");
+ warn("Failed to read
from /proc/meminfo
");
return smprintf(UNKNOWN_STR);
}
return smprintf(UNKNOWN_STR);
}
@@
-477,7
+477,7
@@
swap_perc(void)
buf[bytes_read] = '\0';
fclose(fp);
if (bytes_read == 0 || bytes_read == sizeof(buf)) {
buf[bytes_read] = '\0';
fclose(fp);
if (bytes_read == 0 || bytes_read == sizeof(buf)) {
- warn("Failed to read
/proc/meminfo\n
");
+ warn("Failed to read
from /proc/meminfo
");
return smprintf(UNKNOWN_STR);
}
return smprintf(UNKNOWN_STR);
}
@@
-514,7
+514,7
@@
swap_total(void)
buf[bytes_read] = '\0';
fclose(fp);
if (bytes_read == 0 || bytes_read == sizeof(buf)) {
buf[bytes_read] = '\0';
fclose(fp);
if (bytes_read == 0 || bytes_read == sizeof(buf)) {
- warn("Failed to read
/proc/meminfo\n
");
+ warn("Failed to read
from /proc/meminfo
");
return smprintf(UNKNOWN_STR);
}
return smprintf(UNKNOWN_STR);
}
@@
-545,7
+545,7
@@
swap_used(void)
buf[bytes_read] = '\0';
fclose(fp);
if (bytes_read == 0 || bytes_read == sizeof(buf)) {
buf[bytes_read] = '\0';
fclose(fp);
if (bytes_read == 0 || bytes_read == sizeof(buf)) {
- warn("Failed to read
/proc/meminfo\n
");
+ warn("Failed to read
from /proc/meminfo
");
return smprintf(UNKNOWN_STR);
}
return smprintf(UNKNOWN_STR);
}
@@
-829,8
+829,13
@@
main(int argc, char *argv[])
* subtract delay time spend in function
* calls from the actual global delay time
*/
* subtract delay time spend in function
* calls from the actual global delay time
*/
- sleep(UPDATE_INTERVAL - delay);
- delay = 0;
+ if ((UPDATE_INTERVAL - delay) <= 0) {
+ delay = 0;
+ continue;
+ } else {
+ sleep(UPDATE_INTERVAL - delay);
+ delay = 0;
+ }
}
if (!oflag) {
}
if (!oflag) {