mirror of https://github.com/BOINC/boinc.git
29 lines
331 B
C
29 lines
331 B
C
/* Local variables: */
|
|
/* c-file-style: "linux" */
|
|
/* End: */
|
|
|
|
#include "condor_result.h"
|
|
|
|
|
|
DC_Result *
|
|
_DC_result_create(DC_Workunit *wu)
|
|
{
|
|
DC_Result *r;
|
|
|
|
r= g_new0(DC_Result, 1);
|
|
r->wu= wu;
|
|
return(r);
|
|
}
|
|
|
|
|
|
void
|
|
_DC_result_destroy(DC_Result *result)
|
|
{
|
|
if (!result)
|
|
return;
|
|
g_free(result);
|
|
}
|
|
|
|
|
|
/* End of condor_result.c */
|