-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* libphoenix bd3db90...993f5e7 (4): > Adjust mmap to new interface > pthread: destroy cleanup handlers on cancel > phtread: call pthread_exit implicitely on return from start function > pthread: rework how destructors are called * phoenix-rtos-corelibs ac19988...3d10d30 (1): > Adjust mmap calls to new interface * phoenix-rtos-devices 78d0d35...552c3bb (1): > Adjust mmap calls to new interface * phoenix-rtos-doc e7e1629...4d0b848 (1): > Adjust mmap doc to new interface * phoenix-rtos-filesystems ea13031...cc2e6a8 (1): > Adjust mmap calls to new interface * phoenix-rtos-kernel 190bd6f...dcfb262 (3): > vm: add VM_OBJ_PHYSMEM define > mmap: change interface to be posix compliant > Remove offs_t from log and vm subsystems * phoenix-rtos-lwip fa7a2e8...3f8a74f (1): > Adjust mmap calls to new interface * phoenix-rtos-posixsrv ef6ee0e...a9a75ac (1): > Adjust mmap calls to new interface * phoenix-rtos-tests 0c58bed...c230f33 (1): > Adjust mmap calls to new interface * phoenix-rtos-usb a6fdbb9...7358b3f (1): > Adjust mmap calls to new interface * phoenix-rtos-utils fad55b6...4518226 (1): > Adjust mmap calls to new interface
- Loading branch information
1 parent
6c73a11
commit 4e2ac6c
Showing
11 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
Submodule libphoenix
updated
6 files
+4 −0 | include/limits.h | |
+2 −3 | include/sys/mman.h | |
+175 −130 | pthread/pthread.c | |
+4 −2 | stdio/file.c | |
+5 −3 | stdlib/malloc_dl.c | |
+3 −1 | stdlib/malloc_trivial3.c |
Submodule phoenix-rtos-corelibs
updated
6 files
+1 −1 | libgraph/cirrus.c | |
+2 −2 | libgraph/virtio-gpu.c | |
+1 −1 | libvga/vgahw-pc.c | |
+1 −1 | libvirtio/virtio.c | |
+1 −1 | libvirtio/virtiopci.c | |
+1 −1 | libvirtio/virtqueue.c |
Submodule phoenix-rtos-devices
updated
34 files
Submodule phoenix-rtos-doc
updated
2 files
+2 −2 | devices/hwaccess.md | |
+17 −6 | libc/functions/m/mmap.part-impl.md |
Submodule phoenix-rtos-filesystems
updated
4 files
+1 −1 | dummyfs/dummyfs.c | |
+1 −1 | dummyfs/memory.c | |
+7 −7 | jffs2/phoenix-rtos.h | |
+1 −1 | jffs2/phoenix-rtos/mtd_em.c |
Submodule phoenix-rtos-kernel
updated
23 files
+2 −0 | hal/armv7a/arch/types.h | |
+2 −0 | hal/armv7m/arch/types.h | |
+2 −0 | hal/armv8m/arch/types.h | |
+2 −0 | hal/ia32/arch/types.h | |
+2 −0 | hal/riscv64/arch/types.h | |
+2 −0 | hal/sparcv8leon3/arch/types.h | |
+21 −11 | include/mman.h | |
+0 −2 | include/posix.h | |
+1 −1 | include/sysinfo.h | |
+4 −4 | log/log.c | |
+18 −0 | posix/posix.c | |
+3 −0 | posix/posix.h | |
+5 −2 | proc/msg.c | |
+4 −4 | proc/name.c | |
+3 −3 | proc/name.h | |
+12 −12 | proc/process.c | |
+25 −18 | syscalls.c | |
+1 −1 | vm/amap.c | |
+1 −1 | vm/amap.h | |
+43 −39 | vm/map.c | |
+4 −4 | vm/map.h | |
+7 −8 | vm/object.c | |
+5 −1 | vm/object.h |
Submodule phoenix-rtos-tests
updated
3 files
+1 −1 | disk/test_disk.c | |
+1 −1 | mem/test_mmap.c | |
+2 −2 | proc/test_msg.c |