Using Valgrind with already running process


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Using Valgrind with already running process
# 1  
Old 09-23-2013
Using Valgrind with already running process

I have a process(c program) which runs as daemon and is causing memory leak.
Is there any way to detect memory leak in this already running process?
Just like we attach gdb to a live process to debug it, can I use valgrind to detect memory leak in such live process?

When I tried using valgrind to such a live process it gives me error "< Process Name> instance already running...".
# 2  
Old 09-24-2013
How do you know the leak is happening?
Does your process crashes everytime it's run after certain time or is there a trigger which results into a crash/abort for "ENOMEM" ??
This User Gave Thanks to Praveen_218 For This Post:
# 3  
Old 09-24-2013
The output of top command for the process daemon shows an increased memory usage from 6 mb the normal usage to 800mb when the daemon is utilized.
After the daemon utilization completes still the memory usage shown is 800 mb and it does not drop down.
# 4  
Old 09-25-2013
Ok. Yes seems to be memory leak case.
But then what is the trigger or is it always expanding in every run?

If you know the trigger which is causing the issue, you would easily zero in on to the affected code area.

So far I'm not aware if Valgrind could be attached to a running process like gdb but I know that it could generate good enough stats with function wise memory usage reports.

Need to look at the Valgrind manual.

Why, btw, you wanted to attach the daemon when you could have just run the same in the Valgrind environment from the command line itself?

Last edited by Praveen_218; 09-25-2013 at 04:03 AM.. Reason: Typo
This User Gave Thanks to Praveen_218 For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Command to get exact tomcat process I am running ignoring other java process

Team, I have multiple batchjobs running in VM, if I do ps -ef |grep java or tomcat I am getting multiple process list. How do I get my exact tomcat process running and that is unique? via shell script? (4 Replies)
Discussion started by: Ghanshyam Ratho
4 Replies

2. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (6 Replies)
Discussion started by: naveeng
6 Replies

3. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (1 Reply)
Discussion started by: naveeng
1 Replies

4. BSD

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (0 Replies)
Discussion started by: naveeng
0 Replies

5. UNIX for Dummies Questions & Answers

How a process can check if a particular process is running on different machine?

I have process1 running on one machine and generating some log file. Now another process which can be launched on any machine wants to know if process1 is running or not and also in case it is running it wants to stream the logs file generated by process1 on terminal from which process2 is... (2 Replies)
Discussion started by: saurabhnsit2001
2 Replies

6. UNIX for Dummies Questions & Answers

Running different process from current process?

I have been having some trouble trying to get some code working, so I was wondering...what system calls are required to execute a different program from an already running process? (1 Reply)
Discussion started by: Midwest Product
1 Replies

7. Ubuntu

valgrind

Hello, I want to install and run a tool called Daikon on my Ubuntu(latest version) While compiling I got this error--------> checking the GLIBC_VERSION version... unsupported version configure: error: Valgrind requires glibc version 2.2 - 2.11 make: *** Error 1 make: Leaving directory... (3 Replies)
Discussion started by: paramad
3 Replies

8. Programming

Valgrind error

I get this Valgrind error while using malloc but if I use calloc then there is no error. I allocate 8 bytes for the string inside sprintf, 12 for the ip and 1 for the string terminator. This totals 21, so why is it talking about 20 bytes and 18 bytes ? Partial code: char ip =... (3 Replies)
Discussion started by: cyler
3 Replies

9. Shell Programming and Scripting

script to monitor process running on server and posting a mail if any process is dead

Hello all, I would be happy if any one could help me with a shell script that would determine all the processes running on a Unix server and post a mail if any of the process is not running or aborted. Thanks in advance Regards, pradeep kulkarni. :mad: (13 Replies)
Discussion started by: pradeepmacha
13 Replies

10. UNIX for Advanced & Expert Users

How to create a dummy process of a process already running?

Hi Everybody, I want to create a shell script named as say "jip" and it is runned. And i want that when i do ps + grep for the process than this jip should be shown as process. Infact there might be process with name jip which is already running. (3 Replies)
Discussion started by: shambhu
3 Replies
Login or Register to Ask a Question