Changeset 2a7749d7 in mainline for uspace/lib/c/arch
- Timestamp:
- 2017-10-10T20:47:07Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cf13b17
- Parents:
- 04ba110
- Location:
- uspace/lib/c/arch
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/include/libarch/faddr.h
r04ba110 r2a7749d7 36 36 #define LIBC_abs32le_FADDR_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/abs32le/include/libarch/syscall.h
r04ba110 r2a7749d7 38 38 39 39 #include <abi/syscall.h> 40 #include < libarch/types.h>40 #include <sys/types.h> 41 41 42 42 #define __syscall0 __syscall -
uspace/lib/c/arch/amd64/include/libarch/faddr.h
r04ba110 r2a7749d7 36 36 #define LIBC_amd64_FADDR_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/arm32/include/libarch/faddr.h
r04ba110 r2a7749d7 37 37 #define LIBC_arm32_FADDR_H_ 38 38 39 #include < libarch/types.h>39 #include <sys/types.h> 40 40 41 41 /** Calculate absolute address of function referenced by fptr pointer. -
uspace/lib/c/arch/arm32/include/libarch/fibril.h
r04ba110 r2a7749d7 37 37 #define LIBC_arm32_FIBRIL_H_ 38 38 39 #include < libarch/types.h>39 #include <sys/types.h> 40 40 #include <align.h> 41 41 #include <thread.h> -
uspace/lib/c/arch/ia32/include/libarch/faddr.h
r04ba110 r2a7749d7 36 36 #define LIBC_ia32_FADDR_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/ia32/include/libarch/fibril.h
r04ba110 r2a7749d7 36 36 #define LIBC_ia32_FIBRIL_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 #include <libarch/fibril_context.h> 40 40 -
uspace/lib/c/arch/ia32/include/libarch/syscall.h
r04ba110 r2a7749d7 38 38 39 39 #include <abi/syscall.h> 40 #include < libarch/types.h>40 #include <sys/types.h> 41 41 42 42 #define __syscall0 __syscall_fast_func -
uspace/lib/c/arch/ia64/include/libarch/faddr.h
r04ba110 r2a7749d7 36 36 #define LIBC_ia64_FADDR_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 40 40 /** -
uspace/lib/c/arch/ia64/include/libarch/fibril.h
r04ba110 r2a7749d7 39 39 #include <align.h> 40 40 #include <libarch/stack.h> 41 #include < libarch/types.h>41 #include <sys/types.h> 42 42 #include <libarch/fibril_context.h> 43 43 -
uspace/lib/c/arch/mips32/include/libarch/faddr.h
r04ba110 r2a7749d7 36 36 #define LIBC_mips32_FADDR_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/ppc32/include/libarch/faddr.h
r04ba110 r2a7749d7 36 36 #define LIBC_ppc32_FADDR_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/riscv64/include/libarch/faddr.h
r04ba110 r2a7749d7 36 36 #define LIBC_riscv64_FADDR_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/riscv64/include/libarch/syscall.h
r04ba110 r2a7749d7 39 39 #include <stdint.h> 40 40 #include <abi/syscall.h> 41 #include < libarch/types.h>41 #include <sys/types.h> 42 42 43 43 #define __syscall0 __syscall -
uspace/lib/c/arch/riscv64/src/thread_entry.c
r04ba110 r2a7749d7 30 30 */ 31 31 32 #include < libarch/types.h>32 #include <sys/types.h> 33 33 #include "../../../generic/private/thread.h" 34 34 -
uspace/lib/c/arch/sparc64/include/libarch/faddr.h
r04ba110 r2a7749d7 36 36 #define LIBC_sparc64_FADDR_H_ 37 37 38 #include < libarch/types.h>38 #include <sys/types.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/sparc64/include/libarch/syscall.h
r04ba110 r2a7749d7 38 38 #include <stdint.h> 39 39 #include <abi/syscall.h> 40 #include < libarch/types.h>40 #include <sys/types.h> 41 41 42 42 #define __syscall0 __syscall
Note:
See TracChangeset
for help on using the changeset viewer.