Takayuki Matsuoka
Takayuki Matsuoka
@jean-moreno I've updated release binary. I keep opening this issue for now, but I'll close when it passes some tests.
[0.1.8](https://github.com/t-mat/UnitySceneViewFovControl/releases/tag/0.1.8) contains this patch.
Thanks for the report ! I'll investigate this problem. (1) I have two questions: - What compiler/version did you use ? - `gcc -v` or `clang -v` will show precise...
Here is a my experiment (memo): ## in short - Build errors have been resolved @342c7e63be & @ed575c4 - I've run the benchmark ([enwik8](https://cs.fit.edu/~mmahoney/compression/textdata.html)) on ramdisk - Compression speed is...
Commit 46925f712e36afe8c7958bbef8be049c34948718 and following commit on branch issue/7 will resolve this issue. NOTE - There is no concurrent compression / decompression yet. - 46925f71 is just a copy of lz4/programs/lz4io.c...
Hi samuel, thanks for the report ! I've checked your problem. ### Summary - I've reproduce your problem partly. ### Questions - Could you describe just a bit more detail...
> output is to `null` It seems that `null` is key to this problem. I could not reproduce "stall", but always got `std::future_error` by the following command: ``` $ ./lz4mt...
Thanks for the logs. I'm checking your report. 2a8ed67, I've resolved `std::future_error` caused by `null` output. fb61bf3, I've resolved [`valgrind --tool=memcheck`'s "possibly lost" warning](https://gist.github.com/t-mat/6716399#valgrind---leak-checkfull---toolmemcheck-lz4mt--c0) - This is a false positive....
MEMO TO ME The GNU C++ Library 3. Using - Debugging Support - Data Race Hunting http://gcc.gnu.org/onlinedocs/libstdc++/manual/debug.html#debug.races c++ - std::thread problems - Stack Overflow http://stackoverflow.com/questions/10618142/stdthread-problems
MEMO Bug 327881 - False Positive Warning on std::atomic_bool ( helgrind @ valgrind 3.9.0 ) https://bugs.kde.org/show_bug.cgi?id=327881 valgrind-variant https://code.google.com/p/valgrind-variant/source/browse/trunk/valgrind/drd/tests/std_thread.cpp?spec=svn129&r=129 ``` // Test whether no race conditions are reported on std::thread. Note:...