aboutsummaryrefslogtreecommitdiff
path: root/common/meson.build
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-10-13 16:04:37 +1000
committerFurkan Sahin <furkan-dev@proton.me>2018-10-13 16:04:37 +1000
commita59fe24c4c1ff3279d8db2c804f0d2c2267cb2a0 (patch)
treea3413f2a5717968e370d68521b689580d5adc5a0 /common/meson.build
parent4ab6046b85bfdacc4644023fecad608809cb7a5d (diff)
Move swaybar's event loop to common directory and refactor
* The loop functions are now prefixed with `loop_`. * It is now easy to add timers to the loop. * Timers are implemented using pollfd and timerfd, rather than manually checking them when any other event happens to arrive.
Diffstat (limited to 'common/meson.build')
-rw-r--r--common/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/meson.build b/common/meson.build
index 44a29508..224a9c3f 100644
--- a/common/meson.build
+++ b/common/meson.build
@@ -5,6 +5,7 @@ lib_sway_common = static_library(
'cairo.c',
'ipc-client.c',
'log.c',
+ 'loop.c',
'list.c',
'pango.c',
'readline.c',