Operating System - HP-UX
1836372 Members
2187 Online
110100 Solutions
New Discussion

Doubt in HP-UX Top command

 
aneesha
Occasional Contributor

Doubt in HP-UX Top command

Hi,

Can any one explain me with the SIZE ,RES headers of top output..

TIA
2 REPLIES 2
Fred Metcalf
Trusted Contributor

Re: Doubt in HP-UX Top command

Hi Aneesha,
You are in the wrong forum, this forum is for the HP e3000 servers running the MPE/iX operating system. You may have some luck, most of the members here are migrating to HP-UX. Try the HP-UX forum. Regards Fred
Missing MPE :-)
A. Clay Stephenson
Acclaimed Contributor

Re: Doubt in HP-UX Top command

Bear in mind that HP-UX is a virtual-memory based, demand paging system. This means that at any one time it is possible to have many more processes running (okay some are running, some are sleeping) than will actually fit within physical memory. The "SIZE" refers to the total virtual memory size of the process if it were all loaded. It can include text, stack, data, shared memory, and memory mapped files. Bear in mind that much of this space might be shared with other processes. Consider running 30 instances of vi, all of these would use the same code (text), and use the same shared library functions. However, each would have private data and stack segments and this is what "RES" refers to.
If it ain't broke, I can fix that.