Changeset fb0ec570 in mainline for uspace/lib/c/include
- Timestamp:
- 2018-06-22T16:32:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4e6a610
- Parents:
- a8b0c5d
- Location:
- uspace/lib/c/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/adt/hash_table.h
ra8b0c5d rfb0ec570 102 102 void *); 103 103 104 105 104 #endif 106 105 -
uspace/lib/c/include/cc.h
ra8b0c5d rfb0ec570 44 44 #endif 45 45 46 47 46 #endif 48 47 -
uspace/lib/c/include/fibril_synch.h
ra8b0c5d rfb0ec570 67 67 typedef struct { 68 68 fibril_owner_info_t oi; /**< Keep this the first thing. */ 69 unsigned writers;70 unsigned readers;69 unsigned int writers; 70 unsigned int readers; 71 71 list_t waiters; 72 72 } fibril_rwlock_t; … … 145 145 /** A counting semaphore for fibrils. */ 146 146 typedef struct { 147 long count;147 long int count; 148 148 list_t waiters; 149 149 } fibril_semaphore_t; -
uspace/lib/c/include/ipc/common.h
ra8b0c5d rfb0ec570 50 50 task_id_t in_task_id; 51 51 sysarg_t in_phone_hash; 52 unsigned flags;52 unsigned int flags; 53 53 struct async_call *label; 54 54 cap_call_handle_t cap_handle; -
uspace/lib/c/include/stdbool.h
ra8b0c5d rfb0ec570 41 41 #define true 1 42 42 43 #define __bool_true_false_are_defined 143 #define __bool_true_false_are_defined 1 44 44 45 45 #endif -
uspace/lib/c/include/vfs/vfs.h
ra8b0c5d rfb0ec570 45 45 #include <offset.h> 46 46 47 #define VFS_MAX_OPEN_FILES 47 #define VFS_MAX_OPEN_FILES 128 48 48 49 49 enum vfs_change_state_type {
Note:
See TracChangeset
for help on using the changeset viewer.