I am looking for an embedded OS that satisfies the requirements below, I did several searches on the site and web but seems hard to find anything close, so I turned it here, hope this is not a duplicate question already being asked before.
I need to find an embedded OS that:
have to:
- be Open source
- be able to runs on x86
- support standard glibc and glibc++ runtime, and POSIX APIs
- have multi-threading support, including in-kernel task scheduling; and user-land pthread API support
- may support only single application process, no need to support process control in kernel
- no need to support virtual memory and paging
- has user-land malloc / mmap APIs and underlying in-kernel memory management functionality
- no need of disk storage support, system all run in memory after kernel and the single app process loaded from image
and optionally:
- no need to support console, gfx drivers etc
- no need of various bunch of device drivers and extended functionalities support such as the linux kernel does
- small footprint and fast boot
- provide some means of IPC APIs, such as shared memory (we probably would modify its underlying impl. to satisfy our requirement)
Sorry this is a long posting trying to be accurate. Would be very appreciate if any small / embedded OS with features close to the above requirements, the closer match would save more of our porting efforts :) thanks a lot.