Update README.md

This commit is contained in:
abhidixi11 2021-08-23 12:21:45 -07:00 committed by GitHub
parent ecc755c493
commit 4db6183b28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,7 @@
## FreeRTOS+POSIX: Portable Operating System Interface (POSIX threading wrapper) for FreeRTOS ## FreeRTOS+POSIX: Portable Operating System Interface (POSIX threading wrapper) for FreeRTOS
The Portable Operating System Interface (POSIX) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. FreeRTOS+POSIX implements *a subset* of the [POSIX threading](https://pubs.opengroup.org/onlinepubs/7908799/xsh/threads.html) API. This subset allows application developers familiar with POSIX API to develop a FreeRTOS application using POSIX like threading premitives. The Portable Operating System Interface (POSIX) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. FreeRTOS+POSIX implements *a small subset* of the [POSIX threading](https://pubs.opengroup.org/onlinepubs/7908799/xsh/threads.html) API. This subset allows application developers familiar with POSIX API to develop a FreeRTOS application using POSIX like threading premitives. FreeRTOS+POSIX does not implement more than 80% of the POSIX API. Therefore, an exiting POSIX compliant application or a POSIX compliant library cannot be ported to run on FreeRTOS Kernel using this wrapper.
With FreeRTOS+POSIX, an existing POSIX threading compliant application can not be ported to run on the FreeRTOS kernel, because FreeRTOS+POSIX does not implement more than 80% of the POSIX API. Additionally, a library designed for use with POSIX threading compatible operating systems can not be ported to FreeRTOS kernel based applications using this wrapper.
For more on FreeRTOS+POSIX, please visit [freertos.org](https://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_POSIX/index.html)
This repository only contains source code. For demo applications, please visit https://github.com/FreeRTOS/FreeRTOS-Labs. This repository only contains source code. For demo applications, please visit https://github.com/FreeRTOS/FreeRTOS-Labs.