Changeset 8d2dd7f2 in mainline for uspace/lib/c/include
- 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/include
- Files:
-
- 63 edited
Legend:
- Unmodified
- Added
- Removed
-
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.