Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

leaktracer(1) [debian man page]

LeakTracer(1)															     LeakTracer(1)

NAME
LeakTracer - a memory-usage debugger for C++ programs SYNOPSIS
LeakCheck program [ program arguments ... ] leak-analyze program [ leak.out ] [ main ] [ program arguments ... ] DESCRIPTION
This manual page documents briefly the LeakCheck and leak-analyze commands. This manual page was written for the Debian distribution because the original program does not have a manual page. Instead, it has docu- mentation in the HTML format; see below. LeakCheck is a small script that executes a C++ program while logging informations about calls to new and delete into a leak.out file. leak-analyze gives a human-readable report of the contents of a leak.out file, by calling gdb(1) to display the faulty lines. OPTIONS
These programs accept no special options. For an explanation of the possible arguments to leak-analyze, see the full documentation. SEE ALSO
The official documentation in /usr/share/doc/leaktracer/README.*, available both in HTML and plain text. gdb(1) AUTHOR
This manual page was written by Yann Dirson <dirson@debian.org> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1, as published by the Free Software Foundation, with no Invariant Sections, no Front-Cover Texts and no Back-Cover Texts. 23 March 2006 LeakTracer(1)

Check Out this Related Man Page

DOSSIZOLA(6)															      DOSSIZOLA(6)

NAME
dossizola - Isola game with nice graphics SYNOPSIS
dossizola [ -h ] [ -f ] [ -w ] DESCRIPTION
This manual page documents briefly the dossizola command. This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. The goal of the Isola game is to block the opponent by destroying the squares which surround him. In each turn, each player must first move to one of the squares adjacent to his current position, and then destroy a square of his choice. The first player who is unable to move loses. Do'SSi Zo'la provides several extension to the original rules, by allowing several moves and/or to destroy several squares in each turn. OPTIONS
-h Show summary of options. -f Run in full-screen mode. -w Run in windowed mode. AUTHOR
This program was written by Cyril Clement <dossiman@users.sourceforge.net> and Gaelle Daireaux <ponstyl@users.sourceforge.net>. This manual page was written by Yann Dirson <dirson@debian.org> for the Debian GNU/Linux system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1, as published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts and no Back-Cover Texts. A copy of the license can be found under /usr/share/common-licenses/FDL. 06 November 2010 DOSSIZOLA(6)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Check memory leak

I am running c++ code on AIX unix.I have a doubt that my code is using some memory but it is not clearing that.Some time i am getting heap allocation problem.In my code i am not using any malloc,new functions also i am justing using pointers and arrays. Is there any way i can find out if the... (2 Replies)
Discussion started by: ukatru
2 Replies

2. Programming

how to check memory leak in C program under Unix

Hi, How to detect memory leak in C program under unix ? Thanks (6 Replies)
Discussion started by: useless79
6 Replies

3. Programming

[C] help with string handling memory leak

Ok, so I've been trying to figure out my fualt in this code for probably a week now. Hopefully somebody will see what I couldn't see. Anyways, any help would be greatly appreciated. Lets begin. void serverStatus( const char* data ) { char* s ; int i, l = 0 ; ... (3 Replies)
Discussion started by: VRoemer
3 Replies

4. UNIX for Advanced & Expert Users

Memory leak while using pthread_cancel()

I tried to execute a sample pthread program to cancel a newly created one using pthread_cancel(). but using valgrind on my code shows some memory leak. My Code: #include "iostream" #include "unistd.h" #include "pthread.h" #include "signal.h" using namespace std; void handler(int); void*... (4 Replies)
Discussion started by: kcr
4 Replies

5. UNIX for Advanced & Expert Users

Memory leak in pthread

helo frnds, I am using RHEL5 and C lang for development. I am getting some memory leak problem in pthread. I hav developed a program which creates two threads for listening purpose on two diff ports. both the child threads are doing same job but on diff port no. I am using... (4 Replies)
Discussion started by: mindTeaser
4 Replies

6. UNIX for Advanced & Expert Users

Need to create a memory leak

Hi. This might be a strange request, but does anyone have any idea on a simple shell script that would use more and more memory as it ran? Like a purposeful leak. I want to test the behaviour of an already running program when the machine runs out of memory. Thanks! (4 Replies)
Discussion started by: rebelbuttmunch
4 Replies

7. Programming

memory leak problem

hi all Can any one plz explain me about memory leak problem Thankx (5 Replies)
Discussion started by: sonali
5 Replies

8. HP-UX

Problem with memory leak

Hi, This is my 1st post here. I am facing a rather weired problem. I have a C++ binary running on HP-UX. The output of top as well as glance shows periodic increase in memory. But when i use gdb to detect it, i dont get the desired output...gdb says...no leaks found. Just to mention that I have... (2 Replies)
Discussion started by: kshk123
2 Replies

9. Solaris

Programatically read 'size' shown in top?

How can the 'size' of a process, that is shown by 'top', be read programatically? I'm fixing a memory leak in a large (20,000 lines) program. (The main.cpp is itself 7400 lines!). (3 Replies)
Discussion started by: douglaskbell
3 Replies

10. AIX

valgrind - pthread memory leaks on AIX

Hi all, I have written a small code just to invoke main and return immediately. When built with libpthread on AIX box, valgrind throws lots of memory leak errors. But when built without libpthread, no issues at all. Here is the sample run for your look. Any idea where I might be going wrong?... (3 Replies)
Discussion started by: visionofarun
3 Replies

11. Red Hat

centOS memory leak - MEGABYTES per day

hi i've notice a huge problem on my newly installed centOS server and i have no idea how to solve it and where to start.. memory on server 3 GB and it goes down, down, down.. after reboot it shows 71mb used after a hour its 76mb and after 24h it's around 200 later = more i have NO idea... (7 Replies)
Discussion started by: tip78
7 Replies

12. Shell Programming and Scripting

sed delete

I am not able to analyze the below code.. What I expected is that DELETED will be replaced with the first field in every line.But after giving a try, the output was different. Can anyone pleas analyze and explain the code in detail? Many thanks... $ sed 's/* /DELETED /g' g1.txt > g4.txt... (2 Replies)
Discussion started by: giridhar276
2 Replies

13. UNIX for Dummies Questions & Answers

analyze lines in a file by loop

Hi Dears, I use the below code to analyze lines in a file: for line in `cat ucsv` do echo $line //analyze statements donehowever, if line contains space char, it will be broken. for example, if file content is: #login,full name,email,project,role,action gmwen,Bruce... (3 Replies)
Discussion started by: crest.boy
3 Replies

14. Web Development

Finding Cause of Memory Leak

Hi We have just got a dedicated server with Fasthosts, O/S is Linux CentOS 6 64 bit. It was a fresh install and I have just moved one WordPress site onto there. The problem is we seem to be getting a memory leak (that's what Fasthosts said) and the database (I think) keeps crashing, so we... (3 Replies)
Discussion started by: Pokeyzx
3 Replies

15. UNIX for Dummies Questions & Answers

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... (3 Replies)
Discussion started by: rupeshkp728
3 Replies