Changeset c799138 in mainline for uspace/srv/audio/hound/hound_ctx.h


Ignore:
Timestamp:
2013-04-11T01:34:41Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
250828a
Parents:
f0a647c
Message:

hound: doxygen and cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/hound_ctx.h

    rf0a647c rc799138  
    4444#include "audio_sink.h"
    4545
     46/** Application context structure */
    4647typedef struct {
     48        /** Hound's contexts link */
    4749        link_t link;
     50        /** List of streams */
    4851        list_t streams;
     52        /** Provided audio source abstraction */
    4953        audio_source_t *source;
     54        /** Provided audio sink abstraction */
    5055        audio_sink_t *sink;
     56        /** List access synchronization */
    5157        fibril_mutex_t guard;
    5258} hound_ctx_t;
    5359
     60/**
     61 * List instance helper.
     62 * @param l link
     63 * @return pointer to a hound context structure, NULL on failure.
     64 */
    5465static inline hound_ctx_t *hound_ctx_from_link(link_t *l)
    5566{
Note: See TracChangeset for help on using the changeset viewer.