aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-04-02 21:32:30 -0500
committerRob Landley <rob@landley.net>2020-04-02 21:32:30 -0500
commitf79dc0cfb2ea534876c776684ec1f1a0a53078c6 (patch)
treed9e849b0d40132782503ecdc0ec37a2b72add70c /toys
parent5332688a2a6ef72df2b7514962e27e66534a3e48 (diff)
downloadtoybox-f79dc0cfb2ea534876c776684ec1f1a0a53078c6.tar.gz
Move #include <linux/*.h> into individual commands, initialize struct
with memset() instead of = {}, and move TT.alarm to local variable.
Diffstat (limited to 'toys')
-rw-r--r--toys/other/hwclock.c1
-rw-r--r--toys/pending/rtcwake.c22
2 files changed, 13 insertions, 10 deletions
diff --git a/toys/other/hwclock.c b/toys/other/hwclock.c
index 5ab308df..3b3ff690 100644
--- a/toys/other/hwclock.c
+++ b/toys/other/hwclock.c
@@ -25,6 +25,7 @@ config HWCLOCK
#define FOR_hwclock
#include "toys.h"
+#include <linux/rtc.h>
GLOBALS(
char *f;
diff --git a/toys/pending/rtcwake.c b/toys/pending/rtcwake.c
index 0da1de6b..61f76fbe 100644
--- a/toys/pending/rtcwake.c
+++ b/toys/pending/rtcwake.c
@@ -33,6 +33,7 @@ config RTCWAKE
#define FOR_rtcwake
#include "toys.h"
+#include <linux/rtc.h>
GLOBALS(
long long t, s;
@@ -41,11 +42,12 @@ GLOBALS(
void rtcwake_main(void)
{
- struct rtc_wkalrm alarm = {};
+ struct rtc_wkalrm alarm;
struct tm rtc_tm;
time_t now, rtc_now, then;
int fd, utc;
+ memset(&alarm, 0, sizeof(alarm));
if (FLAG(list_modes)) {
xreadfile("/sys/power/state", toybuf, sizeof(toybuf));
printf("off no on disable show %s", toybuf);
@@ -77,17 +79,17 @@ void rtcwake_main(void)
}
if (!strcmp(TT.m, "show")) { // Don't suspend, just show current alarm.
- xioctl(fd, RTC_WKALM_RD, &TT.alarm);
- if (!TT.alarm.enabled) xputs("alarm: off");
+ xioctl(fd, RTC_WKALM_RD, &alarm);
+ if (!alarm.enabled) xputs("alarm: off");
else {
- if ((then = mktime((void *)&TT.alarm.time)) < 0) perror_exit("mktime");
+ if ((then = mktime((void *)&alarm.time)) < 0) perror_exit("mktime");
xprintf("alarm: on %s", ctime(&then));
}
goto done;
} else if (!strcmp(TT.m, "disable")) { // Cancel current alarm.
- xioctl(fd, RTC_WKALM_RD, &TT.alarm);
- TT.alarm.enabled = 0;
- xioctl(fd, RTC_WKALM_SET, &TT.alarm);
+ xioctl(fd, RTC_WKALM_RD, &alarm);
+ alarm.enabled = 0;
+ xioctl(fd, RTC_WKALM_SET, &alarm);
goto done;
}
@@ -99,11 +101,11 @@ void rtcwake_main(void)
} else help_exit("-m %s needs -s or -t", TT.m);
if (FLAG(v)) xprintf("Wake time:\t%lld / %s", (long long)then, ctime(&then));
- if (!(utc ? gmtime_r : localtime_r)(&then, (void *)&TT.alarm.time))
+ if (!(utc ? gmtime_r : localtime_r)(&then, (void *)&alarm.time))
error_exit(utc ? "gmtime_r failed" : "localtime_r failed");
- TT.alarm.enabled = 1;
- xioctl(fd, RTC_WKALM_SET, &TT.alarm);
+ alarm.enabled = 1;
+ xioctl(fd, RTC_WKALM_SET, &alarm);
sync();
xprintf("wakeup using \"%s\" from %s at %s", TT.m, TT.d, ctime(&then));