summaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-06-19 15:33:38 +0200
committerMatthias Melcher <github@matthiasm.com>2025-06-19 15:33:38 +0200
commiteadea6a992d4e105b3165a22d091c66be374ae99 (patch)
tree6521e659aa52c5f477bfbf81d0f05675fbc641ef /src/drivers
parent3d13dfefa9d53ef76d77fe57a4d6d51eddc33739 (diff)
Update Fl::await() and friends API and documentation
This creates the base for #1263, but does not fix it yet.
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/Posix/Fl_Posix_System_Driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/Posix/Fl_Posix_System_Driver.cxx b/src/drivers/Posix/Fl_Posix_System_Driver.cxx
index c4f2dc63c..4b8a14d79 100644
--- a/src/drivers/Posix/Fl_Posix_System_Driver.cxx
+++ b/src/drivers/Posix/Fl_Posix_System_Driver.cxx
@@ -387,7 +387,7 @@ static void thread_awake_cb(int fd, void*) {
}
Fl_Awake_Handler func;
void *data;
- while (Fl::get_awake_handler_(func, data)==0) {
+ while (Fl_System_Driver::pop_awake_handler(func, data)==0) {
(*func)(data);
}
}