Changeset 5b0cf63 in mainline for uspace/lib/c
- Timestamp:
- 2018-01-25T13:42:08Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1ab3c4b
- Parents:
- c832ab15
- git-author:
- Jiri Svoboda <jiri@…> (2017-01-24 18:40:44)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-01-25 13:42:08)
- Location:
- uspace/lib/c
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ia32/include/libarch/syscall.h
rc832ab15 r5b0cf63 48 48 #define __syscall6 __syscall_slow 49 49 50 extern sysarg_t (* 50 extern sysarg_t (*__syscall_fast_func)(const sysarg_t, const sysarg_t, 51 51 const sysarg_t, const sysarg_t, const sysarg_t, const sysarg_t, 52 52 const syscall_t); -
uspace/lib/c/include/adt/hash_table.h
rc832ab15 r5b0cf63 84 84 member_to_inst((item), type, member) 85 85 86 extern bool hash_table_create(hash_table_t *, size_t, size_t, 87 86 extern bool hash_table_create(hash_table_t *, size_t, size_t, 87 hash_table_ops_t *); 88 88 extern void hash_table_destroy(hash_table_t *); 89 89 … … 98 98 extern size_t hash_table_remove(hash_table_t *, void *); 99 99 extern void hash_table_remove_item(hash_table_t *, ht_link_t *); 100 extern void hash_table_apply(hash_table_t *, bool (*)(ht_link_t *, void *), 101 100 extern void hash_table_apply(hash_table_t *, bool (*)(ht_link_t *, void *), 101 void *); 102 102 103 103 -
uspace/lib/c/include/async.h
rc832ab15 r5b0cf63 34 34 35 35 #if ((defined(LIBC_IPC_H_)) && (!defined(LIBC_ASYNC_C_))) 36 36 #error Do not intermix low-level IPC interface and async framework 37 37 #endif 38 38 -
uspace/lib/c/include/gsort.h
rc832ab15 r5b0cf63 39 39 #include <stdbool.h> 40 40 41 typedef int (* 41 typedef int (*sort_cmp_t)(void *, void *, void *); 42 42 43 43 extern bool gsort(void *, size_t, size_t, sort_cmp_t, void *); -
uspace/lib/c/include/ipc/ipc.h
rc832ab15 r5b0cf63 34 34 35 35 #if ((defined(LIBC_ASYNC_H_)) && (!defined(LIBC_ASYNC_C_))) 36 36 #error Do not intermix low-level IPC interface and async framework 37 37 #endif 38 38 -
uspace/lib/c/include/ipc/logger.h
rc832ab15 r5b0cf63 54 54 * Returns: error code 55 55 * Followed by: vfs_pass_handle() request. 56 */ 56 */ 57 57 LOGGER_CONTROL_SET_ROOT 58 58 } logger_control_request_t; -
uspace/lib/c/include/rtld/rtld_debug.h
rc832ab15 r5b0cf63 42 42 43 43 #ifdef RTLD_DEBUG 44 44 #define DPRINTF(format, ...) printf(format, ##__VA_ARGS__) 45 45 #else 46 46 #define DPRINTF(format, ...) if (0) printf(format, ##__VA_ARGS__) 47 47 #endif 48 48 -
uspace/lib/c/include/syscall.h
rc832ab15 r5b0cf63 41 41 42 42 #ifndef LIBARCH_SYSCALL_GENERIC 43 43 #error You cannot include this file directly 44 44 #endif 45 45 -
uspace/lib/c/include/time.h
rc832ab15 r5b0cf63 31 31 */ 32 32 /** @file 33 */ 33 */ 34 34 35 35 #ifndef LIBC_TIME_H_ -
uspace/lib/c/include/udebug.h
rc832ab15 r5b0cf63 46 46 extern errno_t udebug_end(async_sess_t *); 47 47 extern errno_t udebug_set_evmask(async_sess_t *, udebug_evmask_t); 48 extern errno_t udebug_thread_read(async_sess_t *, void *, size_t 48 extern errno_t udebug_thread_read(async_sess_t *, void *, size_t, size_t *, 49 49 size_t *); 50 50 extern errno_t udebug_name_read(async_sess_t *, void *, size_t, size_t *, -
uspace/lib/c/include/vfs/inbox.h
rc832ab15 r5b0cf63 29 29 /** @addtogroup libc 30 30 * @{ 31 */ 31 */ 32 32 33 33 /**
Note:
See TracChangeset
for help on using the changeset viewer.