Compare commits
2 Commits
pr-systemd
...
dev-sane
Author | SHA1 | Date | |
---|---|---|---|
575341a22b | |||
a9f2f4602a |
@@ -284,7 +284,8 @@ int main(int argc, char *argv[]) {
|
|||||||
|
|
||||||
/* Periodically run timer / task handler */
|
/* Periodically run timer / task handler */
|
||||||
while(1) {
|
while(1) {
|
||||||
lv_timer_periodic_handler();
|
uint32_t time_till_next = lv_timer_handler();
|
||||||
|
usleep(time_till_next * 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@@ -11,7 +11,7 @@ deplibinput = dependency('libinput')
|
|||||||
deplibudev = dependency('libudev')
|
deplibudev = dependency('libudev')
|
||||||
|
|
||||||
if get_option('man')
|
if get_option('man')
|
||||||
depscdoc = dependency('scdoc')
|
depscdoc = dependency('scdoc', native: true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
common_include_dirs = include_directories('.')
|
common_include_dirs = include_directories('.')
|
||||||
|
@@ -591,7 +591,8 @@ int main(int argc, char *argv[]) {
|
|||||||
uint32_t timeout = conf_opts.general.timeout * 1000; /* ms */
|
uint32_t timeout = conf_opts.general.timeout * 1000; /* ms */
|
||||||
while(1) {
|
while(1) {
|
||||||
if (!timeout || lv_disp_get_inactive_time(NULL) < timeout) {
|
if (!timeout || lv_disp_get_inactive_time(NULL) < timeout) {
|
||||||
lv_timer_periodic_handler();
|
uint32_t time_till_next = lv_timer_handler();
|
||||||
|
usleep(time_till_next * 1000);
|
||||||
} else if (timeout) {
|
} else if (timeout) {
|
||||||
shutdown();
|
shutdown();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user