/**
* @brief Enumeration for Trace Error.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
+* @since_tizen 2.4
*/
typedef enum {
TRACE_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
/**
* @brief Writes a trace event to indicate that a synchronous event has begun.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
+ * @since_tizen 2.4
* @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
/**
* @brief Writes a trace event to indicate that the synchronous event has ended.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
+ * @since_tizen 2.4
* @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
/**
* @brief Writes a trace event to indicate that an asynchronous event has begun.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
+ * @since_tizen 2.4
* @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)
/**
* @brief Writes a trace event to indicate that the asynchronous event has ended.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
+ * @since_tizen 2.4
* @remarks trace_async_end() ends matched trace_async_begin() which has same cookie and 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
/**
* @brief Writes a trace event to track change of integer counter.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
+ * @since_tizen 2.4
* @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)