Changeset 8d2dd7f2 in mainline for uspace/lib/c
- Timestamp:
- 2017-05-13T19:03:14Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c96634
- Parents:
- e48947e
- Location:
- uspace/lib/c
- Files:
-
- 133 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <sys/types.h>40 39 41 40 typedef struct { -
uspace/lib/c/arch/abs32le/include/libarch/fibril.h
re48947e r8d2dd7f2 36 36 #define LIBC_abs32le_FIBRIL_H_ 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 40 40 #define SP_DELTA 0 -
uspace/lib/c/arch/abs32le/include/libarch/syscall.h
re48947e r8d2dd7f2 37 37 #define LIBC_abs32le_SYSCALL_H_ 38 38 39 #include <sys/types.h>40 39 #include <abi/syscall.h> 40 #include <libarch/types.h> 41 41 42 42 #define __syscall0 __syscall -
uspace/lib/c/arch/abs32le/src/stacktrace.c
re48947e r8d2dd7f2 30 30 */ 31 31 32 #include <s ys/types.h>32 #include <stdint.h> 33 33 #include <stdbool.h> 34 34 #include <stddef.h> -
uspace/lib/c/arch/abs32le/src/syscall.c
re48947e r8d2dd7f2 30 30 */ 31 31 32 #include <sys/types.h>33 32 #include <libarch/syscall.h> 34 33 -
uspace/lib/c/arch/abs32le/src/tls.c
re48947e r8d2dd7f2 31 31 32 32 #include <tls.h> 33 #include <sys/types.h> 33 #include <stddef.h> 34 #include <stdint.h> 34 35 35 36 tcb_t * tls_alloc_arch(void **data, size_t size) -
uspace/lib/c/arch/amd64/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 /** Linux kernel struct pt_regs structure. -
uspace/lib/c/arch/amd64/include/libarch/fibril_context.ag
re48947e r8d2dd7f2 31 31 includes : [ 32 32 { 33 include : <sys/types.h> 34 } 33 include : <stddef.h> 34 }, 35 { 36 include : <stdint.h> 37 }, 35 38 ], 36 39 -
uspace/lib/c/arch/amd64/src/stacktrace.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include <stdbool.h> 39 39 -
uspace/lib/c/arch/amd64/src/tls.c
re48947e r8d2dd7f2 36 36 37 37 #include <tls.h> 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 40 40 tcb_t *tls_alloc_arch(void **data, size_t size) -
uspace/lib/c/arch/arm32/include/libarch/atomic.h
re48947e r8d2dd7f2 42 42 #include <atomicdflt.h> 43 43 #include <stdbool.h> 44 #include <s ys/types.h>44 #include <stdint.h> 45 45 46 46 extern uintptr_t *ras_page; -
uspace/lib/c/arch/arm32/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 /** Linux kernel struct pt_regs structure. -
uspace/lib/c/arch/arm32/include/libarch/fibril.h
re48947e r8d2dd7f2 37 37 #define LIBC_arm32_FIBRIL_H_ 38 38 39 #include < sys/types.h>39 #include <libarch/types.h> 40 40 #include <align.h> 41 41 #include <thread.h> -
uspace/lib/c/arch/arm32/include/libarch/fibril_context.ag
re48947e r8d2dd7f2 31 31 includes : [ 32 32 { 33 include : <s ys/types.h>33 include : <stddef.h> 34 34 }, 35 { 36 include : <stdint.h> 37 } 35 38 ], 36 39 -
uspace/lib/c/arch/arm32/include/libarch/tls.h
re48947e r8d2dd7f2 37 37 #define LIBC_arm32_TLS_H_ 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 #define CONFIG_TLS_VARIANT_1 -
uspace/lib/c/arch/arm32/src/stacktrace.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include <stdbool.h> 39 39 -
uspace/lib/c/arch/arm32/src/tls.c
re48947e r8d2dd7f2 36 36 37 37 #include <tls.h> 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 40 40 tcb_t *tls_alloc_arch(void **data, size_t size) -
uspace/lib/c/arch/ia32/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 /** Linux kernel struct pt_regs structure. -
uspace/lib/c/arch/ia32/include/libarch/fibril.h
re48947e r8d2dd7f2 36 36 #define LIBC_ia32_FIBRIL_H_ 37 37 38 #include < sys/types.h>38 #include <libarch/types.h> 39 39 #include <libarch/fibril_context.h> 40 40 -
uspace/lib/c/arch/ia32/include/libarch/fibril_context.ag
re48947e r8d2dd7f2 31 31 includes : [ 32 32 { 33 include : <sys/types.h> 33 include : <stddef.h> 34 }, 35 { 36 include : <stdint.h> 34 37 } 35 38 ], -
uspace/lib/c/arch/ia32/include/libarch/rtld/dynamic.h
re48947e r8d2dd7f2 36 36 #define LIBC_ia32_RTLD_DYNAMIC_H_ 37 37 38 #include <sys/types.h>39 40 38 typedef struct { 41 39 /* Empty. */ -
uspace/lib/c/arch/ia32/include/libarch/syscall.h
re48947e r8d2dd7f2 37 37 #define LIBC_ia32_SYSCALL_H_ 38 38 39 #include <sys/types.h>40 39 #include <abi/syscall.h> 40 #include <libarch/types.h> 41 41 42 42 #define __syscall0 __syscall_fast_func -
uspace/lib/c/arch/ia32/src/stacktrace.c
re48947e r8d2dd7f2 36 36 37 37 #include <libarch/config.h> 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <stdbool.h> 40 40 #include <stacktrace.h> -
uspace/lib/c/arch/ia32/src/tls.c
re48947e r8d2dd7f2 37 37 38 38 #include <tls.h> 39 #include <sys/types.h> 39 #include <stddef.h> 40 #include <stdint.h> 40 41 #include <align.h> 41 42 -
uspace/lib/c/arch/ia64/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 typedef struct { -
uspace/lib/c/arch/ia64/include/libarch/fibril.h
re48947e r8d2dd7f2 36 36 #define LIBC_ia64_FIBRIL_H_ 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <align.h> 40 40 #include <libarch/stack.h> -
uspace/lib/c/arch/ia64/include/libarch/fibril_context.ag
re48947e r8d2dd7f2 31 31 includes : [ 32 32 { 33 include : <sys/types.h> 33 include : <stddef.h> 34 }, 35 { 36 include : <stdint.h> 34 37 } 35 38 ], -
uspace/lib/c/arch/ia64/include/libarch/tls.h
re48947e r8d2dd7f2 38 38 #define CONFIG_TLS_VARIANT_1 39 39 40 #include <sys/types.h>41 40 42 41 /* This structure must be exactly 16 bytes long */ -
uspace/lib/c/arch/ia64/src/stacktrace.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include <stdbool.h> 39 39 #include <errno.h> -
uspace/lib/c/arch/mips32/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 /** Linux kernel struct pt_regs structure. -
uspace/lib/c/arch/mips32/include/libarch/fibril.h
re48947e r8d2dd7f2 37 37 #define LIBC_mips32_FIBRIL_H_ 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <libarch/fibril_context.h> 41 41 #include <libarch/stack.h> -
uspace/lib/c/arch/mips32/include/libarch/fibril_context.ag
re48947e r8d2dd7f2 31 31 includes : [ 32 32 { 33 include : <sys/types.h> 33 include : <stddef.h> 34 }, 35 { 36 include : <stdint.h> 34 37 } 35 38 ], -
uspace/lib/c/arch/mips32/src/stacktrace.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include <stdbool.h> 39 39 #include <errno.h> -
uspace/lib/c/arch/mips32/src/tls.c
re48947e r8d2dd7f2 35 35 36 36 #include <tls.h> 37 #include <s ys/types.h>37 #include <stddef.h> 38 38 39 39 tcb_t * tls_alloc_arch(void **data, size_t size) -
uspace/lib/c/arch/ppc32/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 /** Linux kernel struct pt_regs structure. -
uspace/lib/c/arch/ppc32/include/libarch/fibril.h
re48947e r8d2dd7f2 36 36 #define LIBC_ppc32_FIBRIL_H_ 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <libarch/fibril_context.h> 40 40 -
uspace/lib/c/arch/ppc32/include/libarch/fibril_context.ag
re48947e r8d2dd7f2 31 31 includes : [ 32 32 { 33 include : <sys/types.h> 33 include : <stddef.h> 34 }, 35 { 36 include : <stdint.h> 34 37 } 35 38 ], -
uspace/lib/c/arch/ppc32/src/stacktrace.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include <stdbool.h> 39 39 -
uspace/lib/c/arch/ppc32/src/tls.c
re48947e r8d2dd7f2 34 34 35 35 #include <tls.h> 36 #include <s ys/types.h>36 #include <stddef.h> 37 37 38 38 tcb_t *tls_alloc_arch(void **data, size_t size) -
uspace/lib/c/arch/riscv64/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <sys/types.h>40 39 41 40 typedef struct { -
uspace/lib/c/arch/riscv64/include/libarch/fibril.h
re48947e r8d2dd7f2 36 36 #define LIBC_riscv64_FIBRIL_H_ 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 40 40 #define SP_DELTA 0 -
uspace/lib/c/arch/riscv64/include/libarch/fibril_context.ag
re48947e r8d2dd7f2 32 32 includes : [ 33 33 { 34 include : <sys/types.h> 34 include : <stddef.h> 35 }, 36 { 37 include : <stdint.h> 35 38 } 36 39 ], -
uspace/lib/c/arch/riscv64/include/libarch/syscall.h
re48947e r8d2dd7f2 37 37 #define LIBC_riscv64_SYSCALL_H_ 38 38 39 #include <sys/types.h>40 39 #include <abi/syscall.h> 41 40 -
uspace/lib/c/arch/riscv64/src/stacktrace.c
re48947e r8d2dd7f2 30 30 */ 31 31 32 #include <s ys/types.h>32 #include <stdint.h> 33 33 #include <stdbool.h> 34 34 #include <stacktrace.h> -
uspace/lib/c/arch/riscv64/src/syscall.c
re48947e r8d2dd7f2 30 30 */ 31 31 32 #include <sys/types.h>33 32 #include <libarch/syscall.h> 34 33 -
uspace/lib/c/arch/riscv64/src/tls.c
re48947e r8d2dd7f2 31 31 32 32 #include <tls.h> 33 #include <s ys/types.h>33 #include <stddef.h> 34 34 35 35 tcb_t *tls_alloc_arch(void **data, size_t size) -
uspace/lib/c/arch/sparc64/include/libarch/atomic.h
re48947e r8d2dd7f2 39 39 40 40 #include <atomicdflt.h> 41 #include <s ys/types.h>41 #include <stdint.h> 42 42 43 43 /** Atomic add operation. -
uspace/lib/c/arch/sparc64/include/libarch/elf_linux.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/istate.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 typedef struct { -
uspace/lib/c/arch/sparc64/include/libarch/fibril.h
re48947e r8d2dd7f2 38 38 #include <libarch/stack.h> 39 39 #include <libarch/fibril_context.h> 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <align.h> 42 42 -
uspace/lib/c/arch/sparc64/include/libarch/fibril_context.ag
re48947e r8d2dd7f2 31 31 includes : [ 32 32 { 33 include : <sys/types.h> 33 include : <stddef.h> 34 }, 35 { 36 include : <stdint.h> 34 37 } 35 38 ], -
uspace/lib/c/arch/sparc64/include/libarch/syscall.h
re48947e r8d2dd7f2 36 36 #define LIBC_sparc64_SYSCALL_H_ 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <abi/syscall.h> 40 #include <libarch/types.h> 40 41 41 42 #define __syscall0 __syscall -
uspace/lib/c/arch/sparc64/src/stacktrace.c
re48947e r8d2dd7f2 34 34 */ 35 35 36 #include <s ys/types.h>36 #include <stdint.h> 37 37 #include <stdbool.h> 38 38 #include <libarch/stack.h> -
uspace/lib/c/arch/sparc64/src/tls.c
re48947e r8d2dd7f2 36 36 37 37 #include <tls.h> 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 40 40 tcb_t *tls_alloc_arch(void **data, size_t size) -
uspace/lib/c/generic/as.c
re48947e r8d2dd7f2 37 37 #include <errno.h> 38 38 #include <align.h> 39 #include <sys/types.h> 39 #include <stddef.h> 40 #include <stdint.h> 40 41 #include <bitops.h> 41 42 #include <malloc.h> -
uspace/lib/c/generic/bd.c
re48947e r8d2dd7f2 44 44 #include <macros.h> 45 45 #include <stdlib.h> 46 #include <sys/types.h> 46 47 47 48 static void bd_cb_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg); -
uspace/lib/c/generic/bd_srv.c
re48947e r8d2dd7f2 38 38 #include <macros.h> 39 39 #include <stdlib.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 42 43 #include <bd_srv.h> -
uspace/lib/c/generic/cap.c
re48947e r8d2dd7f2 38 38 #include <task.h> 39 39 #include <libc.h> 40 #include <libarch/types.h> 40 41 41 42 /** Grant capabilities to a task. -
uspace/lib/c/generic/dirent.c
re48947e r8d2dd7f2 36 36 #include <stdlib.h> 37 37 #include <dirent.h> 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <errno.h> 40 40 #include <assert.h> -
uspace/lib/c/generic/elf/elf_mod.c
re48947e r8d2dd7f2 47 47 #include <stdio.h> 48 48 #include <vfs/vfs.h> 49 #include <sys/types.h> 49 #include <stddef.h> 50 #include <stdint.h> 50 51 #include <align.h> 51 52 #include <assert.h> -
uspace/lib/c/generic/io/chardev_srv.c
re48947e r8d2dd7f2 39 39 #include <macros.h> 40 40 #include <stdlib.h> 41 #include <s ys/types.h>41 #include <stddef.h> 42 42 43 43 static chardev_srv_t *chardev_srv_create(chardev_srvs_t *); -
uspace/lib/c/generic/io/con_srv.c
re48947e r8d2dd7f2 38 38 #include <ipc/console.h> 39 39 #include <stdlib.h> 40 #include <s ys/types.h>40 #include <stddef.h> 41 41 42 42 #include <io/con_srv.h> -
uspace/lib/c/generic/io/kio.c
re48947e r8d2dd7f2 37 37 #include <libc.h> 38 38 #include <str.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <errno.h> 41 41 #include <abi/kio.h> -
uspace/lib/c/generic/io/klog.c
re48947e r8d2dd7f2 35 35 #include <libc.h> 36 36 #include <str.h> 37 #include <sys/types.h> 37 #include <stddef.h> 38 #include <stdint.h> 38 39 #include <errno.h> 39 40 #include <abi/klog.h> -
uspace/lib/c/generic/iplink_srv.c
re48947e r8d2dd7f2 38 38 #include <ipc/iplink.h> 39 39 #include <stdlib.h> 40 #include <s ys/types.h>40 #include <stddef.h> 41 41 #include <inet/addr.h> 42 42 #include <inet/iplink_srv.h> -
uspace/lib/c/generic/mem.c
re48947e r8d2dd7f2 36 36 #include <mem.h> 37 37 #include <stdlib.h> 38 #include <sys/types.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 40 41 /** Fill memory block with a constant value. */ -
uspace/lib/c/generic/smc.c
re48947e r8d2dd7f2 34 34 35 35 #include <libc.h> 36 #include <s ys/types.h>36 #include <stddef.h> 37 37 #include <smc.h> 38 38 -
uspace/lib/c/generic/stacktrace.c
re48947e r8d2dd7f2 37 37 #include <stdio.h> 38 38 #include <stddef.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <errno.h> 41 41 -
uspace/lib/c/generic/udebug.c
re48947e r8d2dd7f2 34 34 35 35 #include <udebug.h> 36 #include <sys/types.h> 36 #include <stddef.h> 37 #include <stdint.h> 37 38 #include <abi/ipc/methods.h> 38 39 #include <async.h> -
uspace/lib/c/generic/vfs/mtab.c
re48947e r8d2dd7f2 38 38 #include <stdlib.h> 39 39 #include <dirent.h> 40 #include <sys/types.h>41 40 #include <errno.h> 42 41 #include <assert.h> -
uspace/lib/c/generic/vfs/vfs.c
re48947e r8d2dd7f2 39 39 #include <macros.h> 40 40 #include <stdlib.h> 41 #include <sys/types.h> 41 #include <stddef.h> 42 #include <stdint.h> 42 43 #include <ipc/services.h> 43 44 #include <ns.h> -
uspace/lib/c/include/adt/checksum.h
re48947e r8d2dd7f2 36 36 #define LIBC_CHECKSUM_H_ 37 37 38 #include <sys/types.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 40 41 extern uint32_t compute_crc32(uint8_t *, size_t); -
uspace/lib/c/include/adt/gcdlcm.h
re48947e r8d2dd7f2 36 36 #define LIBC_GCDLCM_H_ 37 37 38 #include <sys/types.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 40 41 #define DECLARE_GCD(type, name) \ -
uspace/lib/c/include/as.h
re48947e r8d2dd7f2 36 36 #define LIBC_AS_H_ 37 37 38 #include <sys/types.h> 38 #include <libarch/types.h> 39 #include <stddef.h> 40 #include <stdint.h> 39 41 #include <abi/mm/as.h> 40 42 #include <libarch/config.h> -
uspace/lib/c/include/bitops.h
re48947e r8d2dd7f2 36 36 #define LIBC_BITOPS_H_ 37 37 38 #include <sys/types.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 40 41 /** Mask with bit @a n set. */ -
uspace/lib/c/include/elf/elf.h
re48947e r8d2dd7f2 36 36 #define LIBC_ELF_H_ 37 37 38 #include <sys/types.h> 38 #include <stdint.h> 39 #include <libarch/types.h> 39 40 #include <abi/elf.h> 40 41 #include <libarch/elf.h> -
uspace/lib/c/include/elf/elf_mod.h
re48947e r8d2dd7f2 39 39 40 40 #include <elf/elf.h> 41 #include <sys/types.h> 41 #include <stddef.h> 42 #include <stdint.h> 42 43 #include <loader/pcb.h> 43 44 -
uspace/lib/c/include/futex.h
re48947e r8d2dd7f2 37 37 38 38 #include <atomic.h> 39 #include <sys/types.h>40 39 #include <libc.h> 41 40 -
uspace/lib/c/include/inet/dhcp.h
re48947e r8d2dd7f2 36 36 #define LIBC_INET_DHCP_H_ 37 37 38 #include <sys/types.h>39 38 40 39 extern int dhcp_init(void); -
uspace/lib/c/include/inet/inet.h
re48947e r8d2dd7f2 38 38 #include <inet/addr.h> 39 39 #include <ipc/loc.h> 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <types/inet.h> 42 42 -
uspace/lib/c/include/inet/inetcfg.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/inet.h> 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include <types/inetcfg.h> 41 41 -
uspace/lib/c/include/inet/inetping.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/inet.h> 39 #include <sys/types.h>40 39 #include <types/inetping.h> 41 40 -
uspace/lib/c/include/io/chardev_srv.h
re48947e r8d2dd7f2 40 40 #include <fibril_synch.h> 41 41 #include <stdbool.h> 42 #include <s ys/types.h>42 #include <stddef.h> 43 43 44 44 typedef struct chardev_ops chardev_ops_t; -
uspace/lib/c/include/io/charfield.h
re48947e r8d2dd7f2 37 37 #define LIBC_IO_CHARFIELD_H_ 38 38 39 #include <sys/types.h>40 39 #include <stdbool.h> 41 40 #include <io/color.h> -
uspace/lib/c/include/io/chargrid.h
re48947e r8d2dd7f2 37 37 #define LIBC_IO_CHARGRID_H_ 38 38 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include <io/charfield.h> 41 41 -
uspace/lib/c/include/io/con_srv.h
re48947e r8d2dd7f2 46 46 #include <stdbool.h> 47 47 #include <sys/time.h> 48 #include <s ys/types.h>48 #include <stddef.h> 49 49 50 50 typedef struct con_ops con_ops_t; -
uspace/lib/c/include/io/input.h
re48947e r8d2dd7f2 38 38 #include <async.h> 39 39 #include <io/kbd_event.h> 40 #include <sys/types.h>41 40 42 41 struct input_ev_ops; -
uspace/lib/c/include/io/kio.h
re48947e r8d2dd7f2 36 36 #define LIBC_IO_KIO_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <stdarg.h> 40 40 #include <io/verify.h> -
uspace/lib/c/include/io/klog.h
re48947e r8d2dd7f2 36 36 #define LIBC_IO_KLOG_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <stdarg.h> 40 40 #include <io/verify.h> -
uspace/lib/c/include/io/log.h
re48947e r8d2dd7f2 38 38 #include <inttypes.h> 39 39 #include <io/verify.h> 40 #include <libarch/types.h> 40 41 41 42 #include <abi/log.h> -
uspace/lib/c/include/io/mode.h
re48947e r8d2dd7f2 38 38 39 39 #include <abi/fb/visuals.h> 40 #include <sys/types.h>41 40 #include <adt/list.h> 42 41 #include <io/pixel.h> -
uspace/lib/c/include/io/pixel.h
re48947e r8d2dd7f2 37 37 #define LIBC_IO_PIXEL_H_ 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 #define NARROW(channel, bits) \ -
uspace/lib/c/include/io/pixelmap.h
re48947e r8d2dd7f2 38 38 #define LIBC_IO_PIXELMAP_H_ 39 39 40 #include <sys/types.h>41 40 #include <stddef.h> 42 41 #include <io/pixel.h> -
uspace/lib/c/include/io/pos_event.h
re48947e r8d2dd7f2 37 37 #define LIBC_IO_POS_EVENT_H_ 38 38 39 #include <sys/types.h>40 39 41 40 typedef enum { -
uspace/lib/c/include/io/printf_core.h
re48947e r8d2dd7f2 36 36 #define LIBC_PRINTF_CORE_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <stdarg.h> 40 40 -
uspace/lib/c/include/io/visualizer.h
re48947e r8d2dd7f2 36 36 #define LIBC_IO_VISUALIZER_H_ 37 37 38 #include <sys/types.h>39 38 #include <async.h> 40 39 #include <io/mode.h> -
uspace/lib/c/include/io/window.h
re48947e r8d2dd7f2 37 37 38 38 #include <stdbool.h> 39 #include <sys/types.h>40 39 #include <async.h> 41 40 #include <loc.h> -
uspace/lib/c/include/ipc/common.h
re48947e r8d2dd7f2 36 36 #define LIBC_IPC_COMMON_H_ 37 37 38 #include <sys/types.h>39 38 #include <abi/ipc/ipc.h> 40 39 #include <atomic.h> -
uspace/lib/c/include/ipc/ipc.h
re48947e r8d2dd7f2 40 40 #define LIBC_IPC_H_ 41 41 42 #include <sys/types.h>43 42 #include <ipc/common.h> 44 43 #include <abi/ipc/methods.h> -
uspace/lib/c/include/ipc/irq.h
re48947e r8d2dd7f2 36 36 #define LIBC_IPC_IRQ_H_ 37 37 38 #include < sys/types.h>38 #include <libarch/types.h> 39 39 #include <abi/ddi/irq.h> 40 40 -
uspace/lib/c/include/ipc/services.h
re48947e r8d2dd7f2 38 38 #define LIBC_SERVICES_H_ 39 39 40 #include <sys/types.h>41 40 #include <abi/fourcc.h> 42 41 -
uspace/lib/c/include/ipc/vfs.h
re48947e r8d2dd7f2 37 37 38 38 #include <ipc/common.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <stdbool.h> 41 41 -
uspace/lib/c/include/libc.h
re48947e r8d2dd7f2 36 36 #define LIBC_LIBC_H_ 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <abi/syscall.h> 40 40 #include <libarch/syscall.h> -
uspace/lib/c/include/loader/pcb.h
re48947e r8d2dd7f2 37 37 #define LIBC_PCB_H_ 38 38 39 #include <sys/types.h>40 39 41 40 typedef void (*entry_point_t)(void); -
uspace/lib/c/include/malloc.h
re48947e r8d2dd7f2 36 36 #define LIBC_MALLOC_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 40 40 extern void *malloc(const size_t size) -
uspace/lib/c/include/mem.h
re48947e r8d2dd7f2 36 36 #define LIBC_MEM_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <cc.h> 40 40 -
uspace/lib/c/include/nic/eth_phys.h
re48947e r8d2dd7f2 31 31 #define LIBC_NIC_ETH_PHYS_H_ 32 32 33 #include <s ys/types.h>33 #include <stdint.h> 34 34 35 35 /*****************************************************/ -
uspace/lib/c/include/ns.h
re48947e r8d2dd7f2 36 36 #define LIBC_NS_H_ 37 37 38 #include <sys/types.h>39 38 #include <ipc/services.h> 40 39 #include <task.h> -
uspace/lib/c/include/rtld/elf_dyn.h
re48947e r8d2dd7f2 36 36 #define LIBC_RTLD_ELF_DYN_H_ 37 37 38 #include <sys/types.h>39 38 #include <elf/elf.h> 40 39 #include <libarch/rtld/elf_dyn.h> -
uspace/lib/c/include/rtld/module.h
re48947e r8d2dd7f2 36 36 #define LIBC_RTLD_MODULE_H_ 37 37 38 #include <sys/types.h>39 38 #include <rtld/dynamic.h> 40 39 #include <adt/list.h> -
uspace/lib/c/include/rtld/rtld.h
re48947e r8d2dd7f2 38 38 #include <adt/list.h> 39 39 #include <elf/elf_mod.h> 40 #include <sys/types.h>41 40 42 41 #include <rtld/dynamic.h> -
uspace/lib/c/include/rwlock.h
re48947e r8d2dd7f2 40 40 41 41 #include <atomic.h> 42 #include <sys/types.h>43 42 #include <futex.h> 44 43 -
uspace/lib/c/include/smc.h
re48947e r8d2dd7f2 36 36 #define LIBC_SMC_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 40 40 extern int smc_coherence(void *address, size_t size); -
uspace/lib/c/include/sort.h
re48947e r8d2dd7f2 36 36 #define LIBC_SORT_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <stdbool.h> 40 40 -
uspace/lib/c/include/stacktrace.h
re48947e r8d2dd7f2 37 37 #define LIBC_STACKTRACE_H_ 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <stdbool.h> 41 41 -
uspace/lib/c/include/stats.h
re48947e r8d2dd7f2 40 40 #include <stdint.h> 41 41 #include <stdbool.h> 42 #include <s ys/types.h>42 #include <stddef.h> 43 43 #include <abi/sysinfo.h> 44 44 -
uspace/lib/c/include/stdarg.h
re48947e r8d2dd7f2 36 36 #define LIBC_STDARG_H_ 37 37 38 #include <sys/types.h>39 38 40 39 typedef __builtin_va_list va_list; -
uspace/lib/c/include/stddef.h
re48947e r8d2dd7f2 36 36 #define LIBC_STDDEF_H_ 37 37 38 #include < sys/types.h>38 #include <libarch/stddef.h> 39 39 40 40 #ifndef NULL -
uspace/lib/c/include/str.h
re48947e r8d2dd7f2 38 38 39 39 #include <mem.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <stdbool.h> 42 43 -
uspace/lib/c/include/sys/time.h
re48947e r8d2dd7f2 38 38 #define LIBC_SYS_TIME_H_ 39 39 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 42 43 #define DST_NONE 0 -
uspace/lib/c/include/syscall.h
re48947e r8d2dd7f2 44 44 #endif 45 45 46 #include <sys/types.h>47 46 #include <abi/syscall.h> 47 #include <libarch/types.h> 48 48 49 49 #define __syscall0 __syscall -
uspace/lib/c/include/sysinfo.h
re48947e r8d2dd7f2 36 36 #define LIBC_SYSINFO_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <stdbool.h> 40 40 #include <abi/sysinfo.h> -
uspace/lib/c/include/task.h
re48947e r8d2dd7f2 36 36 #define LIBC_TASK_H_ 37 37 38 #include <sys/types.h> 38 #include <stdint.h> 39 #include <stdarg.h> 39 40 #include <abi/proc/task.h> 40 #include <stdarg.h>41 41 #include <async.h> 42 42 #include <types/task.h> -
uspace/lib/c/include/thread.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/thread.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <abi/proc/thread.h> 41 41 #include <time.h> -
uspace/lib/c/include/tls.h
re48947e r8d2dd7f2 37 37 38 38 #include <libarch/tls.h> 39 #include <sys/types.h> 39 #include <stddef.h> 40 #include <stdint.h> 40 41 41 42 /** DTV Generation number - equals vector length */ -
uspace/lib/c/include/types/inet.h
re48947e r8d2dd7f2 38 38 #include <inet/addr.h> 39 39 #include <ipc/loc.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 42 43 #define INET_TTL_MAX 255 -
uspace/lib/c/include/types/inetcfg.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/inet.h> 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 41 41 /** Address object info */ -
uspace/lib/c/include/types/inetping.h
re48947e r8d2dd7f2 39 39 40 40 #include <inet/addr.h> 41 #include <sys/types.h> 41 #include <stddef.h> 42 #include <stdint.h> 42 43 43 44 typedef struct { -
uspace/lib/c/include/types/rtld/module.h
re48947e r8d2dd7f2 37 37 38 38 #include <adt/list.h> 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 41 41 typedef enum { -
uspace/lib/c/include/types/rtld/rtld.h
re48947e r8d2dd7f2 38 38 #include <adt/list.h> 39 39 #include <elf/elf_mod.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 42 43 #include <types/rtld/module.h> -
uspace/lib/c/include/udebug.h
re48947e r8d2dd7f2 37 37 38 38 #include <abi/udebug.h> 39 #include <sys/types.h> 39 #include <stddef.h> 40 #include <stdint.h> 40 41 #include <async.h> 41 42 -
uspace/lib/c/include/vfs/canonify.h
re48947e r8d2dd7f2 36 36 #define LIBC_VFS_CANONIFY_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 40 40 extern char *canonify(char *, size_t *); -
uspace/lib/c/include/vfs/vfs.h
re48947e r8d2dd7f2 36 36 #define LIBC_VFS_H_ 37 37 38 #include <sys/types.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 #include <ipc/vfs.h> 40 41 #include <ipc/loc.h> -
uspace/lib/c/include/vfs/vfs_mtab.h
re48947e r8d2dd7f2 36 36 #define LIBC_VFS_MTAB_H_ 37 37 38 #include <sys/types.h>39 38 #include <ipc/vfs.h> 40 39 #include <adt/list.h>
Note:
See TracChangeset
for help on using the changeset viewer.