Define a standard return value for when a thread exits.
Not sure what Windows or Solaris are looking for, so defined it all the same This commit was SVN r22471.
Этот коммит содержится в:
родитель
7946d8889f
Коммит
2e2e49e46f
@ -33,6 +33,13 @@ BEGIN_C_DECLS
|
||||
|
||||
typedef void *(*opal_thread_fn_t) (opal_object_t *);
|
||||
|
||||
#ifdef __WINDOWS__
|
||||
#define OPAL_THREAD_CANCELLED ((void*)1);
|
||||
#elif OPAL_HAVE_POSIX_THREADS
|
||||
#define OPAL_THREAD_CANCELLED ((void*)1);
|
||||
#elif OPAL_HAVE_SOLARIS_THREADS
|
||||
#define OPAL_THREAD_CANCELLED ((void*)1);
|
||||
#endif
|
||||
|
||||
struct opal_thread_t {
|
||||
opal_object_t super;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user