All of lore.kernel.org
 help / color / mirror / Atom feed
* Stack information ...
@ 2002-02-15 11:45 Damien Touraine
  2002-02-15 13:07 ` Terje Eggestad
  0 siblings, 1 reply; 2+ messages in thread
From: Damien Touraine @ 2002-02-15 11:45 UTC (permalink / raw)
  To: linux-kernel

II would like to know if there is any way in Linux to monitor the stack 
of the current program ?
Ie : I would like to get the adress of the first element of the stack, 
the adress of the last one, the full size of the stack and so on.
Is-there a doc on the web on how to manage the stack ?

Moreover, I would also like to know how to get the information on the 
virtual memory used by the current process (the size of memory currently 
used by the process) ...

Friendly
    Damien TOURAINE


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Stack information ...
  2002-02-15 11:45 Stack information Damien Touraine
@ 2002-02-15 13:07 ` Terje Eggestad
  0 siblings, 0 replies; 2+ messages in thread
From: Terje Eggestad @ 2002-02-15 13:07 UTC (permalink / raw)
  To: Damien Touraine; +Cc: linux-kernel

Hi Damien

The current stack size is obtainable from /proc/pid/status (VmStk). 
If you need the VM addresses you need to make a hack, but you can start
by looking at the code for generation the status:
fs/proc/array.c:task_mem()

Note that with in C (gcc) you can get a hold of a bit of info:
see info gcc
	-> C extentions -> return address -> Getting the Return or Frame
Address of a Function

You can also use asm statement in C to inspect the stack, but you need
to do assembly....
 
The latter you get from /proc/.../maps and /status, and /statm (see man
proc)
also: ps -u -p pid 
VSZ is the virtual memory size, RSS is what is resident in phys memory. 

THreads is a bit trickier.

Terje

fre, 2002-02-15 kl. 12:45 skrev Damien Touraine:
> II would like to know if there is any way in Linux to monitor the stack 
> of the current program ?
> Ie : I would like to get the adress of the first element of the stack, 
> the adress of the last one, the full size of the stack and so on.
> Is-there a doc on the web on how to manage the stack ?
> 
> Moreover, I would also like to know how to get the information on the 
> virtual memory used by the current process (the size of memory currently 
> used by the process) ...
> 
> Friendly
>     Damien TOURAINE
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
-- 
_________________________________________________________________________

Terje Eggestad                  mailto:terje.eggestad@scali.no
Scali Scalable Linux Systems    http://www.scali.com

Olaf Helsets Vei 6              tel:    +47 22 62 89 61 (OFFICE)
P.O.Box 150, Oppsal                     +47 975 31 574  (MOBILE)
N-0619 Oslo                     fax:    +47 22 62 89 51
NORWAY            
_________________________________________________________________________


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-02-15 13:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-02-15 11:45 Stack information Damien Touraine
2002-02-15 13:07 ` Terje Eggestad

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.