mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	gptimer: fix race condition between start and stop
Added state transition in gptimer_start/stop functions. So that it's not possible to make a stopped timer continue to run because of race condition.
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
			
		||||
/*
 | 
			
		||||
 * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
 | 
			
		||||
 * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
 | 
			
		||||
 *
 | 
			
		||||
 * SPDX-License-Identifier: Apache-2.0
 | 
			
		||||
 */
 | 
			
		||||
@@ -191,7 +191,6 @@ TEST_CASE("Test Task_Notify", "[freertos]")
 | 
			
		||||
    vSemaphoreDelete(trigger_send_semphr);
 | 
			
		||||
    vSemaphoreDelete(task_delete_semphr);
 | 
			
		||||
    for (int i = 0; i < portNUM_PROCESSORS; i++) {
 | 
			
		||||
        TEST_ESP_OK(gptimer_stop(gptimers[i]));
 | 
			
		||||
        TEST_ESP_OK(gptimer_disable(gptimers[i]));
 | 
			
		||||
        TEST_ESP_OK(gptimer_del_timer(gptimers[i]));
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user