Regarding the missing switch default case, I recommend to replace the "case eNoAction" with the "default" case. This way, all enum values are covered and illegal states (if so) are properly handled - even if the default just consists of a "break" only. Best regards and thanks a lot for a cool v10!
Compiler warnings
Wrong 'extern "C"' in stream_buffer.h
This function has been added in 9.0.0. Thanks A LOT!! I can remove my own implementation now. Very helpful!
Provide a method of getting a list of all task handles
Provide a method of getting a task handle by its task name
Compiler warning in the xQueueGenericCreate function
-Wswitch-default is used due to programming style. A default case is always recommended...