Sponsored Content
Full Discussion: Solaris Top Command
Operating Systems Solaris Solaris Top Command Post 302224087 by jlliagre on Tuesday 12th of August 2008 07:50:27 AM
Old 08-12-2008
You might prefer to use "prstat", which has several features you won't find with top (and reciprocally ...).
 

9 More Discussions You Might Find Interesting

1. Solaris

How to Install Solaris 10 on top of Windows system

Hi Guru's, Since Iam learning Solaris 10 and want to instal it on to my computer in which 'Windows' is already installed. Also many other applications including Oracle, Java etc,. were also installed associated with Windows. Now how can I install Solaris 10 on my system with out affecting my... (4 Replies)
Discussion started by: Lokesha
4 Replies

2. Solaris

top for Solaris 10

I need some information for the top statistics being displayed in Solaris 10 they look like the following CPU states: 92.0% idle, 3.3% user, 4.7% kernel, 0.0% iowait, 0.0% swap Memory: 8192M real, 216M free, 9208M swap in use, 1236M swap free I need to know what does 0.0% swap means.... (1 Reply)
Discussion started by: raman1605
1 Replies

3. Solaris

syslogd 30% utilization in top, solaris 9

Hi folks, Sorry to barge in and ask a question right off the bat without contributing first. I have a V440, 4 X 1GHZ, 32GB ram, and recently syslogd has started showing 30+ % cpu usage. It's also repeating entries in the syslog, over and over. the /var/log/syslog file had grown to over 2GB - I... (2 Replies)
Discussion started by: chugheshc
2 Replies

4. UNIX for Dummies Questions & Answers

start top command in "solaris mode"

Ever noticed that using the top command on a multiple cpu box can often give totally misleading answers, like 230%, when you think that 100% should be the max? Well, that's because top has a bizarre mode called "Irix mode" wherein if you have 4 cpus, the %CPU column of top can go up to 400%. I... (1 Reply)
Discussion started by: fabulous2
1 Replies

5. Solaris

Looking for the top Solaris specific commands

I am changing jobs and need to know a little about Solaris specific commands. I come from AIX and we have commands like errpt, smit, and lsattr that are AIX specific. Any help is appreciated. (4 Replies)
Discussion started by: biznatch
4 Replies

6. AIX

Top command in AIX 4.2 (no topas, no nmon, no top)?

Is there a 'top' command equivalent in AIX 4.2 ? I already checked and I do not see the following ones anywhere: top nmon topas (1 Reply)
Discussion started by: Browser_ice
1 Replies

7. Shell Programming and Scripting

Command to find the Memory and CPU utilization using 'top' command

Hi all, I found like top command could be used to find the Memory and CPU utilization. But i want to know how to find the Memory and CPU utilization for a particular user using top command. Thanks in advance. Thanks, Ananthi.U (2 Replies)
Discussion started by: ananthi_ku
2 Replies

8. Solaris

HELP - memory usage on Solaris : ps -efl and top

Hi all, OS Version: SunOS <hostname> 5.10 Generic_142900-13 sun4v sparc SUNW,Sun-Blade-T6340 I need some expert guidance on investigating memory usage on Solaris. I want to know whether am interpreting the output from ps -efl correctly and whether the command top is showing the right... (3 Replies)
Discussion started by: newbie_01
3 Replies

9. Solaris

Solaris Crontab & TOP output

Hello Guru's I'm trying to take the output of solaris top command and output to a txt file every few minutes. The issue that I'm experiencing is that I can run the following: #!/bin/bash # logfile="/usr/mvf/morris/top.log" # echo... (2 Replies)
Discussion started by: littlemorris
2 Replies
QValueStack(3qt)														  QValueStack(3qt)

NAME
QValueStack - Value-based template class that provides a stack SYNOPSIS
All the functions in this class are reentrant when Qt is built with thread support.</p> #include <qvaluestack.h> Inherits QValueList<T>. Public Members QValueStack () ~QValueStack () void push ( const T & d ) T pop () T & top () const T & top () const DESCRIPTION
The QValueStack class is a value-based template class that provides a stack. Define a template instance QValueStack<X> to create a stack of values that all have the class X. QValueStack is part of the Qt Template Library. Note that QValueStack does not store pointers to the members of the stack; it holds a copy of every member. That is why these kinds of classes are called "value based"; QPtrStack, QPtrList, QDict, etc., are "pointer based". A stack is a last in, first out (LIFO) structure. Items are added to the top of the stack with push() and retrieved from the top with pop(). The top() function provides access to the topmost item without removing it. Example: QValueStack<int> stack; stack.push( 1 ); stack.push( 2 ); stack.push( 3 ); while ( ! stack.isEmpty() ) cout << "Item: " << stack.pop() << endl; // Output: // Item: 3 // Item: 2 // Item: 1 QValueStack is a specialized QValueList provided for convenience. All of QValueList's functionality also applies to QPtrStack, for example the facility to iterate over all elements using QValueStack<T>::Iterator. See QValueListIterator for further details. Some classes cannot be used within a QValueStack, for example everything derived from QObject and thus all classes that implement widgets. Only values can be used in a QValueStack. To qualify as a value, the class must provide a copy constructor; an assignment operator; a default constructor, i.e. a constructor that does not take any arguments. Note that C++ defaults to field-by-field assignment operators and copy constructors if no explicit version is supplied. In many cases this is sufficient. See also Qt Template Library Classes, Implicitly and Explicitly Shared Classes, and Non-GUI Classes. MEMBER FUNCTION DOCUMENTATION
QValueStack::QValueStack () Constructs an empty stack. QValueStack::~QValueStack () Destroys the stack. References to the values in the stack and all iterators of this stack become invalidated. Because QValueStack is highly tuned for performance, you won't see warnings if you use invalid iterators because it is impossible for an iterator to check whether or not it is valid. T QValueStack::pop () Removes the top item from the stack and returns it. See also top() and push(). void QValueStack::push ( const T & d ) Adds element, d, to the top of the stack. Last in, first out. This function is equivalent to append(). See also pop() and top(). T &; QValueStack::top () Returns a reference to the top item of the stack or the item referenced by end() if no such item exists. Note that you must not change the value the end() iterator points to. This function is equivalent to last(). See also pop(), push(), and QValueList::fromLast(). const T &; QValueStack::top () const This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Returns a reference to the top item of the stack or the item referenced by end() if no such item exists. This function is equivalent to last(). See also pop(), push(), and QValueList::fromLast(). SEE ALSO
http://doc.trolltech.com/qvaluestack.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qvaluestack.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QValueStack(3qt)
All times are GMT -4. The time now is 12:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy