diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-09 12:23:51 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-09 12:23:51 +0000 |
commit | d0a847fd8a6f89095b20c44fac4f28530481a567 (patch) | |
tree | 1f54c4e3a8b1d6144faba0cd5e5d221fbd61858d /libpthread/linuxthreads/pthread.c | |
parent | 6ba0493bc34fe6ebeb33c7ab25215f75c0b07c05 (diff) |
Remove unneeded ; after *_alias
Diffstat (limited to 'libpthread/linuxthreads/pthread.c')
-rw-r--r-- | libpthread/linuxthreads/pthread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/linuxthreads/pthread.c b/libpthread/linuxthreads/pthread.c index dac7ab1b0..8da1a9ede 100644 --- a/libpthread/linuxthreads/pthread.c +++ b/libpthread/linuxthreads/pthread.c @@ -849,13 +849,13 @@ pthread_t __pthread_self(void) pthread_descr self = thread_self(); return THREAD_GETMEM(self, p_tid); } -strong_alias (__pthread_self, pthread_self); +strong_alias (__pthread_self, pthread_self) int __pthread_equal(pthread_t thread1, pthread_t thread2) { return thread1 == thread2; } -strong_alias (__pthread_equal, pthread_equal); +strong_alias (__pthread_equal, pthread_equal) /* Helper function for thread_self in the case of user-provided stacks */ @@ -936,7 +936,7 @@ int __pthread_setschedparam(pthread_t thread, int policy, __pthread_manager_adjust_prio(th->p_priority); return 0; } -strong_alias (__pthread_setschedparam, pthread_setschedparam); +strong_alias (__pthread_setschedparam, pthread_setschedparam) int __pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param) @@ -957,7 +957,7 @@ int __pthread_getschedparam(pthread_t thread, int *policy, *policy = pol; return 0; } -strong_alias (__pthread_getschedparam, pthread_getschedparam); +strong_alias (__pthread_getschedparam, pthread_getschedparam) /* Process-wide exit() request */ |