mirror of https://github.com/BOINC/boinc.git
missing API functions
git-svn-id: svn+ssh://cvs.lpds.sztaki.hu/var/lib/svn/szdg/dcapi/trunk@1017 a7169a2c-3604-0410-bc95-c702d8d87f7a
This commit is contained in:
parent
745715b2ce
commit
87b4bd6c43
|
@ -746,11 +746,42 @@ int DC_setWUPriority(DC_Workunit *wu, int priority)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* Queries the state of a work unit. */
|
||||
DC_WUState
|
||||
DC_getWUState(DC_Workunit *wu)
|
||||
{
|
||||
return(DC_WU_UNKNOWN);
|
||||
return(DC_ERR_NOTIMPL);
|
||||
}
|
||||
|
||||
/* Temporarily suspends the execution of a work unit. */
|
||||
int
|
||||
DC_suspendWU(DC_Workunit *wu)
|
||||
{
|
||||
return(DC_ERR_NOTIMPL);
|
||||
}
|
||||
|
||||
/* Resumes computation of a previously suspended work unit. */
|
||||
int
|
||||
DC_resumeWU(DC_Workunit *wu)
|
||||
{
|
||||
return(DC_ERR_NOTIMPL);
|
||||
}
|
||||
|
||||
/* Serializes a work unit description. */
|
||||
char *
|
||||
DC_serializeWU(DC_Workunit *wu)
|
||||
{
|
||||
return(NULL/*DC_ERR_NOTIMPL*/);
|
||||
}
|
||||
|
||||
/* Restores a serialized work unit. */
|
||||
DC_Workunit *
|
||||
DC_deserializeWU(const char *buf)
|
||||
{
|
||||
return(NULL/*DC_ERR_NOTIMPL*/);
|
||||
}
|
||||
|
||||
|
||||
/* End of local/local_master.c */
|
||||
|
||||
/* Local variables: */
|
||||
|
|
Loading…
Reference in New Issue