Changeset c799138 in mainline for uspace/srv/audio/hound/hound_ctx.h
- Timestamp:
- 2013-04-11T01:34:41Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 250828a
- Parents:
- f0a647c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/hound_ctx.h
rf0a647c rc799138 44 44 #include "audio_sink.h" 45 45 46 /** Application context structure */ 46 47 typedef struct { 48 /** Hound's contexts link */ 47 49 link_t link; 50 /** List of streams */ 48 51 list_t streams; 52 /** Provided audio source abstraction */ 49 53 audio_source_t *source; 54 /** Provided audio sink abstraction */ 50 55 audio_sink_t *sink; 56 /** List access synchronization */ 51 57 fibril_mutex_t guard; 52 58 } hound_ctx_t; 53 59 60 /** 61 * List instance helper. 62 * @param l link 63 * @return pointer to a hound context structure, NULL on failure. 64 */ 54 65 static inline hound_ctx_t *hound_ctx_from_link(link_t *l) 55 66 {
Note:
See TracChangeset
for help on using the changeset viewer.