Ask a Question related to Linux / Unix Administration, Design and Development.
-
Alex Shi #1
question for a column of ps reporting
Hi,
What does WCHAN mean in ps reporting? In this column, what does
"schedu" mean? Why a process is set to "schedu" or just "-"?
Alex
Alex Shi Guest
-
Datagrid column question
I have a problem with my datagrid columns populating with content. Here's the xml structure: Code: <headline>Bridgeport... -
Quiz reporting question
Is it possible to lock down the email messages that are generated once a Captivate Quiz is completed so that users can not edit the message? //... -
Table column question
Right now I'm using this code on the display page and it is giving me a list of role profiles under a job family heading. It works fine but when... -
One Question - which column?
Ok, how about just one of the previous questions. Here are the columns in my datagrid: <Columns> <asp:BoundColumn Visible="False"... -
datagrid question: template column
how to capture button click event (created under template column) ? should i used javascript? could you give me sample program? and is it possible... -
Doug Freyburger #2
Re: question for a column of ps reporting
Alex Shi wrote:
Did you try reading the man page? Here's the exerpt from AIX:>
> What does WCHAN mean in ps reporting? In this column, what does
> "schedu" mean? Why a process is set to "schedu" or just "-"?
WCHAN
(-l flag) The event for which the process or kernel thread is waiting or
sleeping. For a kernel thread, this field is blank if the kernel thread is
running. For a process, the wait channel is defined as the wait channel of the
sleeping kernel thread if only one kernel thread is sleeping; otherwise a star
is displayed.
WCHAN
(l flag) The event on which process is waiting (an address in the system). A
symbol is chosen that classifies the address, unless numerical output is
requested.
So it's what the thread is waiting for. Looks like you chose the
option to classify the address to get "schedu". Your vendor's
man page should define that but my best guess is it means the
thread is runable and waiting to get scheduled some runtime.
Doug Freyburger Guest
-
John DuBois #3
Re: question for a column of ps reporting
In article <tZlLc.10276$OD2.4249@nntp-post.primus.ca>,
Alex Shi <chpshi@stonix.com> wrote:That's the "wait channel". When a process requests some service from the>What does WCHAN mean in ps reporting?
kernel that can't be satisfied immediately (for example, input from a tty, a
block from some file that must be read from disk, or even an explicit request
to sleep for a while), it is put to sleep. Whatever puts the process to sleep
(a driver or some other part of the kernel) selects an address to use as a
"tag" for the event that will eventually wake it up. When the event occurs,
any processes waiting on that address will be waked up.
If there's no wait channel, the process is in some state other than waiting on> In this column, what does "schedu" mean? Why a process is set to "schedu"
> or just "-"?
an event at its own request. It might be running, suspended, in the process of
being created or destroyed, waiting for blocks of its executable to be paged
in, running under a debugger, etc.
John
--
John DuBois [email]spcecdt@armory.com[/email] KC6QKZ/AE [url]http://www.armory.com/~spcecdt/[/url]
John DuBois Guest



Reply With Quote

