Lab-Project-FreeRTOS-POSIX
Lab-Project-FreeRTOS-POSIX copied to clipboard
This repository contains FreeRTOS+POSIX source code, which could be consumed as a submodule.
FreeRTOS-Plus-POSIX uses the static versions of semaphore/mutex API functions. These functions only are available if configSUPPORT_STATIC_ALLOCATION is 1. At a minimum this should be listed as a dependency, but ideally...
On entering the sem_timedwait function the semaphore value is (correctly?) decremented but it is never reset to its original value when xSemaphoreTake returns a timeout. In my case, this means...
Where is pthread_cancel? Why is it not implemented?
stat.h
Hi would it be possible to add stat.h under sys? Refer to https://en.wikibooks.org/wiki/C_Programming/POSIX_Reference/sys/stat.h Thanx in advance
Version available in this repository (V1.1.0) is older than one present in: https://github.com/aws/amazon-freertos/tree/main/libraries/freertos_plus/standard/freertos_plus_posix (V1.2.1) Could you please update this repository or make proposal about recommended version for new integrations?
If a high priority thread and a low priority thread are blocked in pthread_cond_wait(), the low priority thread will not be awakened,… instead the high priority thread checks it’s condition...
If the timeout isn't null, pthread_cond_timedwait does some work to convert the timeout to a timestamp. If this fails (which it can at least in principle) the resulting error path...