aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flclass.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/source/flclass.h')
-rw-r--r--externals/grill/flext/source/flclass.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/grill/flext/source/flclass.h b/externals/grill/flext/source/flclass.h
index 66da8e7a..dd51d85a 100644
--- a/externals/grill/flext/source/flclass.h
+++ b/externals/grill/flext/source/flclass.h
@@ -443,11 +443,11 @@ protected:
//! \brief Check if this class represents the current thread
bool Is(pthread_t id = pthread_self()) const { return pthread_equal(thrid,id) != 0; }
- bool active,shouldexit;
- pthread_t thrid;
+ flext_base *th;
void *(*meth)(thr_params *);
thr_params *params;
- flext_base *th;
+ pthread_t thrid;
+ bool active,shouldexit;
thr_entry *nxt;
};