mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00

This commit refactors the way stream buffers initialize their spinlock. - "prvInitialiseNewStreamBuffer()" now initializes the stream buffer fields manually (instead of using memset()) to avoid resetting the spin lock - Stream buffer creation functions now manually initialize the spinlock after the other fields are initialized using "prvInitialiseNewStreamBuffer()" Also added comments to event group spinlock initializtion.