-
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.
JIRA: RTOS-921
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule libphoenix
updated
27 files
+1 −1 | arch/arm/v7a/Makefile | |
+33 −0 | arch/arm/v7a/tls.c | |
+14 −0 | arch/arm/v7m/tls.c | |
+15 −0 | arch/arm/v8m/tls.c | |
+1 −1 | arch/arm/v8r/Makefile | |
+33 −0 | arch/arm/v8r/tls.c | |
+1 −1 | arch/ia32/Makefile | |
+33 −0 | arch/ia32/tls.c | |
+1 −1 | arch/riscv64/Makefile | |
+37 −0 | arch/riscv64/tls.c | |
+1 −1 | arch/sparcv8leon3/Makefile | |
+31 −0 | arch/sparcv8leon3/tls.c | |
+13 −0 | crt0-common.c | |
+4 −1 | errno/errno.c | |
+1 −1 | include/arch/armv7a/arch.h | |
+1 −1 | include/arch/ia32/arch.h | |
+1 −1 | include/arch/riscv64/arch.h | |
+1 −1 | include/arch/sparcv8leon3/arch.h | |
+49 −0 | include/elf.h | |
+26 −0 | include/sys/auxv.h | |
+21 −2 | include/sys/threads.h | |
+72 −0 | include/sys/tls.h | |
+4 −2 | misc/init.c | |
+1 −1 | sys/Makefile | |
+31 −0 | sys/auxv.c | |
+26 −0 | sys/threads.c | |
+110 −0 | sys/tls.c |
Submodule phoenix-rtos-kernel
updated
22 files
+11 −9 | hal/armv7a/cpu.c | |
+11 −6 | hal/armv7m/cpu.c | |
+11 −6 | hal/armv8m/cpu.c | |
+11 −9 | hal/armv8r/cpu.c | |
+5 −2 | hal/cpu.h | |
+1 −4 | hal/hal.h | |
+11 −6 | hal/ia32/cpu.c | |
+10 −6 | hal/riscv64/cpu.c | |
+10 −5 | hal/sparcv8leon3/cpu.c | |
+38 −0 | include/auxv.h | |
+13 −11 | include/elf.h | |
+5 −3 | include/syscalls.h | |
+126 −153 | proc/process.c | |
+0 −6 | proc/process.h | |
+18 −28 | proc/threads.c | |
+4 −1 | proc/threads.h | |
+15 −4 | syscalls.c | |
+2 −2 | test/msg.c | |
+16 −16 | test/proc.c | |
+1 −1 | test/rb.c | |
+2 −2 | test/vm.c | |
+1 −1 | usrv.c |
Submodule phoenix-rtos-tests
updated
3 files
+2 −2 | proc/test_priority.c | |
+1 −1 | thread-local/tls.c | |
+2 −0 | thread-local/tls_functions.c |