Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freertos/lab-project-freertos-posix
This repository contains FreeRTOS+POSIX source code, which could be consumed as a submodule.
https://github.com/freertos/lab-project-freertos-posix
Last synced: 7 days ago
JSON representation
This repository contains FreeRTOS+POSIX source code, which could be consumed as a submodule.
- Host: GitHub
- URL: https://github.com/freertos/lab-project-freertos-posix
- Owner: FreeRTOS
- License: mit
- Created: 2019-11-20T17:46:29.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-10T12:04:24.000Z (about 2 months ago)
- Last Synced: 2024-12-15T01:08:52.354Z (14 days ago)
- Language: C
- Homepage:
- Size: 3.19 MB
- Stars: 107
- Watchers: 24
- Forks: 63
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 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 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 primitives. FreeRTOS+POSIX does not implement more than 80% of the POSIX API. Therefore, an existing POSIX compliant application or a POSIX compliant library cannot be ported to run on FreeRTOS Kernel using only this wrapper.
This repository only contains source code. For demo applications, please visit https://github.com/FreeRTOS/FreeRTOS-Labs.
## To consume FreeRTOS+POSIX
It is recommended to use this repository as a submodule. Please refer to [Git Tools — Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules).## Notes
This project is undergoing optimizations or refactorization to improve memory usage, modularity, documentation, demo usability, or test coverage.