/* Cesar project {{{ * * Copyright (C) 2012 Spidcom * * <<>> * * }}} */ /** * \file cp/av/src/trace.c * \ingroup cp_av */ #include "common/std.h" #include "cp/inc/context.h" #include "inc/trace.h" void cp_av_trace_init (cp_t *ctx) { static trace_namespace_t namespace; static const trace_event_id_t event_ids[] = { TRACE_COMMON_EVENT, /* av TRACE_EVENT must be added after common part. */ }; dbg_assert (ctx); cp_trace_common_init (ctx, &namespace, event_ids, COUNT (event_ids)); }