* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
* @param[in] name The name of event (optionally containing format specifiers)
- * @exception TRACE_ERROR_NONE Success
- * @exception TRACE_ERROR_IO_ERROR I/O error
+ * @exception #TRACE_ERROR_NONE Success
+ * @exception #TRACE_ERROR_IO_ERROR I/O error
* @see trace_end()
*/
void trace_begin(const char *name, ...);
* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks trace_end() ends the most recently called trace_begin().
* @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
- * @exception TRACE_ERROR_NONE Success
- * @exception TRACE_ERROR_IO_ERROR I/O error
+ * @exception #TRACE_ERROR_NONE Success
+ * @exception #TRACE_ERROR_IO_ERROR I/O error
* @see trace_begin()
*/
-void trace_end();
+void trace_end(void);
/**
* @brief Writes a trace event to indicate that an asynchronous event has begun.
* @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
* @param[in] cookie An unique identifier for distinguishing simultaneous events
* @param[in] name The name of event (optionally containing format specifiers)
- * @exception TRACE_ERROR_NONE Success
- * @exception TRACE_ERROR_IO_ERROR I/O error
+ * @exception #TRACE_ERROR_NONE Success
+ * @exception #TRACE_ERROR_IO_ERROR I/O error
* @see trace_async_end()
*/
void trace_async_begin(int cookie, const char *name, ...);
* @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
* @param[in] cookie An unique identifier for distinguishing simultaneous events
* @param[in] name The name of event (optionally containing format specifiers)
- * @exception TRACE_ERROR_NONE Success
- * @exception TRACE_ERROR_IO_ERROR I/O error
+ * @exception #TRACE_ERROR_NONE Success
+ * @exception #TRACE_ERROR_IO_ERROR I/O error
* @see trace_async_begin()
*/
void trace_async_end(int cookie, const char *name, ...);
/**
- * @brief Writes a trace event to track change of integer counter
+ * @brief Writes a trace event to track change of integer counter.
*
* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
* @param[in] value The counter value
* @param[in] name The name of event (optionally containing format specifiers)
- * @exception TRACE_ERROR_NONE Success
- * @exception TRACE_ERROR_IO_ERROR I/O error
+ * @exception #TRACE_ERROR_NONE Success
+ * @exception #TRACE_ERROR_IO_ERROR I/O error
*/
void trace_update_counter(int value, const char *name, ...);