summaryrefslogtreecommitdiff
path: root/libpthread/nptl/pthread_attr_init.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-05-11 23:53:20 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-05-11 23:53:20 +0000
commit8f14fbdfe239485f1f9267be8cad07a7ee7d6b29 (patch)
tree29dd17b1b3e76343b9818ca0f19a44fece5a5044 /libpthread/nptl/pthread_attr_init.c
parent8ba0998b77685cabdeb878c57de3af99965ef62a (diff)
More glibc backward compatibility cruft. Oh the horror!
Diffstat (limited to 'libpthread/nptl/pthread_attr_init.c')
-rw-r--r--libpthread/nptl/pthread_attr_init.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/libpthread/nptl/pthread_attr_init.c b/libpthread/nptl/pthread_attr_init.c
index c84b33f31..625ccd442 100644
--- a/libpthread/nptl/pthread_attr_init.c
+++ b/libpthread/nptl/pthread_attr_init.c
@@ -23,8 +23,6 @@
#include <unistd.h>
#include "pthreadP.h"
-#include <shlib-compat.h>
-
struct pthread_attr *__attr_list;
lll_lock_t __attr_list_lock = LLL_LOCK_INITIALIZER;
@@ -51,38 +49,3 @@ __pthread_attr_init_2_1 (attr)
}
versioned_symbol (libpthread, __pthread_attr_init_2_1, pthread_attr_init,
GLIBC_2_1);
-
-
-#if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1)
-int
-__pthread_attr_init_2_0 (attr)
- pthread_attr_t *attr;
-{
- /* This code is specific to the old LinuxThread code which has a too
- small pthread_attr_t definition. The struct looked like
- this: */
- struct old_attr
- {
- int detachstate;
- int schedpolicy;
- struct sched_param schedparam;
- int inheritsched;
- int scope;
- };
- struct pthread_attr *iattr;
-
- /* Many elements are initialized to zero so let us do it all at
- once. This also takes care of clearing the bytes which are not
- internally used. */
- memset (attr, '\0', sizeof (struct old_attr));
-
- iattr = (struct pthread_attr *) attr;
- iattr->flags |= ATTR_FLAG_OLDATTR;
-
- /* We cannot enqueue the attribute because that member is not in the
- old attribute structure. */
- return 0;
-}
-compat_symbol (libpthread, __pthread_attr_init_2_0, pthread_attr_init,
- GLIBC_2_0);
-#endif