c++ memory leak detection

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • __jakal__

    c++ memory leak detection

    Hello,
    Is there any good memory leak detection software for C++ available as a
    freeware...
    I had used purify but had to discontinue due to huge license fees...
    Also tried Sun workshop memory monitor........ its a kind of buggy as it
    doesnt detect most of the
    memory leaks.

    Cud anyone suggest some good memory leak detection software preferable
    freeware.

    Thanks
    jack


  • Christopher Benson-Manica

    #2
    Re: c++ memory leak detection

    __jakal__ <jakal@jakal.co m> spoke thus:
    [color=blue]
    > Is there any good memory leak detection software for C++ available as a
    > freeware...[/color]
    [color=blue]
    > Cud anyone suggest some good memory leak detection software preferable
    > freeware.[/color]

    (valgrind, I've heard, is quite nice.)

    Your post is off-topic for comp.lang.c++. Please visit




    for posting guidelines and frequently asked questions. Thank you.

    --
    Christopher Benson-Manica | I *should* know what I'm talking about - if I
    ataru(at)cybers pace.org | don't, I need to know. Flames welcome.

    Comment

    • Matt

      #3
      Re: c++ memory leak detection

      Christopher Benson-Manica wrote:[color=blue]
      > __jakal__ <jakal@jakal.co m> spoke thus:
      >
      >[color=green]
      >> Is there any good memory leak detection software for C++ available as a
      >>freeware...[/color]
      >
      >[color=green]
      >>Cud anyone suggest some good memory leak detection software preferable
      >>freeware.[/color]
      >
      >
      > (valgrind, I've heard, is quite nice.)
      >
      > Your post is off-topic for comp.lang.c++. Please visit
      >
      > http://www.slack.net/~shiva/welcome.txt
      > http://www.parashift.com/c++-faq-lite/
      >
      > for posting guidelines and frequently asked questions. Thank you.
      >[/color]

      I looked at those pages, but I don't see that the post is off-topic.
      Please explain how the post is off-topic.

      Comment

      • Karthik

        #4
        Re: c++ memory leak detection

        __jakal__ wrote:
        [color=blue]
        > Hello,
        > Is there any good memory leak detection software for C++ available as a
        > freeware...
        > I had used purify but had to discontinue due to huge license fees...
        > Also tried Sun workshop memory monitor........ its a kind of buggy as it
        > doesnt detect most of the
        > memory leaks.
        >
        > Cud anyone suggest some good memory leak detection software preferable
        > freeware.
        >
        > Thanks
        > jack
        >
        >[/color]

        Check out mtrace utility available on GNU/Linux .

        http://www.gnu.org/software/libc/man...on%20Debugging.


        --
        Karthik
        Humans please 'removeme_' for my real email.

        Comment

        • Christopher Benson-Manica

          #5
          Re: c++ memory leak detection

          Matt <matt@themattfe lla.zzzz.com> spoke thus:
          [color=blue]
          > I looked at those pages, but I don't see that the post is off-topic.
          > Please explain how the post is off-topic.[/color]

          comp.lang.c++ is about the standard C++ language. Third-party
          applications (such as those for finding memory leaks) aren't part of
          the language, and thus aren't discussed.

          --
          Christopher Benson-Manica | I *should* know what I'm talking about - if I
          ataru(at)cybers pace.org | don't, I need to know. Flames welcome.

          Comment

          • Matt

            #6
            Re: c++ memory leak detection

            Christopher Benson-Manica wrote:[color=blue]
            > Matt <matt@themattfe lla.zzzz.com> spoke thus:
            >
            >[color=green]
            >>I looked at those pages, but I don't see that the post is off-topic.
            >>Please explain how the post is off-topic.[/color]
            >
            >
            > comp.lang.c++ is about the standard C++ language. Third-party
            > applications (such as those for finding memory leaks) aren't part of
            > the language, and thus aren't discussed.
            >[/color]

            Can you provide a link to the group's charter?

            Comment

            • Buster

              #7
              Re: c++ memory leak detection

              Matt wrote:[color=blue]
              > Christopher Benson-Manica wrote:
              >[color=green]
              >> Matt <matt@themattfe lla.zzzz.com> spoke thus:
              >>[color=darkred]
              >>> I looked at those pages, but I don't see that the post is off-topic.
              >>> Please explain how the post is off-topic.[/color]
              >>
              >> comp.lang.c++ is about the standard C++ language. Third-party
              >> applications (such as those for finding memory leaks) aren't part of
              >> the language, and thus aren't discussed.[/color]
              >
              > Can you provide a link to the group's charter?[/color]

              IIRC, there's no charter. Just the welcome message and FAQ.

              --
              Regards,
              Buster.

              Comment

              • Daniel Sjöblom

                #8
                Re: c++ memory leak detection

                __jakal__ wrote:[color=blue]
                > Hello,
                > Is there any good memory leak detection software for C++ available as a
                > freeware...
                > I had used purify but had to discontinue due to huge license fees...
                > Also tried Sun workshop memory monitor........ its a kind of buggy as it
                > doesnt detect most of the
                > memory leaks.
                >
                > Cud anyone suggest some good memory leak detection software preferable
                > freeware.[/color]

                <OT>Valgrind is very good.</OT>
                --
                Daniel Sjöblom
                Remove _NOSPAM to reply by mail

                Comment

                • __jakal__

                  #9
                  Re: c++ memory leak detection

                  cud u suggest something for solaris 8


                  "Daniel Sjöblom" <dsjoblom@mbnet .fi_NOSPAM> wrote in message
                  news:4090bb6b$1 $11030$7b6a8dc4 @news.mbnet.fi. ..[color=blue]
                  > __jakal__ wrote:[color=green]
                  > > Hello,
                  > > Is there any good memory leak detection software for C++ available as[/color][/color]
                  a[color=blue][color=green]
                  > > freeware...
                  > > I had used purify but had to discontinue due to huge license fees...
                  > > Also tried Sun workshop memory monitor........ its a kind of buggy as it
                  > > doesnt detect most of the
                  > > memory leaks.
                  > >
                  > > Cud anyone suggest some good memory leak detection software preferable
                  > > freeware.[/color]
                  >
                  > <OT>Valgrind is very good.</OT>
                  > --
                  > Daniel Sjöblom
                  > Remove _NOSPAM to reply by mail[/color]


                  Comment

                  Working...