summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChangjoon Baek <joon.c.baek@samsung.com>2017-01-12 02:07:25 -0800
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2017-01-12 02:07:26 -0800
commitcbe739a7926edc0dc79fe647fc15baf243d97334 (patch)
tree7af55149b8a37bd0289882cb440f4e493daf2789
parent9cc16be6537d1e4edefba4cfd7ce9e4f26afd301 (diff)
parent0ba9cafb5b81b669b4714cfacbd1566c14f2e13b (diff)
downloadttrace-cbe739a7926edc0dc79fe647fc15baf243d97334.tar.gz
ttrace-cbe739a7926edc0dc79fe647fc15baf243d97334.tar.bz2
ttrace-cbe739a7926edc0dc79fe647fc15baf243d97334.zip
-rwxr-xr-x[-rw-r--r--]include/trace.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/trace.h b/include/trace.h
index 80da517..fc9974d 100644..100755
--- a/include/trace.h
+++ b/include/trace.h
@@ -37,7 +37,7 @@ extern "C" {
/**
* @brief Enumeration for Trace Error.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*/
typedef enum {
TRACE_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
@@ -47,7 +47,7 @@ typedef enum {
/**
* @brief Writes a trace event to indicate that a synchronous event has begun.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @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
@@ -59,7 +59,7 @@ void trace_begin(const char *name, ...);
/**
* @brief Writes a trace event to indicate that the synchronous event has ended.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @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
@@ -71,7 +71,7 @@ void trace_end();
/**
* @brief Writes a trace event to indicate that an asynchronous event has begun.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @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] cookie An unique identifier for distinguishing simultaneous events
* @param[in] name The name of event (optionally containing format specifiers)
@@ -84,7 +84,7 @@ void trace_async_begin(int cookie, const char *name, ...);
/**
* @brief Writes a trace event to indicate that the asynchronous event has ended.
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @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
@@ -98,7 +98,7 @@ void trace_async_end(int cookie, const char *name, ...);
/**
* @brief Writes a trace event to track change of integer counter
*
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @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)