diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-09 09:35:06 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-09 09:35:06 +0000 |
commit | 6c4b815f22341ad3c2574b42a64b39e16ef1e7c7 (patch) | |
tree | 57c322fecce2b837b34654758a0e394ffdfaa90e /Source/charon/event_queue.c | |
parent | 79538669625bbae26fcef5d791b2246242c5a407 (diff) | |
download | strongswan-6c4b815f22341ad3c2574b42a64b39e16ef1e7c7.tar.bz2 strongswan-6c4b815f22341ad3c2574b42a64b39e16ef1e7c7.tar.xz |
- memory allocation now works with allocator-functions...
Diffstat (limited to 'Source/charon/event_queue.c')
-rw-r--r-- | Source/charon/event_queue.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/charon/event_queue.c b/Source/charon/event_queue.c index d086bf44f..a4dd5980d 100644 --- a/Source/charon/event_queue.c +++ b/Source/charon/event_queue.c @@ -26,7 +26,7 @@ #include <pthread.h> #include <stdlib.h> - +#include "allocator.h" #include "types.h" #include "event_queue.h" #include "linked_list.h" @@ -85,7 +85,7 @@ static status_t event_destroy(event_t *event) */ static event_t *event_create(timeval_t time, job_t *job) { - event_t *this = allocator_alloc_thing(event_t, "event_t"); + event_t *this = allocator_alloc_thing(event_t); this->destroy = event_destroy; @@ -361,7 +361,7 @@ event_queue_t *event_queue_create() return NULL; } - private_event_queue_t *this = allocator_alloc_thing(private_event_queue_t, "private_event_queue_t"); + private_event_queue_t *this = allocator_alloc_thing(private_event_queue_t); if (this == NULL) { linked_list->destroy(linked_list); |