summaryrefslogtreecommitdiff
path: root/src/invalid/invalid_thread.c
Commit message (Collapse)AuthorAgeFilesLines
* Renamed a bunch of generators.J08nY2017-06-011-1/+1
|
* Move stuff related to generators to src/gen.J08nY2017-05-311-2/+2
|
* Fixed unrolls / unique generator curve generatonJ08nY2017-05-071-9/+12
| | | | | | - Also added some tests to catch some regressions like this early - Fixed double free in gens, also some funky stuff with gunclone and obj_free in curve_free
* Change invalid curve generation thread argument passingJ08nY2017-04-161-3/+2
|
* Added unroll functions, to generalize going back in exhaustive generationJ08nY2017-04-101-5/+6
|
* Fix debug macroJ08nY2017-04-101-1/+1
|
* Moved curve output in multi-threaded invalid curve generation to master threadJ08nY2017-04-101-22/+8
| | | | | | - Fixed mutex and cond destroy - Added debug() macro - Renamed debug out stream to verbose
* Added multi-threading support to invalid curve generationJ08nY2017-04-091-0/+106
Invalid curve generation now supports multi-threading via pthreads, use the --threads= option. - Changed some function params to const, where possible. - Added *_new_copy, *_clone and *_new_clone functions to curve_t*, point_t* and point_t** - Made cfg->bits unsigned long - Made order_any gcopy the generated order(as it can be a clone and screw up stuff later)