Thread: free store?

  1. #1
    Registered User
    Join Date
    Dec 2001
    Posts
    104

    free store?

    I've come across this term that deals with dynamically allocted memory, but I can't seem to find a definition for it or a definitive explaination as to what it is. Can anyone help by providing a definition and/or explaination of what it is and/or what it refers to?

  2. #2
    Grammar Police HybridM's Avatar
    Join Date
    Jan 2003
    Posts
    355
    Well someone will have to confirm, but presumably it refers to the memory the OS gives your program. When you execute a program the OS allocates you a certain amount of RAM for your program to use, and this is called the free store.
    Thor's self help tip:
    Maybe a neighbor is tossing leaf clippings on your lawn, looking at your woman, or harboring desires regarding your longboat. You enslave his children, set his house on fire. He shall not bother you again.

    OS: Windows XP
    Compiler: MSVC

  3. #3
    Registered User major_small's Avatar
    Join Date
    May 2003
    Posts
    2,787
    from http://cplus.about.com/library/gloss...free_store.htm

    free store
    <Back to Last Page> <Full Glossary> Related Terms
    • dynamic memory allocation
    • heap
    • malloc
    • new






    Definition: A pool of memory used for dynamic memory allocation. Blocks of memory from this area are allocated for program use during execution using the new operator in C++ and the malloc function in C.

    Also Known As: heap
    Join is in our Unofficial Cprog IRC channel
    Server: irc.phoenixradio.org
    Channel: #Tech


    Team Cprog Folding@Home: Team #43476
    Download it Here
    Detailed Stats Here
    More Detailed Stats
    52 Members so far, are YOU a member?
    Current team score: 1223226 (ranked 374 of 45152)

    The CBoard team is doing better than 99.16% of the other teams
    Top 5 Members: Xterria(518175), pianorain(118517), Bennet(64957), JaWiB(55610), alphaoide(44374)

    Last Updated on: Wed, 30 Aug, 2006 @ 2:30 PM EDT

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. free() doesn't seem to work...
    By AlienJedi in forum C Programming
    Replies: 10
    Last Post: 01-29-2008, 05:27 PM
  2. Free Store of memory
    By George2 in forum C++ Programming
    Replies: 6
    Last Post: 11-12-2007, 02:27 PM
  3. How to free memory in this program
    By Coconut in forum C Programming
    Replies: 1
    Last Post: 10-26-2002, 10:57 PM