git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@810 331e1502-861f-0410-8da2-ba01fb791d7f

This commit is contained in:
atantar 2007-11-23 16:41:23 +00:00
commit 7526792805
49 changed files with 449 additions and 420 deletions

View file

@ -42,7 +42,7 @@
/* A high-level thread */
class Thread {
public:
/* Ctor */
@ -50,7 +50,7 @@ public:
/* Dtor */
virtual ~ Thread ();
/* Go ! */
virtual void start () = 0;
@ -59,7 +59,7 @@ public:
(but it may receive messages) */
private :
bool act;
};