Changeset cf13b17 in mainline for uspace/lib/c
- Timestamp:
- 2017-10-11T16:32:00Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b08e98ba
- Parents:
- 2a7749d7
- Location:
- uspace/lib/c
- Files:
-
- 35 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/include/libarch/faddr.h
r2a7749d7 rcf13b17 36 36 #define LIBC_abs32le_FADDR_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/abs32le/include/libarch/syscall.h
r2a7749d7 rcf13b17 38 38 39 39 #include <abi/syscall.h> 40 #include < sys/types.h>40 #include <types/common.h> 41 41 42 42 #define __syscall0 __syscall -
uspace/lib/c/arch/amd64/include/libarch/faddr.h
r2a7749d7 rcf13b17 36 36 #define LIBC_amd64_FADDR_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/arm32/include/libarch/faddr.h
r2a7749d7 rcf13b17 37 37 #define LIBC_arm32_FADDR_H_ 38 38 39 #include < sys/types.h>39 #include <types/common.h> 40 40 41 41 /** Calculate absolute address of function referenced by fptr pointer. -
uspace/lib/c/arch/arm32/include/libarch/fibril.h
r2a7749d7 rcf13b17 37 37 #define LIBC_arm32_FIBRIL_H_ 38 38 39 #include < sys/types.h>39 #include <types/common.h> 40 40 #include <align.h> 41 41 #include <thread.h> -
uspace/lib/c/arch/ia32/include/libarch/faddr.h
r2a7749d7 rcf13b17 36 36 #define LIBC_ia32_FADDR_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/ia32/include/libarch/fibril.h
r2a7749d7 rcf13b17 36 36 #define LIBC_ia32_FIBRIL_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 #include <libarch/fibril_context.h> 40 40 -
uspace/lib/c/arch/ia32/include/libarch/syscall.h
r2a7749d7 rcf13b17 38 38 39 39 #include <abi/syscall.h> 40 #include < sys/types.h>40 #include <types/common.h> 41 41 42 42 #define __syscall0 __syscall_fast_func -
uspace/lib/c/arch/ia64/include/libarch/faddr.h
r2a7749d7 rcf13b17 36 36 #define LIBC_ia64_FADDR_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 /** -
uspace/lib/c/arch/ia64/include/libarch/fibril.h
r2a7749d7 rcf13b17 39 39 #include <align.h> 40 40 #include <libarch/stack.h> 41 #include < sys/types.h>41 #include <types/common.h> 42 42 #include <libarch/fibril_context.h> 43 43 -
uspace/lib/c/arch/mips32/include/libarch/faddr.h
r2a7749d7 rcf13b17 36 36 #define LIBC_mips32_FADDR_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/ppc32/include/libarch/faddr.h
r2a7749d7 rcf13b17 36 36 #define LIBC_ppc32_FADDR_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/riscv64/include/libarch/faddr.h
r2a7749d7 rcf13b17 36 36 #define LIBC_riscv64_FADDR_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/riscv64/include/libarch/syscall.h
r2a7749d7 rcf13b17 39 39 #include <stdint.h> 40 40 #include <abi/syscall.h> 41 #include < sys/types.h>41 #include <types/common.h> 42 42 43 43 #define __syscall0 __syscall -
uspace/lib/c/arch/riscv64/src/thread_entry.c
r2a7749d7 rcf13b17 30 30 */ 31 31 32 #include < sys/types.h>32 #include <types/common.h> 33 33 #include "../../../generic/private/thread.h" 34 34 -
uspace/lib/c/arch/sparc64/include/libarch/faddr.h
r2a7749d7 rcf13b17 36 36 #define LIBC_sparc64_FADDR_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
uspace/lib/c/arch/sparc64/include/libarch/syscall.h
r2a7749d7 rcf13b17 38 38 #include <stdint.h> 39 39 #include <abi/syscall.h> 40 #include < sys/types.h>40 #include <types/common.h> 41 41 42 42 #define __syscall0 __syscall -
uspace/lib/c/generic/perm.c
r2a7749d7 rcf13b17 38 38 #include <task.h> 39 39 #include <libc.h> 40 #include < sys/types.h>40 #include <types/common.h> 41 41 42 42 /** Grant permissions to a task. -
uspace/lib/c/include/adt/hash.h
r2a7749d7 rcf13b17 36 36 37 37 #include <stdint.h> 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 /** Produces a uniform hash affecting all output bits from the skewed input. */ -
uspace/lib/c/include/as.h
r2a7749d7 rcf13b17 36 36 #define LIBC_AS_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 #include <stddef.h> 40 40 #include <stdint.h> -
uspace/lib/c/include/atomicdflt.h
r2a7749d7 rcf13b17 40 40 #endif 41 41 42 #include < sys/types.h>42 #include <types/common.h> 43 43 #include <stdbool.h> 44 44 -
uspace/lib/c/include/elf/elf.h
r2a7749d7 rcf13b17 37 37 38 38 #include <stdint.h> 39 #include < sys/types.h>39 #include <types/common.h> 40 40 #include <abi/elf.h> 41 41 #include <libarch/elf.h> -
uspace/lib/c/include/fibril.h
r2a7749d7 rcf13b17 37 37 38 38 #include <libarch/fibril.h> 39 #include < sys/types.h>39 #include <types/common.h> 40 40 #include <adt/list.h> 41 41 #include <libarch/tls.h> -
uspace/lib/c/include/inet/dhcp.h
r2a7749d7 rcf13b17 36 36 #define LIBC_INET_DHCP_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 extern int dhcp_init(void); -
uspace/lib/c/include/io/chardev.h
r2a7749d7 rcf13b17 33 33 #define LIBC_IO_CHARDEV_H_ 34 34 35 #include < sys/types.h>35 #include <types/common.h> 36 36 #include <async.h> 37 37 -
uspace/lib/c/include/io/chargrid.h
r2a7749d7 rcf13b17 38 38 39 39 #include <io/charfield.h> 40 #include < sys/types.h>40 #include <types/common.h> 41 41 #include <stddef.h> 42 42 -
uspace/lib/c/include/io/log.h
r2a7749d7 rcf13b17 38 38 #include <inttypes.h> 39 39 #include <io/verify.h> 40 #include < sys/types.h>40 #include <types/common.h> 41 41 42 42 #include <abi/log.h> -
uspace/lib/c/include/io/pixelmap.h
r2a7749d7 rcf13b17 38 38 #define LIBC_IO_PIXELMAP_H_ 39 39 40 #include < sys/types.h>40 #include <types/common.h> 41 41 #include <stdbool.h> 42 42 #include <stddef.h> -
uspace/lib/c/include/io/pos_event.h
r2a7749d7 rcf13b17 37 37 #define LIBC_IO_POS_EVENT_H_ 38 38 39 #include < sys/types.h>39 #include <types/common.h> 40 40 41 41 typedef enum { -
uspace/lib/c/include/ipc/dev_iface.h
r2a7749d7 rcf13b17 31 31 32 32 #include <malloc.h> 33 #include < sys/types.h>33 #include <types/common.h> 34 34 35 35 typedef enum { -
uspace/lib/c/include/ipc/event.h
r2a7749d7 rcf13b17 37 37 38 38 #include <abi/ipc/event.h> 39 #include < sys/types.h>39 #include <types/common.h> 40 40 41 41 extern int ipc_event_subscribe(event_type_t, sysarg_t); -
uspace/lib/c/include/ipc/irq.h
r2a7749d7 rcf13b17 36 36 #define LIBC_IPC_IRQ_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 #include <abi/ddi/irq.h> 40 40 -
uspace/lib/c/include/stack.h
r2a7749d7 rcf13b17 36 36 #define LIBC_STACK_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 40 40 extern size_t stack_size_get(void); -
uspace/lib/c/include/syscall.h
r2a7749d7 rcf13b17 45 45 46 46 #include <abi/syscall.h> 47 #include < sys/types.h>47 #include <types/common.h> 48 48 49 49 #define __syscall0 __syscall -
uspace/lib/c/include/sysinfo.h
r2a7749d7 rcf13b17 36 36 #define LIBC_SYSINFO_H_ 37 37 38 #include < sys/types.h>38 #include <types/common.h> 39 39 #include <stddef.h> 40 40 #include <stdbool.h> -
uspace/lib/c/include/types/common.h
r2a7749d7 rcf13b17 33 33 */ 34 34 35 #ifndef LIBC_ SYS_TYPES_H_36 #define LIBC_ SYS_TYPES_H_35 #ifndef LIBC_TYPES_COMMON_H_ 36 #define LIBC_TYPES_COMMON_H_ 37 37 38 38 #include <libarch/types.h>
Note:
See TracChangeset
for help on using the changeset viewer.