Index: trunk/MagicSoft/Cosy/base/MThread.h
===================================================================
--- trunk/MagicSoft/Cosy/base/MThread.h	(revision 1109)
+++ trunk/MagicSoft/Cosy/base/MThread.h	(revision 1111)
@@ -2,7 +2,11 @@
 #define MTHREAD_H
 
+#ifdef __CINT__
+typedef unsigned long int pthread_t;
+#else
 #include <pthread.h>
+#endif
 
-class MThread 
+class MThread
 {
 private:
Index: trunk/MagicSoft/Cosy/base/threads.h
===================================================================
--- trunk/MagicSoft/Cosy/base/threads.h	(revision 1111)
+++ trunk/MagicSoft/Cosy/base/threads.h	(revision 1111)
@@ -0,0 +1,12 @@
+#ifndef THREADS_H
+#define THREADS_H
+
+#ifndef __CINT__
+#include <pthread.h>
+#else
+typedef unsigned long int pthread_t;
+struct pthread_mutex_t;
+struct pthread_cond_t;
+#endif
+
+#endif
