diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2006-05-16 02:56:59 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2006-05-16 02:56:59 +0000 |
| commit | b45d9518aebfcd64e8359b9dce99067b00a33841 (patch) | |
| tree | 2f304e42012070b654e88cc308566ef6c283a926 /src/util/support | |
| parent | 2358c33abaafda878270c34fab6d457328b8d369 (diff) | |
| download | krb5-b45d9518aebfcd64e8359b9dce99067b00a33841.tar.gz krb5-b45d9518aebfcd64e8359b9dce99067b00a33841.tar.xz krb5-b45d9518aebfcd64e8359b9dce99067b00a33841.zip | |
Don't look for pthread_mutexattr_setrobust_np
Apparently Red Hat's Fedora Core 5 defines it but doesn't declare it,
so we'd have to declare it before testing the address. While it was
once useful for checking whether the pthread code had been loaded, I
think the other tests done now are more effective and this isn't
needed any more.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18012 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/support')
| -rw-r--r-- | src/util/support/threads.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/util/support/threads.c b/src/util/support/threads.c index 1ac9c61500..ebc1dafaea 100644 --- a/src/util/support/threads.c +++ b/src/util/support/threads.c @@ -144,11 +144,6 @@ int krb5int_pthread_loaded (void) || &pthread_mutex_init == 0 || &pthread_self == 0 || &pthread_equal == 0 - /* This catches Solaris 9. May be redundant with the above - tests now. */ -# ifdef HAVE_PTHREAD_MUTEXATTR_SETROBUST_NP_IN_THREAD_LIB - || &pthread_mutexattr_setrobust_np == 0 -# endif /* Any program that's really multithreaded will have to be able to create threads. */ || &pthread_create == 0 |
