summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxshm02 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* posix/mman: add mmap support for shm objectsGedare Bloom2017-05-051-1/+2
| | | | Update #2859.
* psxtests: Relax shared memory testsSebastian Huber2017-01-251-9/+12
| | | | | | There is currently no proper mmap() implementation. Update #2859.
* posix: shared memory supportGedare Bloom2017-01-134-0/+151
Add POSIX shared memory manager (Shm). Includes a hook-based approach for the backing memory storage that defaults to the Workspace, and a test is provided using the heap. A test is also provided for the basic use of mmap'ing a shared memory object. This test currently fails at the mmap stage due to no support for mmap.