Andreone

Results 4 comments of Andreone

Currently, I uses this trick: # zip a folder and all its subitems (including subfolders) def zip_folder(folder, zipfile) ZipFile.open(zipfile, 'w') do |zipfile| zipfile.add_folder(folder, false) end end Zip::ZipFile.class_eval do def add_folder(folder,...

I've added a yield version for arm arch. See commit: https://github.com/Abc-Arbitrage/Disruptor-cpp/commit/5cb15ddd9153fa173b77d87f35bad846bd158b3e Note that I don't have arm based computer at my disposal to test the solution, so please let me...

Good idea. I've added DISRUPTOR_STD_YIELD. This takes precedence over other implementations. > I added the following VAR to CMakefile > add_compile_definitions(DISRUPTOR_CPU_ARM=1) This shouldn't be required. The arm branch should have...

Add `add_compile_definitions(DISRUPTOR_STD_YIELD)` into the CMakeLists.txt or set it when you invoke cmake: `cmake -DDISRUPTOR_STD_YIELD path/to/src`