-
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
30 files
+1 −1 | arch/arm/v7a/Makefile | |
+38 −0 | arch/arm/v7a/tls.c | |
+20 −1 | arch/arm/v7m/tls.c | |
+20 −1 | arch/arm/v8m/tls.c | |
+1 −1 | arch/arm/v8r/Makefile | |
+38 −0 | arch/arm/v8r/tls.c | |
+1 −1 | arch/ia32/Makefile | |
+38 −0 | arch/ia32/tls.c | |
+1 −1 | arch/riscv64/Makefile | |
+42 −0 | arch/riscv64/tls.c | |
+1 −1 | arch/sparcv8leon3/Makefile | |
+36 −0 | arch/sparcv8leon3/tls.c | |
+13 −0 | crt0-common.c | |
+9 −6 | errno/errno.c | |
+2 −1 | include/arch/armv7a/arch.h | |
+2 −1 | include/arch/armv7m/arch.h | |
+2 −1 | include/arch/armv8m/arch.h | |
+2 −1 | include/arch/armv8r/arch.h | |
+2 −1 | include/arch/ia32/arch.h | |
+2 −1 | include/arch/riscv64/arch.h | |
+2 −1 | include/arch/sparcv8leon3/arch.h | |
+49 −0 | include/elf.h | |
+26 −0 | include/sys/auxv.h | |
+21 −2 | include/sys/threads.h | |
+74 −0 | include/sys/tls.h | |
+4 −2 | misc/init.c | |
+1 −1 | sys/Makefile | |
+31 −0 | sys/auxv.c | |
+26 −0 | sys/threads.c | |
+112 −0 | sys/tls.c |
Submodule phoenix-rtos-kernel
updated
21 files
+6 −4 | hal/armv7a/cpu.c | |
+6 −4 | hal/armv7m/cpu.c | |
+6 −4 | hal/armv8m/cpu.c | |
+6 −4 | hal/armv8r/cpu.c | |
+2 −5 | hal/cpu.h | |
+0 −6 | hal/hal.h | |
+8 −8 | hal/ia32/arch/cpu.h | |
+8 −6 | hal/ia32/console-serial.c | |
+9 −9 | hal/ia32/console.c | |
+7 −5 | hal/ia32/cpu.c | |
+10 −10 | hal/ia32/ia32.h | |
+2 −2 | hal/ia32/init.c | |
+4 −4 | hal/ia32/pci.c | |
+6 −4 | hal/riscv64/cpu.c | |
+6 −4 | hal/sparcv8leon3/cpu.c | |
+2 −1 | include/syscalls.h | |
+42 −50 | proc/process.c | |
+2 −0 | proc/process.h | |
+22 −13 | proc/threads.c | |
+4 −1 | proc/threads.h | |
+12 −0 | syscalls.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 |