mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04: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.