aboutsummaryrefslogtreecommitdiffstats
path: root/utils/Makefile.in
diff options
context:
space:
mode:
authorcebka@mailsupport.rambler.ru <cebka@mailsupport.rambler.ru>2008-09-23 11:47:56 +0400
committercebka@mailsupport.rambler.ru <cebka@mailsupport.rambler.ru>2008-09-23 11:47:56 +0400
commit193acf73e51b24ccca8048ebb6aaec2971594268 (patch)
treea094617b2bb6c5d867584830f2ac4c6fa5f7b8fa /utils/Makefile.in
parent2b65ae425b9dca345bea158471b358d3c17b9704 (diff)
downloadrspamd-193acf73e51b24ccca8048ebb6aaec2971594268.tar.gz
rspamd-193acf73e51b24ccca8048ebb6aaec2971594268.zip
* Small updates to memory pool library
- fix cases when new chunk is allocated - add memory pool allocator statistics - let it work in multi-threaded environment - add strdup function for convinience * Use memory pool allocator more widely to avoid memory leaks in future and optimize performance * Task pool chunk size is now pre-defined constant (16 Kb currently)
Diffstat (limited to 'utils/Makefile.in')
-rw-r--r--utils/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/Makefile.in b/utils/Makefile.in
index 86f3eab60..4ceb18ae1 100644
--- a/utils/Makefile.in
+++ b/utils/Makefile.in
@@ -3,7 +3,7 @@
all: url_extracter
url_extracter: $(OBJECTS) ../url.o ../util.o
- $(CC) $(PTHREAD_LDFLAGS) $(LDFLAGS) $(OBJECTS) ../url.o ../util.o $(LIBS) -o url_extracter
+ $(CC) $(PTHREAD_LDFLAGS) $(LDFLAGS) $(OBJECTS) ../url.o ../util.o ../mem_pool.o $(LIBS) -o url_extracter
clean:
rm -f *.o url_extracter *.core