From b6b768f52153f95ed96980b3eb019d9eec340b6c Mon Sep 17 00:00:00 2001 From: James Bursa Date: Sun, 3 Dec 2006 22:34:26 +0000 Subject: Improved tracking of memory usage. c->size is now exclusive of talloc size, and the two are added to find the full size. svn path=/trunk/netsurf/; revision=3103 --- content/content.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'content/content.c') diff --git a/content/content.c b/content/content.c index 5e915075e..0f23d25cc 100644 --- a/content/content.c +++ b/content/content.c @@ -373,7 +373,7 @@ struct content * content_create(const char *url) c->refresh = 0; c->bitmap = 0; c->fresh = false; - c->size = sizeof(struct content); + c->size = 0; c->title = 0; c->active = 0; user_sentinel->callback = 0; @@ -641,7 +641,6 @@ bool content_process_data(struct content *c, const char *data, } memcpy(c->source_data + c->source_size, data, size); c->source_size += size; - c->size += size; if (handler_map[c->type].process_data) { if (!handler_map[c->type].process_data(c, @@ -701,8 +700,6 @@ void content_convert(struct content *c, int width, int height) } c->locked = false; - c->size = talloc_total_size(c); - assert(c->status == CONTENT_STATUS_READY || c->status == CONTENT_STATUS_DONE); content_broadcast(c, CONTENT_MSG_READY, msg_data); @@ -779,14 +776,14 @@ void content_clean(void) next = 0; for (c = content_list; c; c = c->next) { next = c; - size += c->size; + size += c->size + talloc_total_size(c); } for (c = next; c && (unsigned int) option_memory_cache_size < size; c = prev) { prev = c->prev; if (c->user_list->next) continue; - size -= c->size; + size -= c->size + talloc_total_size(c); content_destroy(c); } } @@ -836,7 +833,7 @@ void content_reset(struct content *c) handler_map[c->type].destroy(c); c->type = CONTENT_UNKNOWN; c->status = CONTENT_STATUS_TYPE_UNKNOWN; - c->size = sizeof(struct content); + c->size = 0; talloc_free(c->mime_type); c->mime_type = 0; } -- cgit v1.2.3