|
From: Ivan S. <isj...@i1...> - 2006-12-05 08:50:18
|
On Tuesday 05 December 2006 05:40, Abdul Qadir wrote: > I need to know how can I check memroy leak in radiusd > I use the following command > valgrind --leak-check=full --num-callers=12 radiusd -X > > But I think valgrind only shows u memory leak after you exit the program. > But I don't know how to quit radiusd so that valgrind ca dectect the leak > in it. Is there any workaround for this. Most server programs cleans up and shuts down when they receive SIGTERM. Have you tried that? |