Ask a Question related to UNIX Programming, Design and Development.
-
qazmlp #1
Order of memory segments
Is the order of memory segments(text, data, BSS, heap) guaranteed to
be same in any unix memory model ?
qazmlp Guest
-
preloading in segments
How can I preload a flashwebsite in segments? I'm building a website with 9 'rooms'. The background and the main navigation are the same in all the... -
IPC : destroy IPC::ShareLite-segments
I use IPC::ShareLite-segments but havnt figured out an elegant way to destroy the created segments. The recommended way (manpage) always fails with... -
How many rollback segments can a transaction use?
Oracle8(TM) Server Concepts " When a transaction runs out of space in the current extent and needs to continue writing, Oracle finds an available... -
newbie DBA - rollback segments
I'm new to the oracle dba roll, so please be gentle. I load several large tables every night. My database is only about 20gB and is 24x7. I... -
mapping segments to sessions
I am trying to trace segment growth in the temp tablespace back to a specific session. The tablespace will grow rapidly (40Gb) without warning. I... -
Måns Rullgård #2
Re: Order of memory segments
[email]qazmlp1209@rediffmail.com[/email] (qazmlp) writes:
I can't imagine that it would.> Is the order of memory segments(text, data, BSS, heap) guaranteed to
> be same in any unix memory model ?
--
Måns Rullgård
[email]mru@users.sf.net[/email]
Måns Rullgård Guest
-
Rainer Temme #3
Re: Order of memory segments
"qazmlp" <qazmlp1209@rediffmail.com> wrote:
Hi qazmlp,> Is the order of memory segments(text, data, BSS, heap) guaranteed to
> be same in any unix memory model ?
Neither is this order guaranteed nor is this order used by all systems
today...
Just think about how the dynamic loader works, if you use
dlopen() dlsym() within a prog... it's quite obvious that
text-segs and data-segs will appear mixed...
If you have access to a linux-system have a look
at /proc/some_pid/maps
( cat /proc/XXXXX/maps ) ... replace XXX with a legal
pid )
regards ... rainer
Rainer Temme Guest
-
Eric Sosman #4
Re: Order of memory segments
qazmlp wrote:
Given the existence of dlopen(), I don't see how any>
> Is the order of memory segments(text, data, BSS, heap) guaranteed to
> be same in any unix memory model ?
particular order could be guaranteed.
--
[email]Eric.Sosman@sun.com[/email]
Eric Sosman Guest



Reply With Quote

