Changeset 3e6a98c5 in mainline for uspace/lib/c
- Timestamp:
- 2012-11-30T19:26:36Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0fa34dd
- Parents:
- e80d8f8
- Location:
- uspace/lib/c
- Files:
-
- 1 deleted
- 49 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/include/atomic.h
re80d8f8 r3e6a98c5 36 36 #define LIBC_abs32le_ATOMIC_H_ 37 37 38 #include < bool.h>38 #include <stdbool.h> 39 39 40 40 #define LIBC_ARCH_ATOMIC_H_ -
uspace/lib/c/arch/abs32le/src/entryjmp.c
re80d8f8 r3e6a98c5 30 30 */ 31 31 32 #include < bool.h>32 #include <stdbool.h> 33 33 #include <entry_point.h> 34 34 -
uspace/lib/c/arch/abs32le/src/fibril.c
re80d8f8 r3e6a98c5 31 31 32 32 #include <fibril.h> 33 #include < bool.h>33 #include <stdbool.h> 34 34 35 35 int context_save(context_t *ctx) -
uspace/lib/c/arch/abs32le/src/stacktrace.c
re80d8f8 r3e6a98c5 32 32 #include <sys/types.h> 33 33 #include <unistd.h> 34 #include < bool.h>34 #include <stdbool.h> 35 35 #include <stacktrace.h> 36 36 -
uspace/lib/c/arch/amd64/src/stacktrace.c
re80d8f8 r3e6a98c5 36 36 37 37 #include <sys/types.h> 38 #include < bool.h>38 #include <stdbool.h> 39 39 40 40 #include <stacktrace.h> -
uspace/lib/c/arch/arm32/include/atomic.h
re80d8f8 r3e6a98c5 41 41 42 42 #include <atomicdflt.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 #include <sys/types.h> 45 45 -
uspace/lib/c/arch/arm32/src/stacktrace.c
re80d8f8 r3e6a98c5 36 36 37 37 #include <sys/types.h> 38 #include < bool.h>38 #include <stdbool.h> 39 39 40 40 #include <stacktrace.h> -
uspace/lib/c/arch/ia32/src/stacktrace.c
re80d8f8 r3e6a98c5 37 37 #include <libarch/config.h> 38 38 #include <sys/types.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <stacktrace.h> 41 41 -
uspace/lib/c/arch/ia64/src/stacktrace.c
re80d8f8 r3e6a98c5 36 36 37 37 #include <sys/types.h> 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <errno.h> 40 40 -
uspace/lib/c/arch/mips32/src/stacktrace.c
re80d8f8 r3e6a98c5 36 36 37 37 #include <sys/types.h> 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <errno.h> 40 40 -
uspace/lib/c/arch/mips64/src/stacktrace.c
re80d8f8 r3e6a98c5 36 36 37 37 #include <sys/types.h> 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <errno.h> 40 40 -
uspace/lib/c/arch/ppc32/src/stacktrace.c
re80d8f8 r3e6a98c5 36 36 37 37 #include <sys/types.h> 38 #include < bool.h>38 #include <stdbool.h> 39 39 40 40 #include <stacktrace.h> -
uspace/lib/c/arch/sparc64/src/stacktrace.c
re80d8f8 r3e6a98c5 35 35 36 36 #include <sys/types.h> 37 #include < bool.h>37 #include <stdbool.h> 38 38 #include <libarch/stack.h> 39 39 #include <errno.h> -
uspace/lib/c/generic/adt/list.c
re80d8f8 r3e6a98c5 40 40 41 41 #include <adt/list.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 44 44 /** Check for membership -
uspace/lib/c/generic/async.c
re80d8f8 r3e6a98c5 109 109 #include <sys/time.h> 110 110 #include <libarch/barrier.h> 111 #include < bool.h>111 #include <stdbool.h> 112 112 #include <malloc.h> 113 113 #include <mem.h> -
uspace/lib/c/generic/devman.c
re80d8f8 r3e6a98c5 45 45 #include <errno.h> 46 46 #include <malloc.h> 47 #include < bool.h>47 #include <stdbool.h> 48 48 49 49 static FIBRIL_MUTEX_INITIALIZE(devman_driver_block_mutex); -
uspace/lib/c/generic/double_to_str.c
re80d8f8 r3e6a98c5 34 34 #include <stdint.h> 35 35 #include <assert.h> 36 #include < bool.h>36 #include <stdbool.h> 37 37 38 38 /* -
uspace/lib/c/generic/io/chargrid.c
re80d8f8 r3e6a98c5 37 37 #include <unistd.h> 38 38 #include <assert.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <as.h> 41 41 #include <io/chargrid.h> -
uspace/lib/c/generic/io/io.c
re80d8f8 r3e6a98c5 39 39 #include <str.h> 40 40 #include <errno.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 #include <malloc.h> 43 43 #include <async.h> -
uspace/lib/c/generic/loc.c
re80d8f8 r3e6a98c5 37 37 #include <errno.h> 38 38 #include <malloc.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 41 41 static FIBRIL_MUTEX_INITIALIZE(loc_supp_block_mutex); -
uspace/lib/c/generic/malloc.c
re80d8f8 r3e6a98c5 35 35 36 36 #include <malloc.h> 37 #include < bool.h>37 #include <stdbool.h> 38 38 #include <as.h> 39 39 #include <align.h> -
uspace/lib/c/generic/private/async.h
re80d8f8 r3e6a98c5 41 41 #include <fibril_synch.h> 42 42 #include <sys/time.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 45 45 /** Structures of this type are used to track the timeout events. */ -
uspace/lib/c/generic/sysinfo.c
re80d8f8 r3e6a98c5 38 38 #include <errno.h> 39 39 #include <malloc.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 #include <unistd.h> 42 42 -
uspace/lib/c/generic/time.c
re80d8f8 r3e6a98c5 37 37 #include <sys/time.h> 38 38 #include <time.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <libarch/barrier.h> 41 41 #include <macros.h> -
uspace/lib/c/include/adt/hash_table.h
re80d8f8 r3e6a98c5 40 40 #include <adt/list.h> 41 41 #include <unistd.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 #include <macros.h> 44 44 -
uspace/lib/c/include/async.h
re80d8f8 r3e6a98c5 44 44 #include <sys/time.h> 45 45 #include <atomic.h> 46 #include < bool.h>46 #include <stdbool.h> 47 47 #include <task.h> 48 48 -
uspace/lib/c/include/atomicdflt.h
re80d8f8 r3e6a98c5 41 41 42 42 #include <stdint.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 45 45 typedef struct atomic { -
uspace/lib/c/include/bd_srv.h
re80d8f8 r3e6a98c5 39 39 #include <async.h> 40 40 #include <fibril_synch.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 #include <sys/types.h> 43 43 -
uspace/lib/c/include/cfg.h
re80d8f8 r3e6a98c5 41 41 #include <adt/list.h> 42 42 #include <sys/types.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 45 45 /** -
uspace/lib/c/include/ddi.h
re80d8f8 r3e6a98c5 36 36 #define LIBC_DDI_H_ 37 37 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <sys/types.h> 40 40 #include <sys/time.h> -
uspace/lib/c/include/device/hw_res.h
re80d8f8 r3e6a98c5 38 38 #include <ipc/dev_iface.h> 39 39 #include <async.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 42 42 #define DMA_MODE_ON_DEMAND 0 -
uspace/lib/c/include/devman.h
re80d8f8 r3e6a98c5 40 40 #include <ipc/loc.h> 41 41 #include <async.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 44 44 extern async_exch_t *devman_exchange_begin_blocking(devman_interface_t); -
uspace/lib/c/include/fibril_synch.h
re80d8f8 r3e6a98c5 40 40 #include <libarch/tls.h> 41 41 #include <sys/time.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 44 44 typedef struct { -
uspace/lib/c/include/ieee_double.h
re80d8f8 r3e6a98c5 31 31 32 32 #include <stdint.h> 33 #include < bool.h>33 #include <stdbool.h> 34 34 35 35 /** Represents a non-negative floating point number: significand * 2^exponent */ -
uspace/lib/c/include/inet/iplink_srv.h
re80d8f8 r3e6a98c5 38 38 #include <async.h> 39 39 #include <fibril_synch.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 #include <sys/types.h> 42 42 -
uspace/lib/c/include/io/charfield.h
re80d8f8 r3e6a98c5 38 38 39 39 #include <sys/types.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 #include <io/color.h> 42 42 #include <io/style.h> -
uspace/lib/c/include/io/con_srv.h
re80d8f8 r3e6a98c5 44 44 #include <io/pixel.h> 45 45 #include <io/style.h> 46 #include < bool.h>46 #include <stdbool.h> 47 47 #include <sys/time.h> 48 48 #include <sys/types.h> -
uspace/lib/c/include/io/console.h
re80d8f8 r3e6a98c5 41 41 #include <io/keycode.h> 42 42 #include <async.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 #include <stdio.h> 45 45 -
uspace/lib/c/include/io/window.h
re80d8f8 r3e6a98c5 36 36 #define LIBC_IO_WINDOW_H_ 37 37 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <sys/types.h> 40 40 #include <async.h> -
uspace/lib/c/include/ipc/vfs.h
re80d8f8 r3e6a98c5 38 38 #include <ipc/common.h> 39 39 #include <sys/types.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 42 42 #define FS_NAME_MAXLEN 20 -
uspace/lib/c/include/loc.h
re80d8f8 r3e6a98c5 38 38 #include <ipc/loc.h> 39 39 #include <async.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 42 42 typedef void (*loc_cat_change_cb_t)(void); -
uspace/lib/c/include/nic/nic.h
re80d8f8 r3e6a98c5 40 40 41 41 #include <nic/eth_phys.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 44 44 /** Ethernet address length. */ -
uspace/lib/c/include/rtld/dynamic.h
re80d8f8 r3e6a98c5 36 36 #define LIBC_RTLD_DYNAMIC_H_ 37 37 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <rtld/elf_dyn.h> 40 40 #include <libarch/rtld/dynamic.h> -
uspace/lib/c/include/sort.h
re80d8f8 r3e6a98c5 37 37 38 38 #include <sys/types.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 41 41 typedef int (* sort_cmp_t)(void *, void *, void *); -
uspace/lib/c/include/stacktrace.h
re80d8f8 r3e6a98c5 38 38 39 39 #include <sys/types.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 42 42 typedef struct { -
uspace/lib/c/include/stats.h
re80d8f8 r3e6a98c5 39 39 #include <thread.h> 40 40 #include <stdint.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 #include <sys/types.h> 43 43 #include <abi/sysinfo.h> -
uspace/lib/c/include/stdbool.h
re80d8f8 r3e6a98c5 1 1 /* 2 * Copyright (c) 20 11 Jiri Zarevucky2 * Copyright (c) 2006 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib posix29 /** @addtogroup libc 30 30 * @{ 31 31 */ 32 /** @file Boolean type and values.32 /** @file 33 33 */ 34 34 35 #ifndef POSIX_STDBOOL_H_36 #define POSIX_STDBOOL_H_35 #ifndef LIBC_BOOL_H_ 36 #define LIBC_BOOL_H_ 37 37 38 #ifdef LIBC_BOOL_H_ 38 #include <libarch/types.h> 39 #include <abi/bool.h> 39 40 40 #if (!defined(POSIX_STDIO_H_)) && \ 41 (!defined(POSIX_STDLIB_H_)) && \ 42 (!defined(POSIX_STRING_H_)) 43 #error "You can't include bool.h and stdbool.h at the same time." 41 #define false 0 42 #define true 1 43 44 #define __bool_true_false_are_defined 1 45 44 46 #endif 45 47 46 #endif /* LIBC_BOOL_H */ 47 48 #define LIBC_BOOL_H_ 49 50 #define bool _Bool 51 #define true 1 52 #define false 0 53 #define __bool_true_false_are_defined 1 54 55 #endif /* POSIX_STDBOOL_H_ */ 48 /** @} 49 */ -
uspace/lib/c/include/str.h
re80d8f8 r3e6a98c5 39 39 #include <mem.h> 40 40 #include <sys/types.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 43 43 #define U_SPECIAL '?' -
uspace/lib/c/include/sys/stat.h
re80d8f8 r3e6a98c5 37 37 38 38 #include <sys/types.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <ipc/vfs.h> 41 41 #include <ipc/loc.h> -
uspace/lib/c/include/sysinfo.h
re80d8f8 r3e6a98c5 37 37 38 38 #include <sys/types.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <abi/sysinfo.h> 41 41
Note:
See TracChangeset
for help on using the changeset viewer.