473,385 Members | 1,474 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Memory Allocation : Static or Dynamic?

Which allocation (Static / Dynamic) is suitable for the situation when
we are trying to allocate for a overloaded memory when the memory is
full and no space to allocate.
What will happen if both the allocation is impossible.

Sworna vidhya
Jun 27 '08 #1
10 4366
On 8 May 2008 at 16:58, sw********************@gmail.com wrote:
Which allocation (Static / Dynamic) is suitable for the situation when
we are trying to allocate for a overloaded memory when the memory is
full and no space to allocate.
What will happen if both the allocation is impossible.
Definitely use dynamic allocation if there's a serious risk of running
out of memory (and as a general principle, don't allocate large arrays
on the stack). If malloc() fails, you can detect this (it will return a
null pointer) and attempt to recover or exit cleanly. If you run out of
static memory for your automatic variables, the most likely outcome is
that the heap will become corrupted without warning. If you're lucky,
your program will quickly segfault; if your unlucky, you could go on for
hours processing corrupted data.

What's going on is that in your process's virtual address space, memory
is arranged like this:

-----------------------
| |
| STACK |
| (grows downwards) |
| |
-----------------------
| |
| FREE MEMORY |
| (available for the |
| stack or heap) |
| |
-----------------------
| |
| HEAP |
| (grows upwards) |
| |
-----------------------

So if you run out of free memory and overflow the stack, you can see
that bad things will happen.

Jun 27 '08 #2
In article <4f**********************************@u6g2000prc.g ooglegroups.com>,
<sw********************@gmail.comwrote:
>Which allocation (Static / Dynamic) is suitable for the situation when
we are trying to allocate for a overloaded memory when the memory is
full and no space to allocate.
What will happen if both the allocation is impossible.
Sounds like a homework question to me...

But anyhow: The failure of dynamic allocation has well-defined
results: all of the dynamic allocation functions have methods
of indicating that they were unable to allocate more memory. This
allows you to cleanly detect and take action when memory is full.
Static memory has no defined method of indicating failure of
allocation, so you cannot cleanly detect and take action in
such cases.

If there is a failure of static memory allocation, then *some*
systems will generate a signal that can be handled through
the signal handling mechanism, but C89 at least does not define
a signal for this condition and does not document it as a
possibility, so any such signal would be an OS extension, not part of C
itself. And in C89, if the system itself raises any of the signals
defined specifically in C89, then behaviour of the program
after returning from the signal handler is undefined -- all of
the C89- defined signals are for conditions that are typically
fatal on most operating systems. (Note: if the program itself
used raise() to raise one of the C89- defined signals, then
returning from the signal handler -is- well defined.)

I would have to look up the details of the signals that C99 defines
to see if there are any of them for which returning from the signal
handler is well defined. C99 differs slightly from C89 in that
there are operations (such as overflow of a signed integer) that C89
just leaves the behaviour completely undefined, but for which C99
says that the behaviour is undefined or that the system may optionally
raise an implementation-defined signal. This is where the language
lawyers make their money, arguing about the difference between
behaviour that is -always- undefined, vs behaviour that the
implementation may define as being undefined!
--
"All human knowledge takes the form of interpretation."
-- Walter Benjamin
Jun 27 '08 #3
In article <sl*******************@nospam.invalid>,
Antoninus Twink <no****@nospam.invalidwrote:
>What's going on is that in your process's virtual address space, memory
is arranged like this:
>-----------------------
| |
| STACK |
| (grows downwards) |
| |
-----------------------
| |
| FREE MEMORY |
| (available for the |
| stack or heap) |
| |
-----------------------
| |
| HEAP |
| (grows upwards) |
| |
-----------------------
>So if you run out of free memory and overflow the stack, you can see
that bad things will happen.

You truly are an amazing mind-reader! I don't know how you do it!!
*Knowing* with certainty that the original poster is now and will
always be using a system on which the stack grows downwards
and the heap grows upwards.

It doesn't happen that way in the system I'm using right now (a
general-purpose system that at one time was the market leader in
several different computing niches), and it doesn't happen that way
when you start dealing with threads; and it isn't unusual for it not to
happen that way once you start considering where -exactly- shared
libraries get mapped into memory...

--
"It's a hard life sometimes and the biggest temptation is to let
how hard it is be an excuse to weaken." -- Walter Dean Myers
Jun 27 '08 #4
On 8 May 2008 at 18:37, Walter Roberson wrote:
It doesn't happen that way in the system I'm using right now (a
general-purpose system that at one time was the market leader in
several different computing niches), and it doesn't happen that way
when you start dealing with threads; and it isn't unusual for it not to
happen that way once you start considering where -exactly- shared
libraries get mapped into memory...
Nonetheless, as a schematic picture to have in mind, it's very valuable.

Jun 27 '08 #5
Walter Roberson wrote:
In article <sl*******************@nospam.invalid>,
Antoninus Twink <no****@nospam.invalidwrote:
>[...]
So if you run out of free memory and overflow the stack, you can see
that bad things will happen.


You truly are an amazing mind-reader! I don't know how you do it!!
*Knowing* with certainty that the original poster is now and will
always be using a system on which the stack grows downwards
and the heap grows upwards.
Not only that, he's discovered that static memory
is allocated on the stack!

--
Er*********@sun.com
Jun 27 '08 #6
On 8 May 2008 at 19:05, Eric Sosman wrote:
Not only that, he's discovered that static memory
is allocated on the stack!
Ahem, yeah, good spot... Maybe it's just because static and stack sound
alike, but certainly I read into the OP's question that he was
contrasting dynamic and automatic allocation.

Jun 27 '08 #7
Antoninus Twink wrote:
If you run out of
static memory for your automatic variables,
ITYM "static memory for your static variables,"
the most likely outcome is
that the heap will become corrupted without warning.
--
pete
Jun 27 '08 #8
On 8 May 2008 at 21:35, pete wrote:
Antoninus Twink wrote:
>If you run out of
static memory for your automatic variables,

ITYM "static memory for your static variables,"
ITIM "stack memory for your automatic variables"... it's been a long day
:)

Jun 27 '08 #9

<sw********************@gmail.comwrote in message
news:4f**********************************@u6g2000p rc.googlegroups.com...
Which allocation (Static / Dynamic) is suitable for the situation when
we are trying to allocate for a overloaded memory when the memory is
full and no space to allocate.
What will happen if both the allocation is impossible.
static memory is good for fixed-memory buffers (it will never need to be
freed or made any larger).

however, note that static memory is also allocated as a part of the app's
initial process image, so it will either be available, or the app will fail
somehow early in app startup (like, an app that as soon as you try to start
it, either the OS refuses to load it, it crashes, or the OS crashes).

also note that, because of the fixed nature of static memory, what is
located there can't be used by elsewhere (it is like putting a big crate in
ones' house... one can put things in the crate, but otherwise this space is
unusable, and would one rather have a house full of empty space, or filled
with odd-sized crates?...).

one is either limited by all these odd-sized crates, or all of these crates
form a big horrible mess...
otherwise, dynamic memory is a lot more adaptable, and I would recommend
this as a general rule unless one has some specific reason to use large
static buffers.

after all, if dynamic memory were not useful, why would it have been
implemented and used in the first place, when static memory is so much
simpler?...

Sworna vidhya

Jun 27 '08 #10
"Antoninus Twink" <no****@nospam.invalidwrote in message
On 8 May 2008 at 16:58, sw********************@gmail.com wrote:
>Which allocation (Static / Dynamic) is suitable for the situation when
we are trying to allocate for a overloaded memory when the memory is
full and no space to allocate.
What will happen if both the allocation is impossible.

Definitely use dynamic allocation if there's a serious risk of running
out of memory (and as a general principle, don't allocate large arrays
on the stack). If malloc() fails, you can detect this (it will return a
null pointer) and attempt to recover or exit cleanly.
Another good strategy is to allocate a big enough static array. Then the
program will not load at all if there isn't enough memory to run, and will
not exit with an error code.

--
Free games and programming goodies.
http://www.personal.leeds.ac.uk/~bgy1mm

Jun 27 '08 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: J Anderson | last post by:
Greetings, I was going through the quake2 source code (as you do) when I noticed arrays are statically allocated on the stack instead of being allocated dynamically. I’ve seen this before and...
9
by: Andrew Au | last post by:
Dear all, I am trying to write a piece of software that use Object Oriented design and implement it with C, I did the following == In Object.h == typedef struct ObjectStructure* Object; ...
5
by: swarsa | last post by:
Hi All, I realize this is not a Palm OS development forum, however, even though my question is about a Palm C program I'm writing, I believe the topics are relevant here. This is because I...
7
by: Michael | last post by:
Hi, What's the benefit to dynamically allocate memory? using namespace std; int main() { char* ptr; ptr="abc";
24
by: Ken | last post by:
In C programming, I want to know in what situations we should use static memory allocation instead of dynamic memory allocation. My understanding is that static memory allocation like using array...
1
by: Peterwkc | last post by:
Hello all expert, i have two program which make me desperate bu after i have noticed the forum, my future is become brightness back. By the way, my problem is like this i the first program was...
3
by: ranjeetasharma81 | last post by:
Hi all, I have a big C-cod, in which there are lots of dynamic memory allocation used. I want to replace dynamic memroy allocation by static arrays. The following are the problems that i am...
14
by: vivek | last post by:
i have some doubts on dynamic memory allocation and stacks and heaps where is the dynamic memory allocation used? in function calls there are some counters like "i" in the below function. Is...
0
by: abir | last post by:
I have a big dynamic sparse directed graph implementation where new nodes are added & old nodes are removed. Usually, at any moment of time the number of nodes in the graph and the number of edges...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.