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

This commit is contained in:
atantar 2007-11-29 11:21:00 +00:00
commit 239b181bc7
16 changed files with 352 additions and 57 deletions

View file

@ -57,6 +57,10 @@ void Cooperative :: send (Cooperative * __coop) {
// stop ();
}
void Cooperative :: synchronizeCoopEx () {
:: send (this, my_node -> rk_sched, SYNCHRONIZE_REQ_TAG);
}
Cooperative * getCooperative (COOP_ID __key) {
return dynamic_cast <Cooperative *> (getCommunicable (__key));
@ -67,3 +71,12 @@ void Cooperative :: notifySending () {
//getOwner -> setPassive ();
// resume ();
}
void Cooperative :: notifyReceiving () {
}
void Cooperative :: notifySendingSyncReq () {
}
void Cooperative :: notifySynchronized () {
}