esp_modem: Update Task handle and Event Group handle to match freertos v10.4.3

This commit updates the default handles for Task type and Signal Group
type to match the struct type handle from freertos v10.4.3.

Signed-off-by: Sudeep Mohanty <sudeep.mohanty@espressif.com>
This commit is contained in:
Sudeep Mohanty
2021-11-08 10:46:53 +05:30
parent cc7aa03a37
commit 58887170d2

View File

@ -43,8 +43,8 @@ struct Lock {
private: private:
MutexT m{}; MutexT m{};
}; };
using TaskT = void*; using TaskT = TaskHandle_t;
using SignalT = void*; using SignalT = EventGroupHandle_t;
#else #else
using Lock = std::mutex; using Lock = std::mutex;
struct SignalGroupInternal; struct SignalGroupInternal;