[OpenSDK-cvs] openSDK/src MCOOP.cc,1.7,1.8
Status: Beta
Brought to you by:
nuno-lopes
From: Nuno L. <nun...@us...> - 2007-07-16 15:18:16
|
Update of /cvsroot/opensdk/openSDK/src In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10794 Modified Files: MCOOP.cc Log Message: add SetTimeEvent() and CancelEvent() stubs so that we can run CMU's robocup code Index: MCOOP.cc =================================================================== RCS file: /cvsroot/opensdk/openSDK/src/MCOOP.cc,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- MCOOP.cc 16 Jul 2007 13:50:18 -0000 1.7 +++ MCOOP.cc 16 Jul 2007 15:18:14 -0000 1.8 @@ -56,6 +56,19 @@ return sSUCCESS; } + +sError SetTimeEvent(TimeEventInfo* info, OID dest, Selector meth, void* msg, size_t sizeOfMsg, EventID* eventID) +{ + // TODO + return sNOTIMERAVAILABLE; +} + +sError CancelEvent(EventID eventID) +{ + // TODO + return sNOTIMERAVAILABLE; +} + sError NewRegion(size_t size, void** ptr) { *ptr = malloc(size); |