/* * $Id: mrt_thread.h,v 2.2 2000/05/23 08:02:12 masaki Exp $ */ #ifndef _MRT_THREAD_H #define _MRT_THREAD_H #include "config.h" #ifndef HAVE_LIBPTHREAD #include "pthread_fake.h" #else #ifdef HAVE_PTHREAD_H #include #endif /* HAVE_PTHREAD_H */ #endif /* HAVE_LIBPTHREAD */ #ifndef HAVE_SIGPROCMASK typedef unsigned long sigset_t; #endif /* HAVE_SIGPROCMASK */ #ifndef HAVE_PTHREAD_ATTR_SETSCOPE #define pthread_attr_setscope(attr, scope) /* nothing */ #endif /* HAVE_PTHREAD_ATTR_SETSCOPE */ #endif /* _MRT_THREAD_H */ .