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
 
@@ -14,37 +14,39 @@
 
  GNU Affero General Public License for more details.
 

	
 
  You should have received a copy of the GNU Affero General Public License
 
  along with DistRen.  If not, see <http://www.gnu.org/licenses/>.
 
*/
 

	
 
/*
 
  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)
 
{
 
}
 

	
 
/**
 
   @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)
 
{
 
}
 

	
 
/**
 
   @todo Stub
 
 */
0 comments (0 inline, 0 general)