Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChing-Hsin,Lee <chinglee@amazon.com>2024-01-10 08:39:27 +0300
committerPaul Bartell <paul.bartell@gmail.com>2024-01-11 21:53:54 +0300
commit14903c380ea276f2766a5a096353da285831b2b8 (patch)
tree06aea6b8b1685710202b1b2f2047f96722157b33
parenta7d39c3e3a1390c3e0cde3eda87a35edfa3181f6 (diff)
Remove redundent cancellation point
-rw-r--r--portable/ThirdParty/GCC/Posix/port.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/portable/ThirdParty/GCC/Posix/port.c b/portable/ThirdParty/GCC/Posix/port.c
index 43fff7f5d..4c61ff544 100644
--- a/portable/ThirdParty/GCC/Posix/port.c
+++ b/portable/ThirdParty/GCC/Posix/port.c
@@ -398,7 +398,6 @@ static void * prvTimerTickHandler( void * arg )
}
usleep( portTICK_RATE_MICROSECONDS );
- pthread_testcancel();
}
return NULL;