summaryrefslogtreecommitdiff
path: root/linuxthreads/internals.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-30 23:45:39 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-30 23:45:39 +0000
commit49e9f864906640e913ad69f98ce6ee24776d5b8d (patch)
tree7c5bc877d6564c7d0e1e4230da72061ccf0ad795 /linuxthreads/internals.h
parentf7a0ea26ea79bc86a5fce32551ea0b06a31528fe (diff)
Update.
2002-12-30 Jakub Jelinek <jakub@redhat.com> * forward.c (FORWARD2): Renamed from FORWARD3. Remove unused export argument. (pthread_attr_init_2_0, pthread_attr_init_2_1): Use FORWARD macro. (pthread_exit): Use strong_alias to avoid warnings. * pthreadP.h (struct pthread_functions): Rename ptr_pthread_exit and ptr_pthread_attr_init_2_* to ptr___pthread_exit and ptr___pthread_attr_init_2_*. * init.c (pthread_functions): Adjust.
Diffstat (limited to 'linuxthreads/internals.h')
-rw-r--r--linuxthreads/internals.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h
index 68ad6c72d5..8c4de222b4 100644
--- a/linuxthreads/internals.h
+++ b/linuxthreads/internals.h
@@ -483,8 +483,8 @@ extern void __libc_disable_asynccancel (int oldtype)
struct pthread_functions
{
int (*ptr_pthread_attr_destroy) (pthread_attr_t *);
- int (*ptr_pthread_attr_init_2_0) (pthread_attr_t *);
- int (*ptr_pthread_attr_init_2_1) (pthread_attr_t *);
+ int (*ptr___pthread_attr_init_2_0) (pthread_attr_t *);
+ int (*ptr___pthread_attr_init_2_1) (pthread_attr_t *);
int (*ptr_pthread_attr_getdetachstate) (const pthread_attr_t *, int *);
int (*ptr_pthread_attr_setdetachstate) (pthread_attr_t *, int);
int (*ptr_pthread_attr_getinheritsched) (const pthread_attr_t *, int *);
@@ -505,7 +505,7 @@ struct pthread_functions
int (*ptr_pthread_cond_signal) (pthread_cond_t *);
int (*ptr_pthread_cond_wait) (pthread_cond_t *, pthread_mutex_t *);
int (*ptr_pthread_equal) (pthread_t, pthread_t);
- void (*ptr_pthread_exit) (void *);
+ void (*ptr___pthread_exit) (void *);
int (*ptr_pthread_getschedparam) (pthread_t, int *, struct sched_param *);
int (*ptr_pthread_setschedparam) (pthread_t, int,
const struct sched_param *);