Changeset d5a89a3 in mainline for uspace/lib/c/arch/arm32/include/libarch
- Timestamp:
- 2019-02-11T22:31:04Z (6 years ago)
- Children:
- aaf9789c
- Parents:
- e3272101 (diff), 4805495 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/lib/c/arch/arm32/include/libarch
- Files:
-
- 2 added
- 10 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/arm32/include/libarch/config.h
re3272101 rd5a89a3 34 34 */ 35 35 36 #ifndef LIBC_arm32_CONFIG_H_37 #define LIBC_arm32_CONFIG_H_36 #ifndef _LIBC_arm32_CONFIG_H_ 37 #define _LIBC_arm32_CONFIG_H_ 38 38 39 39 #define PAGE_WIDTH 12 -
uspace/lib/c/arch/arm32/include/libarch/ddi.h
re3272101 rd5a89a3 31 31 */ 32 32 33 #ifndef LIBC_arm32_DDI_H_34 #define LIBC_arm32_DDI_H_33 #ifndef _LIBC_arm32_DDI_H_ 34 #define _LIBC_arm32_DDI_H_ 35 35 36 36 #include <ddi.h> -
uspace/lib/c/arch/arm32/include/libarch/elf_linux.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_arm32_ELF_LINUX_H_36 #define LIBC_arm32_ELF_LINUX_H_35 #ifndef _LIBC_arm32_ELF_LINUX_H_ 36 #define _LIBC_arm32_ELF_LINUX_H_ 37 37 38 38 #include <libarch/istate.h> -
uspace/lib/c/arch/arm32/include/libarch/faddr.h
re3272101 rd5a89a3 34 34 */ 35 35 36 #ifndef LIBC_arm32_FADDR_H_37 #define LIBC_arm32_FADDR_H_36 #ifndef _LIBC_arm32_FADDR_H_ 37 #define _LIBC_arm32_FADDR_H_ 38 38 39 39 #include <types/common.h> -
uspace/lib/c/arch/arm32/include/libarch/fibril.h
re3272101 rd5a89a3 34 34 */ 35 35 36 #ifndef LIBC_arm32_FIBRIL_H_37 #define LIBC_arm32_FIBRIL_H_36 #ifndef _LIBC_arm32_FIBRIL_H_ 37 #define _LIBC_arm32_FIBRIL_H_ 38 38 39 39 #include <types/common.h> -
uspace/lib/c/arch/arm32/include/libarch/fibril_context.h
re3272101 rd5a89a3 27 27 */ 28 28 29 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_30 #define LIBC_ARCH_FIBRIL_CONTEXT_H_29 #ifndef _LIBC_ARCH_FIBRIL_CONTEXT_H_ 30 #define _LIBC_ARCH_FIBRIL_CONTEXT_H_ 31 31 32 32 #include <stdint.h> … … 41 41 // XXX: This struct must match the assembly code in src/fibril.S 42 42 43 typedef struct context {43 typedef struct __context { 44 44 uintptr_t sp; 45 45 uintptr_t pc; … … 54 54 /* r11 */ 55 55 uint32_t fp; 56 } context_t;56 } __context_t; 57 57 58 58 #endif -
uspace/lib/c/arch/arm32/include/libarch/rtld/dynamic.h
re3272101 rd5a89a3 1 1 /* 2 * Copyright (c) 201 8 Jaroslav Jindrak2 * Copyright (c) 2019 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 #ifndef LIBCPP_BITS_COMMON 30 #define LIBCPP_BITS_COMMON 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 31 34 32 /** 33 * According to section 17.2 of the standard, 34 * the restrict qualifier shall be omitted. 35 */ 36 #define restrict 35 #ifndef _LIBC_arm32_RTLD_DYNAMIC_H_ 36 #define _LIBC_arm32_RTLD_DYNAMIC_H_ 37 37 38 #undef NULL 39 #define NULL nullptr 38 typedef struct { 39 /* Empty. */ 40 } dyn_info_arch_t; 40 41 41 42 #endif 43 44 /** @} 45 */ -
uspace/lib/c/arch/arm32/include/libarch/stackarg.h
re3272101 rd5a89a3 34 34 */ 35 35 36 #ifndef LIBC_arm32_STACKARG_H_37 #define LIBC_arm32_STACKARG_H_36 #ifndef _LIBC_arm32_STACKARG_H_ 37 #define _LIBC_arm32_STACKARG_H_ 38 38 39 39 #endif -
uspace/lib/c/arch/arm32/include/libarch/syscall.h
re3272101 rd5a89a3 34 34 */ 35 35 36 #ifndef LIBC_arm32_SYSCALL_H_37 #define LIBC_arm32_SYSCALL_H_36 #ifndef _LIBC_arm32_SYSCALL_H_ 37 #define _LIBC_arm32_SYSCALL_H_ 38 38 39 39 #define LIBARCH_SYSCALL_GENERIC -
uspace/lib/c/arch/arm32/include/libarch/thread.h
re3272101 rd5a89a3 34 34 */ 35 35 36 #ifndef LIBC_arm32_THREAD_H_37 #define LIBC_arm32_THREAD_H_36 #ifndef _LIBC_arm32_THREAD_H_ 37 #define _LIBC_arm32_THREAD_H_ 38 38 39 39 #endif -
uspace/lib/c/arch/arm32/include/libarch/tls.h
re3272101 rd5a89a3 34 34 */ 35 35 36 #ifndef LIBC_arm32_TLS_H_37 #define LIBC_arm32_TLS_H_36 #ifndef _LIBC_arm32_TLS_H_ 37 #define _LIBC_arm32_TLS_H_ 38 38 39 39 #include <stdint.h> … … 49 49 */ 50 50 typedef struct { 51 void **dtv; 52 void *pad; 51 53 /** Fibril data. */ 52 54 void *fibril_data;
Note:
See TracChangeset
for help on using the changeset viewer.