Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/threads-ffi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2016-10-19added threads.safe()Ronan Collobert
2016-05-13test for AtomicCounterlake4790k
2016-04-14propagate errors immediately to prevent deadlocksAdam Lerer
2015-12-23Load thread's start routine from separate shared librarySam Gross
Prior to this change, if Lua unloads the threads library before the child threads terminate, the program wil segfault. This could happen if an error is triggered during an endcallback, preventing the child thread from exiting. This places the thread's start routine in a separate shared library: libthreadsmain, which is loaded once and never unloaded.
2015-11-24Fix deadlock when using coroutine.yield in endcallbackSam Gross
2015-09-18Fix return values with xpcallAdam Lerer
2015-09-17Capture the traceback in thread jobsAdam Lerer
2015-05-05added a test case which creates a lot of thread poolsRonan Collobert
2015-04-21added async thread test (example)Ronan Collobert
2015-04-21moved away from FFIRonan Collobert
- removed the ffi dependency... now runs under lua! - support for low-level thread - support for basic mutex and condition variables from lua - better error messaging - better reliability - more doc - no more addjobasync() - no sdl
2015-04-08refcount job queuesRonan Collobert
2015-04-05fix sharedserialize testRonan Collobert
2015-04-05sharedserialize: now handles also torch storages + tds hashRonan Collobert
added test case