summaryrefslogtreecommitdiff
path: root/include/module
AgeCommit message (Collapse)Author
2014-10-25some desperate trials to use create on normalizer module loader to create ↵Andreas Baumann
Lua normalizer objects
2014-10-23..Andreas Baumann
2014-10-16testing with two urlnormalizer modules (google and simple) in crawl.confAndreas Baumann
2014-10-16fixed destructor of module loader when no modules have been loadedAndreas Baumann
2014-10-08fixed memory leaks in module loader and tolua testAndreas Baumann
2014-10-08added flags to module loader, CLOSE_DEFERRED is deferring dlclose with a atexitAndreas Baumann
function, so that the tolua test runs now
2014-10-07fighting with some visiblity of symbolsAndreas Baumann
2014-10-05added userdata to destroy function, remembering userdata on moduleAndreas Baumann
initialization and passing it to destroy function in principle the system works, a dlopen of the lua module removes necessary functions needed during lua VM shutdown, this is due to stack unwinding and the order objects are destroyed (should be fixable)
2014-10-05must load all symbols of a C++/Lua module, otherwise the lua_open functionAndreas Baumann
can't be called from the Lua VM during module initialization
2014-10-05added void * userdata to initModuleAndreas Baumann
2014-10-04fixed code in destructor of BaseModuleLoader, was a little bit weirdAndreas Baumann
2014-10-04added init and destroy functions to modulesAndreas Baumann
2012-09-07fixed error handling in module loaderAndreas Baumann
2012-09-05split away util, logger, and moduleAndreas Baumann
made a liblogger adapted all tests