diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-18 02:49:28 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-18 02:49:28 +0000 |
commit | 5f7339fd738083baf7e42268301babd4324c3e3e (patch) | |
tree | 092a1ceb6ff0b6e83808b53fed77a4cd64609ba1 /libpthread/linuxthreads/cancel.c | |
parent | 1191db0686f450f1e9988fc04621489ba7e0a907 (diff) | |
download | uClibc-alpine-5f7339fd738083baf7e42268301babd4324c3e3e.tar.bz2 uClibc-alpine-5f7339fd738083baf7e42268301babd4324c3e3e.tar.xz |
Merge from trunk.
Diffstat (limited to 'libpthread/linuxthreads/cancel.c')
-rw-r--r-- | libpthread/linuxthreads/cancel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/linuxthreads/cancel.c b/libpthread/linuxthreads/cancel.c index 27ec7f9c2..34356801a 100644 --- a/libpthread/linuxthreads/cancel.c +++ b/libpthread/linuxthreads/cancel.c @@ -43,7 +43,7 @@ int __pthread_setcancelstate(int state, int * oldstate) __pthread_do_exit(PTHREAD_CANCELED, CURRENT_STACK_FRAME); return 0; } -strong_alias (__pthread_setcancelstate, pthread_setcancelstate); +strong_alias (__pthread_setcancelstate, pthread_setcancelstate) int __pthread_setcanceltype(int type, int * oldtype) { @@ -58,7 +58,7 @@ int __pthread_setcanceltype(int type, int * oldtype) __pthread_do_exit(PTHREAD_CANCELED, CURRENT_STACK_FRAME); return 0; } -strong_alias (__pthread_setcanceltype, pthread_setcanceltype); +strong_alias (__pthread_setcanceltype, pthread_setcanceltype) /* The next two functions are similar to pthread_setcanceltype() but |