-
Private event loops are now automatically run by their parent. That is, whenever an event loop is run, its children event loops are automatically run. The
create_loop()function has a new parameterparent, which defaults to the current loop. The auto-running behavior can be disabled by usingcreate_loop(parent=NULL). (#119) -
Fixed #73, #109: Previously, later did not build on some platforms, notably ARM, because the
-latomiclinker was needed on those platforms. A configure script now detects when-latomicis needed. (#114) -
Previously,
execLaterNativewas initialized when the package was loaded, but notexecLaterNative2, resulting in a warning message in some cases. (#116)