Changeset be73793 in mainline
- Timestamp:
- 2012-07-16T16:12:11Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3ab9de0
- Parents:
- 01b8c2e4
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/log.c
r01b8c2e4 rbe73793 106 106 static void cannot_use_level_changed_monitor(void) 107 107 { 108 assert(false && "not implemented yet"); 108 fibril_rwlock_write_lock(¤t_observed_level_lock); 109 current_observed_level = LVL_LIMIT; 110 fibril_rwlock_write_unlock(¤t_observed_level_lock); 109 111 } 110 112 -
uspace/srv/logger/namespace.c
r01b8c2e4 rbe73793 109 109 110 110 fibril_mutex_initialize(&namespace->guard); 111 fibril_condvar_initialize(&namespace->reader_appeared_cv); 111 112 prodcons_initialize(&namespace->messages); 112 113 namespace->has_reader = false;
Note:
See TracChangeset
for help on using the changeset viewer.