]> rtime.felk.cvut.cz Git - l4.git/blobdiff - l4/pkg/shmc/include/shmc.h
Update
[l4.git] / l4 / pkg / shmc / include / shmc.h
index d90e81905919a5a0c353288b848a3b6ae800b2df..4d1c6ea3cd9556ed9b0171e86c640c2eb0d904c6 100644 (file)
@@ -1,6 +1,6 @@
 /**
  * \file
- * \brief Shared memory library header file.
+ * Shared memory library header file.
  */
 /*
  * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
  * A shared memory area can have multiple chunks.
  *
  * The interface is divided in three roles.
- * - The master role, reponsible for setting up a shared memory area.
+ * - The master role, responsible for setting up a shared memory area.
  * - A producer, generating data into a chunk
  * - A consumer, receiving data.
  *
- *
  * A signal can be connected with a chunk or can be used independently
  * (e.g. for multiple chunks).
  *
 __BEGIN_DECLS
 
 /**
- * \brief Create a shared memory area.
+ * Create a shared memory area.
  * \ingroup api_l4shm
  *
- * \param shmc_name   Name of the shared memory area.
- * \param shm_size    Size of the whole shared memory area.
+ * \param shmc_name  Name of the shared memory area.
+ * \param shm_size   Size of the whole shared memory area.
  *
- * \return 0 on success, <0 on error
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV long
 l4shmc_create(const char *shmc_name, l4_umword_t shm_size);
 
 /**
- * \brief Attach to a shared memory area.
+ * Attach to a shared memory area.
  * \ingroup api_l4shm
  *
- * \param  shmc_name  Name of the shared memory area.
- * \retval shmarea    Pointer to shared memory area descriptor to be filled
- *                    with information for the shared memory area.
- * \return 0 on success, <0 on error
+ * \param      shmc_name  Name of the shared memory area.
+ * \param[out] shmarea    Pointer to shared memory area descriptor to be filled
+ *                        with information for the shared memory area.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_attach(const char *shmc_name, l4shmc_area_t *shmarea);
 
 /**
- * \brief Attach to a shared memory area, with limited waiting.
+ * Attach to a shared memory area, with limited waiting.
  * \ingroup api_l4shm
  *
- * \param  shmc_name  Name of the shared memory area.
- * \param  timeout_ms Timeout to wait for shm area in milliseconds.
- * \retval shmarea    Pointer to shared memory area descriptor to be filled
- *                    with information for the shared memory area.
- * \return 0 on success, <0 on error
+ * \param      shmc_name   Name of the shared memory area.
+ * \param      timeout_ms  Timeout to wait for shm area in milliseconds.
+ * \param[out] shmarea     Pointer to shared memory area descriptor to be
+ *                         filled with information for the shared memory area.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV long
 l4shmc_attach_to(const char *shmc_name, l4_umword_t timeout_ms,
                  l4shmc_area_t *shmarea);
 
 /**
- * \brief Add a chunk in the shared memory area.
+ * Add a chunk in the shared memory area.
  * \ingroup api_l4shmc_chunk
  *
- * \param shmarea         The shared memory area to put the chunk in.
- * \param chunk_name      Name of the chunk.
- * \param chunk_capacity  Capacity for payload of the chunk in bytes.
- * \retval chunk          Chunk structure to fill in.
+ * \param      shmarea         The shared memory area to put the chunk in.
+ * \param      chunk_name      Name of the chunk.
+ * \param      chunk_capacity  Capacity for payload of the chunk in bytes.
+ * \param[out] chunk           Chunk structure to fill in.
  *
- * \return 0 on success, <0 on error
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV long
 l4shmc_add_chunk(l4shmc_area_t *shmarea,
@@ -128,14 +133,15 @@ l4shmc_add_chunk(l4shmc_area_t *shmarea,
                  l4shmc_chunk_t *chunk);
 
 /**
- * \brief Add a signal for the shared memory area.
+ * Add a signal for the shared memory area.
  * \ingroup api_l4shmc_signal
  *
- * \param shmarea         The shared memory area to put the chunk in.
- * \param signal_name     Name of the signal.
- * \retval signal         Signal structure to fill in.
+ * \param      shmarea      The shared memory area to put the chunk in.
+ * \param      signal_name  Name of the signal.
+ * \param[out] signal       Signal structure to fill in.
  *
- * \return 0 on success, <0 on error
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV long
 l4shmc_add_signal(l4shmc_area_t *shmarea,
@@ -143,55 +149,65 @@ l4shmc_add_signal(l4shmc_area_t *shmarea,
                   l4shmc_signal_t *signal);
 
 /**
- * \brief Trigger a signal.
+ * Trigger a signal.
  * \ingroup api_l4shmc_signal_prod
  *
  * \param signal  Signal to trigger.
- * \return 0 on success, <0 on error
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_trigger(l4shmc_signal_t *signal);
 
 /**
- * \brief Try to mark chunk busy.
+ * Try to mark chunk busy.
  * \ingroup api_l4shmc_chunk_prod
  *
  * \param chunk  chunk to mark.
- * \return 0 if chunk could be taken, <0 if not (try again then)
+ *
+ * \retval 0   Chunk could be taken.
+ * \retval <0  Chunk could not be taken, try again.
  */
 L4_CV L4_INLINE long
 l4shmc_chunk_try_to_take(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Mark chunk as filled (ready).
+ * Mark chunk as filled (ready).
  * \ingroup api_l4shmc_chunk_prod
  *
- * \param chunk   chunk.
- * \param size     Size of data in the chunk, in bytes.
- * \return 0 on success, <0 on error
+ * \param chunk  chunk.
+ * \param size   Size of data in the chunk, in bytes.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_chunk_ready(l4shmc_chunk_t *chunk, l4_umword_t size);
 
 /**
- * \brief Mark chunk as filled (ready) and signal consumer.
+ * Mark chunk as filled (ready) and signal consumer.
  * \ingroup api_l4shmc_chunk_prod
  *
- * \param chunk   chunk.
- * \param size     Size of data in the chunk, in bytes.
- * \return 0 on success, <0 on error
+ * \param chunk  chunk.
+ * \param size   Size of data in the chunk, in bytes.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_chunk_ready_sig(l4shmc_chunk_t *chunk, l4_umword_t size);
 
 /**
- * \brief Get chunk out of shared memory area.
+ * Get chunk out of shared memory area.
  * \ingroup api_l4shmc_chunk
  *
- * \param shmarea     Shared memory area.
- * \param chunk_name  Name of the chunk.
- * \retval chunk      Chunk data structure to fill.
- * \return 0 on success, <0 on error
+ * \param      shmarea     Shared memory area.
+ * \param      chunk_name  Name of the chunk.
+ * \param[out] chunk       Chunk data structure to fill.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_get_chunk(l4shmc_area_t *shmarea,
@@ -199,15 +215,17 @@ l4shmc_get_chunk(l4shmc_area_t *shmarea,
                  l4shmc_chunk_t *chunk);
 
 /**
- * \brief Get chunk out of shared memory area, with timeout.
+ * Get chunk out of shared memory area, with timeout.
  * \ingroup api_l4shmc_chunk
  *
- * \param shmarea     Shared memory area.
- * \param chunk_name  Name of the chunk.
- * \param timeout_ms  Timeout in milliseconds to wait for the chunk to appear
- *                    in the shared memory area.
- * \retval chunk     chunk data structure to fill.
- * \return 0 on success, <0 on error
+ * \param      shmarea     Shared memory area.
+ * \param      chunk_name  Name of the chunk.
+ * \param      timeout_ms  Timeout in milliseconds to wait for the chunk to appear
+ *                         in the shared memory area.
+ * \param[out] chunk       Chunk data structure to fill.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV long
 l4shmc_get_chunk_to(l4shmc_area_t *shmarea,
@@ -216,28 +234,33 @@ l4shmc_get_chunk_to(l4shmc_area_t *shmarea,
                     l4shmc_chunk_t *chunk);
 
 /**
- * \brief Iterate over names of all existing chunks
+ * Iterate over names of all existing chunks
  * \ingroup api_l4shmc_chunk
  *
  * \param shmarea     Shared memory area.
  * \param chunk_name  Where the name of the current chunk will be stored
  * \param offs        0 to start iteration, return value of previous
  *                    call to l4shmc_iterate_chunk() to get next chunk
- * \return <0 on error, 0 if no more chunks, >0 iterator value for next call
+ *
+ * \retval 0   No more chunks available.
+ * \retval <0  Error.
+ * \retval >0  Iterator value for the next call.
  */
 L4_CV long
 l4shmc_iterate_chunk(l4shmc_area_t *shmarea, const char **chunk_name,
                      long offs);
 
 /**
- * \brief Attach to signal.
+ * Attach to signal.
  * \ingroup api_l4shmc_signal
  *
- * \param shmarea     Shared memory area.
- * \param signal_name Name of the signal.
- * \param thread      Thread capability index to attach the signal to.
- * \retval signal     Signal data structure to fill.
- * \return 0 on success, <0 on error
+ * \param      shmarea      Shared memory area.
+ * \param      signal_name  Name of the signal.
+ * \param      thread       Thread capability index to attach the signal to.
+ * \param[out] signal       Signal data structure to fill.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_attach_signal(l4shmc_area_t *shmarea,
@@ -246,16 +269,18 @@ l4shmc_attach_signal(l4shmc_area_t *shmarea,
                      l4shmc_signal_t *signal);
 
 /**
- * \brief Attach to signal, with timeout.
+ * Attach to signal, with timeout.
  * \ingroup api_l4shmc_signal
  *
- * \param shmarea     Shared memory area.
- * \param signal_name Name of the signal.
- * \param thread      Thread capability index to attach the signal to.
- * \param timeout_ms  Timeout in milliseconds to wait for the chunk to appear
- *                    in the shared memory area.
- * \retval signal     Signal data structure to fill.
- * \return 0 on success, <0 on error
+ * \param shmarea      Shared memory area.
+ * \param signal_name  Name of the signal.
+ * \param thread       Thread capability index to attach the signal to.
+ * \param timeout_ms   Timeout in milliseconds to wait for the chunk to appear
+ *                     in the shared memory area.
+ * \param[out] signal  Signal data structure to fill.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV long
 l4shmc_attach_signal_to(l4shmc_area_t *shmarea,
@@ -265,10 +290,17 @@ l4shmc_attach_signal_to(l4shmc_area_t *shmarea,
                         l4shmc_signal_t *signal);
 
 /**
- * \brief Get signal object from the shared memory area.
+ * Get signal object from the shared memory area.
  * \ingroup api_l4shmc_signal
  *
- * \param
+ * \param shmarea      Shared memory area.
+ * \param signal_name  Name of the signal.
+ * \param timeout_ms   Timeout in milliseconds to wait for signal of a chunk
+ *                     to appear in the shared memory area.
+ * \param[out] signal  Signal data structure to fill.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV long
 l4shmc_get_signal_to(l4shmc_area_t *shmarea,
@@ -283,11 +315,13 @@ l4shmc_get_signal(l4shmc_area_t *shmarea,
 
 
 /**
- * \brief Enable a signal.
+ * Enable a signal.
  * \ingroup api_l4shmc_signal_cons
  *
  * \param signal  Signal to enable.
- * \return 0 on success, <0 on error
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  *
  * A signal must be enabled before waiting when the consumer waits on any
  * signal. Enabling is not needed if the consumer waits for a specific
@@ -297,11 +331,13 @@ L4_CV long
 l4shmc_enable_signal(l4shmc_signal_t *signal);
 
 /**
- * \brief Enable a signal connected with a chunk.
+ * Enable a signal connected with a chunk.
  * \ingroup api_l4shmc_chunk_cons
  *
  * \param chunk  Chunk to enable.
- * \return 0 on success, <0 on error
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  *
  * A signal must be enabled before waiting when the consumer waits on any
  * signal. Enabling is not needed if the consumer waits for a specific
@@ -311,21 +347,25 @@ L4_CV long
 l4shmc_enable_chunk(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Wait on any signal.
+ * Wait on any signal.
  * \ingroup api_l4shmc_signal_cons
  *
- * \retval retsignal Signal received.
- * \return 0 on success, <0 on error
+ * \param[out] retsignal  Signal received.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_wait_any(l4shmc_signal_t **retsignal);
 
 /**
- * \brief Check whether any waited signal has an event pending.
+ * Check whether any waited signal has an event pending.
  * \ingroup api_l4shmc_signal_cons
  *
- * \retval retsignal Signal that has the event pending if any.
- * \return 0 on success, <0 on error
+ * \param[out] retsignal  Signal that has the event pending if any.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  *
  * The return code indicates whether an event was pending or not. Success
  * means an event was pending, if an receive timeout error is returned no
@@ -335,12 +375,14 @@ L4_CV L4_INLINE long
 l4shmc_wait_any_try(l4shmc_signal_t **retsignal);
 
 /**
- * \brief Wait for any signal with timeout.
+ * Wait for any signal with timeout.
  * \ingroup api_l4shmc_signal_cons
  *
- * \param  timeout   Timeout.
- * \retval retsignal Signal that has the event pending if any.
- * \return 0 on success, <0 on error
+ * \param      timeout    Timeout.
+ * \param[out] retsignal  Signal that has the event pending if any.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  *
  * The return code indicates whether an event was pending or not. Success
  * means an event was pending, if an receive timeout error is returned no
@@ -350,32 +392,38 @@ L4_CV long
 l4shmc_wait_any_to(l4_timeout_t timeout, l4shmc_signal_t **retsignal);
 
 /**
- * \brief Wait on a specific signal.
+ * Wait on a specific signal.
  * \ingroup api_l4shmc_signal_cons
  *
- * \param signal Signal to wait for.
- * \return 0 on success, <0 on error
+ * \param signal  Signal to wait for.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_wait_signal(l4shmc_signal_t *signal);
 
 /**
- * \brief Wait on a specific signal, with timeout.
+ * Wait on a specific signal, with timeout.
  * \ingroup api_l4shmc_signal_cons
  *
- * \param signal Signal to wait for.
- * \param timeout Timeout.
- * \return 0 on success, <0 on error
+ * \param signal   Signal to wait for.
+ * \param timeout  Timeout.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV long
 l4shmc_wait_signal_to(l4shmc_signal_t *signal, l4_timeout_t timeout);
 
 /**
- * \brief Check whether a specific signal has an event pending.
+ * Check whether a specific signal has an event pending.
  * \ingroup api_l4shmc_signal_cons
  *
- * \param signal Signal to check.
- * \return 0 on success, <0 on error
+ * \param signal  Signal to check.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  *
  * The return code indicates whether an event was pending or not. Success
  * means an event was pending, if an receive timeout error is returned no
@@ -385,22 +433,26 @@ L4_CV L4_INLINE long
 l4shmc_wait_signal_try(l4shmc_signal_t *signal);
 
 /**
- * \brief Wait on a specific chunk.
+ * Wait on a specific chunk.
  * \ingroup api_l4shmc_chunk_cons
  *
- * \param chunk Chunk to wait for.
- * \return 0 on success, <0 on error
+ * \param chunk  Chunk to wait for.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_wait_chunk(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Check whether a specific chunk has an event pending, with timeout.
+ * Check whether a specific chunk has an event pending, with timeout.
  * \ingroup api_l4shmc_chunk_cons
  *
- * \param chunk Chunk to check.
- * \param timeout Timeout.
- * \return 0 on success, <0 on error
+ * \param chunk    Chunk to check.
+ * \param timeout  Timeout.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  *
  * The return code indicates whether an event was pending or not. Success
  * means an event was pending, if an receive timeout error is returned no
@@ -410,11 +462,13 @@ L4_CV long
 l4shmc_wait_chunk_to(l4shmc_chunk_t *chunk, l4_timeout_t timeout);
 
 /**
- * \brief Check whether a specific chunk has an event pending.
+ * Check whether a specific chunk has an event pending.
  * \ingroup api_l4shmc_chunk_cons
  *
- * \param chunk Chunk to check.
- * \return 0 on success, <0 on error
+ * \param chunk  Chunk to check.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  *
  * The return code indicates whether an event was pending or not. Success
  * means an event was pending, if an receive timeout error is returned no
@@ -424,21 +478,24 @@ L4_CV L4_INLINE long
 l4shmc_wait_chunk_try(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Mark a chunk as free.
+ * Mark a chunk as free.
  * \ingroup api_l4shmc_chunk_cons
  *
- * \param chunk Chunk to mark as free.
- * \return 0 on success, <0 on error
+ * \param chunk  Chunk to mark as free.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_chunk_consumed(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Connect a signal with a chunk.
+ * Connect a signal with a chunk.
  * \ingroup api_l4shm
  *
- * \param chunk  Chunk to attach the signal to.
- * \param signal Signal to attach.
+ * \param chunk   Chunk to attach the signal to.
+ * \param signal  Signal to attach.
+ *
  * \return 0 on success, <0 on error
  */
 L4_CV long
@@ -446,110 +503,128 @@ l4shmc_connect_chunk_signal(l4shmc_chunk_t *chunk,
                             l4shmc_signal_t *signal);
 
 /**
- * \brief Check whether data is available.
+ * Check whether data is available.
  * \ingroup api_l4shmc_chunk_cons
  *
- * \param chunk Chunk to check.
- * \return 0 on success, <0 on error
+ * \param chunk  Chunk to check.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_is_chunk_ready(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Check whether chunk is free.
+ * Check whether chunk is free.
  * \ingroup api_l4shmc_chunk_prod
  *
- * \param chunk Chunk to check.
- * \return 0 on success, <0 on error
+ * \param chunk  Chunk to check.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_is_chunk_clear(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Get data pointer to chunk.
+ * Get data pointer to chunk.
  * \ingroup api_l4shmc_chunk
  *
- * \param chunk Chunk.
- * \return 0 on success, <0 on error
+ * \param chunk  Chunk.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE void *
 l4shmc_chunk_ptr(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Get current size of a chunk.
+ * Get current size of a chunk.
  * \ingroup api_l4shmc_chunk_cons
  *
- * \param chunk Chunk.
- * \return 0 on success, <0 on error
+ * \param chunk  Chunk.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_chunk_size(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Get capacity of a chunk.
+ * Get capacity of a chunk.
  * \ingroup api_l4shmc_chunk
  *
- * \param chunk Chunk.
- * \return 0 on success, <0 on error
+ * \param chunk  Chunk.
+ *
+ * \retval 0   Success.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_chunk_capacity(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Get the signal of a chunk.
+ * Get the signal of a chunk.
  * \ingroup api_l4shmc_chunk
  *
- * \param chunk Chunk.
- * \return 0 if no signal has been register with this chunk,
- *         signal otherwise
+ * \param chunk  Chunk.
+ *
+ * \retval 0  No signal has been registered with this chunk.
+ * \retval >0 Pointer to signal otherwise.
  */
 L4_CV L4_INLINE l4shmc_signal_t *
 l4shmc_chunk_signal(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Get the signal capability of a signal.
+ * Get the signal capability of a signal.
  * \ingroup api_l4shmc_signal
  *
- * \param signal Signal.
+ * \param signal  Signal.
+ *
  * \return Capability of the signal object.
  */
 L4_CV L4_INLINE l4_cap_idx_t
 l4shmc_signal_cap(l4shmc_signal_t *signal);
 
 /**
- * \brief Check magic value of a chunk.
+ * Check magic value of a chunk.
  * \ingroup api_l4shmc_signal
  *
- * \param chunk Chunk.
- * \return True if chunk is ok (magic value valid), false if not.
+ * \param chunk  Chunk.
+ *
+ * \retval 0   Magic value is not valid.
+ * \retval >0  Chunk is ok, the magic value is valid.
  */
 L4_CV L4_INLINE long
 l4shmc_check_magic(l4shmc_chunk_t *chunk);
 
 /**
- * \brief Get size of shared memory area.
+ * Get size of shared memory area.
  * \ingroup api_l4shm
  *
- * \param shmarea Shared memory area.
- * \return <0 on error, otherwise: size of the shared memory area
+ * \param shmarea  Shared memory area.
+ *
+ * \retval >0  Size of the shared memory area.
+ * \retval <0  Error.
  */
 L4_CV L4_INLINE long
 l4shmc_area_size(l4shmc_area_t *shmarea);
 
 /**
- * \brief Get free size of shared memory area. To get the max size to
+ * Get free size of shared memory area. To get the max size to
  * pass to l4shmc_add_chunk, substract l4shmc_chunk_overhead().
  * \ingroup api_l4shm
  *
- * \param shmarea Shared memory area.
- * \return <0 on error, otherwise: free capacity in the area.
+ * \param shmarea  Shared memory area.
+ *
+ * \retval 0   Free capacity in the area.
+ * \retval <0  Error.
  *
  */
 L4_CV long
 l4shmc_area_size_free(l4shmc_area_t *shmarea);
 
 /**
- * \brief Get memory overhead per area that is not available for chunks
+ * Get memory overhead per area that is not available for chunks
  * \ingroup api_l4shm
  *
  * \return size of the overhead in bytes
@@ -558,7 +633,7 @@ L4_CV long
 l4shmc_area_overhead(void);
 
 /**
- * \brief Get memory overhead required in addition to the chunk capacity
+ * Get memory overhead required in addition to the chunk capacity
  * for adding one chunk
  * \ingroup api_l4shm
  *