From 5f50e089cd9972efb3c8d0592ce427b9b548875d Mon Sep 17 00:00:00 2001 From: Ahreum Jeong Date: Fri, 1 Sep 2017 16:03:58 +0900 Subject: [PATCH] Modify since in doxygen for Tizen RT v1.1 - pthread.h, signal.h, stdio.h, stdlib.h, unistd.h, tinyara/math.h, ttrace.h --- os/include/pthread.h | 30 +++--- os/include/signal.h | 10 +- os/include/stdio.h | 8 +- os/include/stdlib.h | 4 +- os/include/tinyara/math.h | 244 ++++++++++++++++++++++---------------------- os/include/tinyara/ttrace.h | 10 +- os/include/unistd.h | 2 +- 7 files changed, 154 insertions(+), 154 deletions(-) diff --git a/os/include/pthread.h b/os/include/pthread.h index f451bb7..2886bda 100644 --- a/os/include/pthread.h +++ b/os/include/pthread.h @@ -467,14 +467,14 @@ int pthread_setcancelstate(int state, FAR int *oldstate); /** * @ingroup PTHREAD_KERNEL * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_setcanceltype(int type, FAR int *oldtype); /** * @ingroup PTHREAD_KERNEL * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ void pthread_testcancel(void); @@ -809,25 +809,25 @@ int pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *type); int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_mutexattr_getprotocol(FAR const pthread_mutexattr_t *attr, FAR int *protocol); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_mutexattr_setprotocol(FAR pthread_mutexattr_t *attr, int protocol); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_mutexattr_getrobust(FAR const pthread_mutexattr_t *attr, FAR int *robust); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_mutexattr_setrobust(FAR pthread_mutexattr_t *attr, int robust); @@ -870,47 +870,47 @@ int pthread_barrierattr_setpshared(FAR pthread_barrierattr_t *attr, int pshared) /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_destroy(FAR pthread_rwlock_t *rw_lock); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_init(FAR pthread_rwlock_t *rw_lock, FAR const pthread_rwlockattr_t *attr); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_rdlock(pthread_rwlock_t *lock); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_timedrdlock(FAR pthread_rwlock_t *lock, FAR const struct timespec *abstime); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_timedwrlock(FAR pthread_rwlock_t *lock, FAR const struct timespec *abstime); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_tryrdlock(FAR pthread_rwlock_t *lock); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_trywrlock(FAR pthread_rwlock_t *lock); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_unlock(FAR pthread_rwlock_t *lock); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int pthread_rwlock_wrlock(FAR pthread_rwlock_t *lock); diff --git a/os/include/signal.h b/os/include/signal.h index d37ed2b..7f3c69e 100644 --- a/os/include/signal.h +++ b/os/include/signal.h @@ -336,17 +336,17 @@ int sigismember(FAR const sigset_t *set, int signo); int sighold(int sig); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int sigignore(int sig); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int sigpause(int sig); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int raise(int sig); /** @@ -356,12 +356,12 @@ int raise(int sig); int sigrelse(int sig); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ CODE void (*sigset(int sig, CODE void (*func)(int sig)))(int sig); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ CODE void (*signal(int sig, CODE void (*func)(int sig)))(int sig); /** diff --git a/os/include/stdio.h b/os/include/stdio.h index 6f164cc..9afe0c6 100644 --- a/os/include/stdio.h +++ b/os/include/stdio.h @@ -248,17 +248,17 @@ char *fgets(FAR char *s, int n, FAR FILE *stream); FAR FILE *fopen(FAR const char *path, FAR const char *type); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ FAR FILE *freopen(FAR const char *path, FAR const char *mode, FAR FILE *stream); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ void setbuf(FAR FILE *stream, FAR char *buf); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int setvbuf(FAR FILE *stream, FAR char *buffer, int mode, size_t size); /** @@ -449,7 +449,7 @@ FAR char *tmpnam(FAR char *s); FAR char *tempnam(FAR const char *dir, FAR const char *pfx); /** * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int remove(FAR const char *path); diff --git a/os/include/stdlib.h b/os/include/stdlib.h index 1d72084..daece9c 100644 --- a/os/include/stdlib.h +++ b/os/include/stdlib.h @@ -427,7 +427,7 @@ long long int llabs(long long int j); /** * @ingroup STDLIB_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ div_t div(int numer, int denom); /** @@ -471,7 +471,7 @@ void qsort(void *base, size_t nmemb, size_t size, int (*compar)(const void *, co /** * @ingroup STDLIB_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ FAR void *bsearch(FAR const void *key, FAR const void *base, size_t nel, size_t width, CODE int (*compar)(FAR const void *, FAR const void *)); diff --git a/os/include/tinyara/math.h b/os/include/tinyara/math.h index bbee381..cbab8b3 100644 --- a/os/include/tinyara/math.h +++ b/os/include/tinyara/math.h @@ -179,14 +179,14 @@ extern "C" { /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float ceilf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double ceil(double x); #endif @@ -194,14 +194,14 @@ double ceil(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double ceill(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float floorf(float x); #ifdef CONFIG_HAVE_DOUBLE @@ -216,21 +216,21 @@ double floor(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double floorl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float roundf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double round(double x); #endif @@ -238,21 +238,21 @@ double round(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double roundl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float rintf(float x); /* Not implemented */ #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double rint(double x); #endif @@ -260,14 +260,14 @@ double rint(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double rintl(long double x); /* Not implemented */ #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float fabsf(float x); #ifdef CONFIG_HAVE_DOUBLE @@ -282,7 +282,7 @@ double fabs(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double fabsl(long double x); #endif @@ -348,20 +348,20 @@ long double powl(long double b, long double e); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float expf(float x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ #define expm1f(x) (expf(x) - 1.0) #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double exp(double x); #define expm1(x) (exp(x) - 1.0) @@ -370,7 +370,7 @@ double exp(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double expl(long double x); #define expm1l(x) (expl(x) - 1.0) @@ -378,14 +378,14 @@ long double expl(long double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float exp2f(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double exp2(double x); #endif @@ -393,7 +393,7 @@ double exp2(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double exp2l(long double x); #endif @@ -436,14 +436,14 @@ long double log10l(long double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float log2f(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double log2(double x); #endif @@ -451,21 +451,21 @@ double log2(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double log2l(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float cbrtf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double cbrt(double x); #endif @@ -473,21 +473,21 @@ double cbrt(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double cbrtl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float sqrtf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double sqrt(double x); #endif @@ -495,21 +495,21 @@ double sqrt(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double sqrtl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float ldexpf(float x, int n); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double ldexp(double x, int n); #endif @@ -517,21 +517,21 @@ double ldexp(double x, int n); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double ldexpl(long double x, int n); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float frexpf(float x, int *exp); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double frexp(double x, int *exp); #endif @@ -539,7 +539,7 @@ double frexp(double x, int *exp); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double frexpl(long double x, int *exp); #endif @@ -548,14 +548,14 @@ long double frexpl(long double x, int *exp); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float sinf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double sin(double x); #endif @@ -563,21 +563,21 @@ double sin(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double sinl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float cosf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double cos(double x); #endif @@ -585,21 +585,21 @@ double cos(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double cosl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float tanf(float x); #if CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double tan(double x); #endif @@ -607,21 +607,21 @@ double tan(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double tanl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float asinf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double asin(double x); #endif @@ -629,21 +629,21 @@ double asin(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double asinl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float acosf(float x); #if CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double acos(double x); #endif @@ -651,21 +651,21 @@ double acos(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double acosl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float atanf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double atan(double x); #endif @@ -673,21 +673,21 @@ double atan(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double atanl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float atan2f(float y, float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double atan2(double y, double x); #endif @@ -695,21 +695,21 @@ double atan2(double y, double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double atan2l(long double y, long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float sinhf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double sinh(double x); #endif @@ -717,21 +717,21 @@ double sinh(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double sinhl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float coshf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double cosh(double x); #endif @@ -739,21 +739,21 @@ double cosh(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double coshl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float tanhf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double tanh(double x); #endif @@ -761,21 +761,21 @@ double tanh(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double tanhl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float asinhf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double asinh(double x); #endif @@ -783,21 +783,21 @@ double asinh(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double asinhl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float acoshf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double acosh(double x); #endif @@ -805,21 +805,21 @@ double acosh(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double acoshl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float atanhf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double atanh(double x); #endif @@ -827,14 +827,14 @@ double atanh(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double atanhl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float erff(float x); /** @@ -849,7 +849,7 @@ float erff(float x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double erf(double x); #define erfc(x) (1 - erf(x)) @@ -858,7 +858,7 @@ double erf(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double erfl(long double x); #define erfcl(x) (1 - erfl(x)) @@ -866,14 +866,14 @@ long double erfl(long double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float copysignf(float x, float y); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double copysign(double x, double y); #endif @@ -881,21 +881,21 @@ double copysign(double x, double y); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double copysignl(long double x, long double y); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float truncf(float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double trunc(double x); #endif @@ -903,21 +903,21 @@ double trunc(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double truncl(long double x); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float fdimf(float x, float y); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double fdim(double x, double y); #endif @@ -925,21 +925,21 @@ double fdim(double x, double y); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double fdiml(long double x, long double y); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float fmaxf(float x, float y); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double fmax(double x, double y); #endif @@ -947,21 +947,21 @@ double fmax(double x, double y); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double fmaxl(long double x, long double y); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float fminf(float x, float y); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double fmin(double x, double y); #endif @@ -969,21 +969,21 @@ double fmin(double x, double y); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double fminl(long double x, long double y); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float hypotf(float x, float y); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double hypot(double x, double y); #endif @@ -991,21 +991,21 @@ double hypot(double x, double y); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double hypotl(long double x, long double y); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float scalbnf(float x, int exp); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double scalbn(double x, int exp); #endif @@ -1013,7 +1013,7 @@ double scalbn(double x, int exp); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double scalbnl(long double x, int exp); #endif @@ -1023,7 +1023,7 @@ long double scalbnl(long double x, int exp); * @param[in] float type value which wants to calc j0 * @return If x is a NaN, a NaN is returned. If x is too large in magnitude, or the result underflows, * a range error occurs, and the return value is 0. - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float j0f(float x); /** @@ -1032,7 +1032,7 @@ float j0f(float x); * @param[in] float type value which wants to calc j1 * @return If x is a NaN, a NaN is returned. If x is too large in magnitude, or the result underflows, * a range error occurs, and the return value is 0. - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float j1f(float x); /** @@ -1042,26 +1042,26 @@ float j1f(float x); * @param[in] float type value which wants to calc jn * @return If x is a NaN, a NaN is returned. If x is too large in magnitude, or the result underflows, * a range error occurs, and the return value is 0. - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float jnf(int n, float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double j0(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double j1(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double jn(int n, double x); #endif @@ -1072,7 +1072,7 @@ double jn(int n, double x); * @return If x is a NaN, a NaN is returned. If x is negative, it returns -HUGE_VALF. * If x is 0.0, it returns -HUGE_VALF. If the result underflows, it returns 0.0. * If the result overflows, it returns -HUGE_VALF. - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float y0f(float x); /** @@ -1082,7 +1082,7 @@ float y0f(float x); * @return If x is a NaN, a NaN is returned. If x is negative, it returns -HUGE_VALF. * If x is 0.0, it returns -HUGE_VALF. If the result underflows, it returns 0.0. * If the result overflows, it returns -HUGE_VALF. - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float y1f(float x); /** @@ -1093,26 +1093,26 @@ float y1f(float x); * @return If x is a NaN, a NaN is returned. If x is negative, it returns -HUGE_VALF. * If x is 0.0, it returns -HUGE_VALF. If the result underflows, it returns 0.0. * If the result overflows, it returns -HUGE_VALF. - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float ynf(int n, float x); #ifdef CONFIG_HAVE_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double y0(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double y1(double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double yn(int n, double x); #endif @@ -1120,21 +1120,21 @@ double yn(int n, double x); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double nextafter(double x, double y); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float nextafterf(float x, float y); #ifdef CONFIG_HAVE_LONG_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double nextafterl(long double x, long double y); #endif @@ -1142,21 +1142,21 @@ long double nextafterl(long double x, long double y); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double nexttoward(double x, long double y); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float nexttowardf(float x, long double y); #ifdef CONFIG_HAVE_LONG_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double nexttowardl(long double x, long double y); #endif @@ -1164,21 +1164,21 @@ long double nexttowardl(long double x, long double y); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double remainder(double x, double y); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float remainderf(float x, float y); #ifdef CONFIG_HAVE_LONG_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double remainderl(long double x, long double y); #endif @@ -1186,21 +1186,21 @@ long double remainderl(long double x, long double y); /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ double remquo(double x, double y, int *quo); #endif /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ float remquof(float x, float y, int *quo); #ifdef CONFIG_HAVE_LONG_DOUBLE /** * @ingroup MATH_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ long double remquol(long double x, long double y, int *quo); #endif diff --git a/os/include/tinyara/ttrace.h b/os/include/tinyara/ttrace.h index 8aeb8f4..4e76efd 100644 --- a/os/include/tinyara/ttrace.h +++ b/os/include/tinyara/ttrace.h @@ -116,7 +116,7 @@ extern "C" { * @param[in] number for tag * @param[in] unique strings like function name for distinguishing events * @return On success, TTRACE_VALID is returned. On failure, ERROR is returned and errno is set appropriately. - * @since Tizen RT vX.X + * @since Tizen RT v1.1 */ int trace_begin(int tag, char *str, ...); @@ -126,7 +126,7 @@ int trace_begin(int tag, char *str, ...); * @param[in] number for tag * @param[in] unique id for distinguishing events * @return On success, TTRACE_VALID is returned. On failure, TTRACE_INVALID is returned and errno is set appropriately. - * @since Tizen RT vX.X + * @since Tizen RT v1.1 */ int trace_begin_uid(int tag, int8_t uniqueid); @@ -135,7 +135,7 @@ int trace_begin_uid(int tag, int8_t uniqueid); * @brief writes a trace log to indicate that the event has ended * @param[in] number for tag * @return On success, TTRACE_VALID is returned. On failure, TTRACE_INVALID is returned and errno is set appropriately. - * @since Tizen RT vX.X + * @since Tizen RT v1.1 */ int trace_end(int tag); @@ -144,7 +144,7 @@ int trace_end(int tag); * @brief writes a trace log to indicate that a event has ended * @param[in] number for tag * @return On success, TTRACE_VALID is returned. On failure, TTRACE_INVALID is returned and errno is set appropriately. - * @since Tizen RT vX.X + * @since Tizen RT v1.1 */ int trace_end_uid(int tag); @@ -154,7 +154,7 @@ int trace_end_uid(int tag); * @param[in] tcb of current task * @param[in] tcb of next task which will be switched * @return On success, TTRACE_VALID is returned. On failure, TTRACE_INVALID is returned and errno is set appropriately. - * @since Tizen RT vX.X + * @since Tizen RT v1.1 */ int trace_sched(struct tcb_s *prev, struct tcb_s *next); #else diff --git a/os/include/unistd.h b/os/include/unistd.h index 2251aa9..234d49b 100644 --- a/os/include/unistd.h +++ b/os/include/unistd.h @@ -331,7 +331,7 @@ FAR char *getcwd(FAR char *buf, size_t size); /** * @ingroup STDLIB_LIBC * @brief POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) - * @since Tizen RT v2.0 + * @since Tizen RT v1.1 */ int access(FAR const char *path, int amode); /** -- 2.7.4