I'm thinking of using a Perl program as a daemon on Linux. It'll periodically be using fork() to create separate processes and these separate processes will all die off within the next half our or so, after they've done their job.

I will be telling the OS that I do NOT want to wait on the child processes when they die, so I should have no zombies in the status table.

From what I've read, it appears that when a child processes I created with fork() dies, it'll release all the memory I used. I see that on something like Windows, it's a pseudo-process that will keep some memory tied up, but I don't see anything stating that for Linux.

Could someone please confirm this for me? In other words, if I have a Perl daemon on Linux, and it forks() child processes which later die, will this continual forking create a memory leak, or would I be okay with a number of child processes that tend to die off?


In reply to Memory Usage with fork() on Linux by HalNineThousand

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.