- memory allocation now works with allocator-functions...

This commit is contained in:
Jan Hutter
2005-11-09 09:35:06 +00:00
parent 7953866962
commit 6c4b815f22
25 changed files with 57 additions and 37 deletions
+2 -1
View File
@@ -29,6 +29,7 @@
#include <pthread.h>
#include <sys/time.h>
#include "allocator.h"
#include "tester.h"
#include "linked_list.h"
#include "thread_pool.h"
@@ -179,7 +180,7 @@ static status_t destroy(tester_t *tester)
tester_t *tester_create(FILE *output, bool display_succeeded_asserts)
{
private_tester_t *this = allocator_alloc_thing(private_tester_t, "private_tester_t");
private_tester_t *this = allocator_alloc_thing(private_tester_t);
this->public.destroy = destroy;
this->public.perform_tests = perform_tests;