//kernel.h
698 default:
699 /// ??? That is impossible
700 assert( false );
I am basically spawning a bunch of thread which then call push{front, back} and pop{front, back} over and over again ( I tried to do some performance evaluations).
The Error does not happen everytime, but quite often. I think that I am maybe using the library wrong, but as the assert just said "impossible" I thought that I better create this issue
When using this library I get an assertion error:
Looking this up in the sources it states:
I am basically spawning a bunch of thread which then call push{front, back} and pop{front, back} over and over again ( I tried to do some performance evaluations). The Error does not happen everytime, but quite often. I think that I am maybe using the library wrong, but as the
assert
just said "impossible" I thought that I better create this issue