Changeset 5d4e90f0 in mainline for uspace/lib/libc/arch
- Timestamp:
- 2007-09-27T12:35:36Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bcf23cf
- Parents:
- 8c20b26
- Location:
- uspace/lib/libc/arch
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/arch/amd64/include/fibril.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_amd64_FIBRIL_H_ 37 37 38 #include < types.h>38 #include <sys/types.h> 39 39 40 40 /* According to ABI the stack MUST be aligned on -
uspace/lib/libc/arch/amd64/include/types.h
r8c20b26 r5d4e90f0 37 37 38 38 typedef unsigned long long sysarg_t; 39 typedef unsigned long size_t;40 typedef signed long ssize_t;41 typedef ssize_t off_t;42 39 43 40 typedef signed char int8_t; -
uspace/lib/libc/arch/arm32/include/fibril.h
r8c20b26 r5d4e90f0 37 37 #define LIBC_arm32_FIBRIL_H_ 38 38 39 #include < types.h>39 #include <sys/types.h> 40 40 #include <align.h> 41 41 #include "thread.h" -
uspace/lib/libc/arch/arm32/include/types.h
r8c20b26 r5d4e90f0 38 38 39 39 typedef unsigned int sysarg_t; 40 typedef unsigned int size_t;41 typedef signed int ssize_t;42 typedef ssize_t off_t;43 40 44 41 typedef char int8_t; -
uspace/lib/libc/arch/ia32/include/fibril.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_ia32_FIBRIL_H_ 37 37 38 #include < types.h>38 #include <sys/types.h> 39 39 40 40 /* According to ABI the stack MUST be aligned on -
uspace/lib/libc/arch/ia32/include/stackarg.h
r8c20b26 r5d4e90f0 41 41 #define LIBC_ia32_STACKARG_H_ 42 42 43 #include < types.h>43 #include <sys/types.h> 44 44 45 45 /* dont allow to define it second time in stdarg.h */ -
uspace/lib/libc/arch/ia32/include/types.h
r8c20b26 r5d4e90f0 37 37 38 38 typedef unsigned int sysarg_t; 39 typedef unsigned int size_t;40 typedef signed int ssize_t;41 typedef ssize_t off_t;42 39 43 40 typedef char int8_t; -
uspace/lib/libc/arch/ia64/include/fibril.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_ia64_FIBRIL_H_ 37 37 38 #include < types.h>38 #include <sys/types.h> 39 39 #include <align.h> 40 40 #include <libarch/stack.h> -
uspace/lib/libc/arch/ia64/include/types.h
r8c20b26 r5d4e90f0 37 37 38 38 typedef unsigned long long sysarg_t; 39 typedef unsigned long size_t;40 typedef signed long ssize_t;41 typedef ssize_t off_t;42 39 43 40 typedef char int8_t; -
uspace/lib/libc/arch/mips32/include/fibril.h
r8c20b26 r5d4e90f0 37 37 #define LIBC_mips32_FIBRIL_H_ 38 38 39 #include < types.h>39 #include <sys/types.h> 40 40 41 41 /* We define our own context_set, because we need to set -
uspace/lib/libc/arch/mips32/include/stackarg.h
r8c20b26 r5d4e90f0 40 40 #define __VARARGS_DEFINED 41 41 42 #include < types.h>42 #include <sys/types.h> 43 43 44 44 /** -
uspace/lib/libc/arch/mips32/include/types.h
r8c20b26 r5d4e90f0 38 38 39 39 typedef unsigned int sysarg_t; 40 typedef unsigned int size_t;41 typedef signed int ssize_t;42 typedef ssize_t off_t;43 40 44 41 typedef char int8_t; -
uspace/lib/libc/arch/ppc32/include/fibril.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_ppc32_FIBRIL_H_ 37 37 38 #include < types.h>38 #include <sys/types.h> 39 39 40 40 /* We define our own context_set, because we need to set -
uspace/lib/libc/arch/ppc32/include/types.h
r8c20b26 r5d4e90f0 37 37 38 38 typedef unsigned int sysarg_t; 39 typedef unsigned int size_t;40 typedef signed int ssize_t;41 typedef ssize_t off_t;42 39 43 40 typedef char int8_t; -
uspace/lib/libc/arch/ppc64/include/fibril.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_ppc64_FIBRIL_H_ 37 37 38 #include < types.h>38 #include <sys/types.h> 39 39 40 40 /* We define our own context_set, because we need to set -
uspace/lib/libc/arch/ppc64/include/types.h
r8c20b26 r5d4e90f0 37 37 38 38 typedef unsigned long sysarg_t; 39 typedef unsigned long size_t;40 typedef signed long ssize_t;41 typedef ssize_t off_t;42 39 43 40 typedef char int8_t; -
uspace/lib/libc/arch/sparc64/include/atomic.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_sparc64_ATOMIC_H_ 37 37 38 #include < types.h>38 #include <sys/types.h> 39 39 40 40 /** Atomic add operation. -
uspace/lib/libc/arch/sparc64/include/fibril.h
r8c20b26 r5d4e90f0 37 37 38 38 #include <libarch/stack.h> 39 #include < types.h>39 #include <sys/types.h> 40 40 #include <align.h> 41 41 -
uspace/lib/libc/arch/sparc64/include/syscall.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_sparc64_SYSCALL_H_ 37 37 38 #include < types.h>38 #include <sys/types.h> 39 39 #include <kernel/syscall/syscall.h> 40 40 -
uspace/lib/libc/arch/sparc64/include/types.h
r8c20b26 r5d4e90f0 37 37 38 38 typedef unsigned long sysarg_t; 39 typedef unsigned long size_t;40 typedef signed long ssize_t;41 typedef ssize_t off_t;42 39 43 40 typedef signed char int8_t;
Note:
See TracChangeset
for help on using the changeset viewer.