mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
[gpio] calloc in critical section
Remove calloc out of critical section. In critical section, assign allocated memory to gpio_isr_func. Free resources if gpio_isr_register() fails.
This commit is contained in:
parent
87fbc2f487
commit
34ff721c92
@ -447,14 +447,17 @@ static void IRAM_ATTR gpio_intr_service(void *arg)
|
||||
esp_err_t gpio_install_isr_service(int intr_alloc_flags)
|
||||
{
|
||||
GPIO_CHECK(gpio_context.gpio_isr_func == NULL, "GPIO isr service already installed", ESP_ERR_INVALID_STATE);
|
||||
esp_err_t ret;
|
||||
portENTER_CRITICAL(&gpio_context.gpio_spinlock);
|
||||
gpio_context.gpio_isr_func = (gpio_isr_func_t *) calloc(GPIO_NUM_MAX, sizeof(gpio_isr_func_t));
|
||||
portEXIT_CRITICAL(&gpio_context.gpio_spinlock);
|
||||
if (gpio_context.gpio_isr_func == NULL) {
|
||||
ret = ESP_ERR_NO_MEM;
|
||||
} else {
|
||||
esp_err_t ret = ESP_ERR_NO_MEM;
|
||||
gpio_isr_func_t *isr_func = (gpio_isr_func_t *) calloc(GPIO_NUM_MAX, sizeof(gpio_isr_func_t));
|
||||
if (isr_func) {
|
||||
portENTER_CRITICAL(&gpio_context.gpio_spinlock);
|
||||
gpio_context.gpio_isr_func = isr_func;
|
||||
portEXIT_CRITICAL(&gpio_context.gpio_spinlock);
|
||||
ret = gpio_isr_register(gpio_intr_service, NULL, intr_alloc_flags, &gpio_context.gpio_isr_handle);
|
||||
if (ret != ESP_OK) {
|
||||
// registering failed, free allocated resources
|
||||
gpio_uninstall_isr_service();
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user