libs-base/config/config.joinable.m
rfm 1c46da5995 Attempts to cope with new runtime's failure to link without base.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29636 72102866-910b-0410-8b05-ffd578937521
2010-02-15 09:35:20 +00:00

19 lines
462 B
Objective-C

/* Test whether Objective-C runtime uses pthreads and doesn't detach
* them properly. If the join attempt succeeds, the thread was created
* joinable (which it shouldn't be) and this program returns 0.
*/
#include "objc-common.g"
#include <pthread.h>
int
main()
{
id o = [Object new];
pthread_t tid;
void *value_ptr;
tid = (pthread_t)objc_thread_detach (@selector(hash), o, nil);
return pthread_join (tid, &value_ptr);
}