diff options
Diffstat (limited to 'src/Fl_lock.cxx')
| -rw-r--r-- | src/Fl_lock.cxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Fl_lock.cxx b/src/Fl_lock.cxx index 902f9fc43..85636217b 100644 --- a/src/Fl_lock.cxx +++ b/src/Fl_lock.cxx @@ -417,6 +417,33 @@ void unlock_ring() {} #endif // FL_CFG_SYS_POSIX +// TODO: can these functions be moved to the system drivers? +#ifdef __ANDROID__ + +static void unlock_ring() +{ + // TODO: implement me +} + +static void lock_ring() +{ + // TODO: implement me +} + +static void unlock_function() +{ + // TODO: implement me +} + +static void lock_function() +{ + // TODO: implement me +} + +#endif // __ANDROID__ + + + void Fl::awake(void *v) { Fl::system_driver()->awake(v); } |
