1
1

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.
Этот коммит содержится в:
Ralph Castain 2010-01-23 03:57:24 +00:00
родитель 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;