Changeset - 93996706d92a
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 16 years ago 2009-05-23 22:01:18
ohnobinki@ohnopublishing.net
implemented distren_init
but the real grunt work of that function will be done by distren_init_mf, so there is no real progress here ;-)
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/client/libdistren.c
Show inline comments
 
@@ -20,12 +20,13 @@
 
/*
 
  Implementation of distren_* functions from distren.h excluding distren_job_* functions.
 
 */
 

	
 
#include <libdistren.h>
 

	
 
#include <malloc.h>
 

	
 
/**
 
   @todo Stub
 
 */
 
int distren_init_mf(distren_t *handle, distren_malloc_t mymalloc, distren_free_t myfree)
 
{
 
@@ -33,12 +34,13 @@ int distren_init_mf(distren_t *handle, d
 

	
 
/**
 
   @todo Stub
 
 */
 
int distren_init(distren_t *handle)
 
{
 
  return distren_init_mf(handle, &malloc, &free);
 
}
 

	
 
/**
 
   @todo Stub
 
 */
 
int distren_submit_file(distren_t handle, distren_job_t *job, const char *filename)
0 comments (0 inline, 0 general)