#ifndef cp2_msg_inc_context_h #define cp2_msg_inc_context_h /* Cesar project {{{ * * Copyright (C) 2008 Spidcom * * <<>> * * }}} */ /** * \file cp2/msg/inc/msg.h * \brief MSG context. * \ingroup cp2_msg * */ #include "lib/slab.h" /** Message context. */ struct cp_msg_t { /** Slab cache for the MME TX. */ slab_cache_t mme_tx_slab_cache; /** Slab cache for the MME RX. */ slab_cache_t mme_rx_slab_cache; }; typedef struct cp_msg_t cp_msg_t; #endif /* cp2_msg_inc_context_h */