Dstat: column ---system---: what does int and csw mean.


 
Thread Tools Search this Thread
Operating Systems Linux Dstat: column ---system---: what does int and csw mean.
# 1  
Old 01-29-2015
Dstat: column ---system---: what does int and csw mean.

Hello All

It has been some time sense I was last here.
Hopefully I have a few points left to get this question answered.

I am finding that dstat is a really great tool, but does any one know what "init" and "csw" mean under the column --system--.
I am not able to find anything in the man pages.

Code:
---system--
usr sys idl wai hiq siq| read  writ| recv  send|  in   out | int   csw
 25   2  74   0   0   0|   0     0 |4552B  536B|   0     0 |1198   545

---------- Post updated at 02:44 PM ---------- Previous update was at 11:26 AM ----------

Please close/disregard this question.

I am going to re post it in the redhat forum. So please answer there and not here.
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Red Hat

Dstat: column ---system---: what does int and csw mean.

Hello All It has been some time sense I was last here. Hopefully I have a few points left to get this question answered. I am finding that dstat is a really great tool, but does any one know what "init" and "csw" mean under the column --system--. I am not able to find anything in the man... (2 Replies)
Discussion started by: busi386
2 Replies

2. Programming

Handle int listen(int sockfd, int backlog) in TCP

Hi, from the manual listen(2): listen for connections on socket - Linux man page It has a parameter called backlog and it limits the maximum length of queue of pending list. If I set backlog to 128, is it means no more than 128 packets can be handled by server? If I have three... (3 Replies)
Discussion started by: sehang
3 Replies

3. UNIX for Dummies Questions & Answers

Help needed with CUPS+gutenprint from CSW

Hello team. I have just migrated from Linux Arch to Solaris 11 (OpenSolaris 2008.05). My Epson Stylus Photo R800 worked wonderfully in Linux ... oh woe is me in Solaris. I cannot print. I get: lp: Unsupported format 'text/plain'! The R800 drivers are not in gimpprint so I had to... (1 Reply)
Discussion started by: keratos
1 Replies

4. UNIX for Dummies Questions & Answers

System date to a column

Hello, I would like to write a scrip which gives System Date for a column, is there any function I can use to print the System date. Thanks in Advance Regards, Mahesh (4 Replies)
Discussion started by: gmahesh2k
4 Replies

5. Solaris

Solaris packages and .CSW files

Hello, I would like to know what are the *.CSW file for in a Solaris package or what is the "politic" of those files. I realized for example that when I install my package of Postfix, I have some postfix files created in /opt/csw/etc/postfix but some of them have the .CSW extension. This is... (0 Replies)
Discussion started by: Tex-Twil
0 Replies

6. UNIX for Dummies Questions & Answers

int open(const char *pathname, int flags, mode_t mode) doubt...

hello everybody! I want to create a file with permissions for read, write, and execute to everybody using C, so I write this code: #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> int main(){ int fileDescriptor; fileDescriptor =... (2 Replies)
Discussion started by: csnmgeek
2 Replies

7. Programming

difference between int ** func() and int *& func()

What is the difference between int** func() and int*& func(). Can you please explain it with suitable example. Thanks, Devesh. (1 Reply)
Discussion started by: devesh
1 Replies
Login or Register to Ask a Question
REMQUO(3)						   BSD Library Functions Manual 						 REMQUO(3)

NAME
remquo -- floating-point remainder and quotient function SYNOPSIS
#include <math.h> double remquo(double x, double y, int *quo); long double remquol(long double x, long double y, int *quo); float remquof(float x, float y, int *quo); DESCRIPTION
The remquo() functions compute the value r such that r = x - n*y, where n is the integer nearest the exact value of x/y. If there are two integers closest to x/y, n shall be the even one. If r is zero, it is given the same sign as x. This is the same value that is returned by the remainder() function. remquo() also calculates the lower seven bits of the integral quotient x/y, and gives that value the same sign as x/y. It stores this signed value in the object pointed to by quo. SPECIAL VALUES
remquo(x, y, quo) returns a NaN and raises the "invalid" floating-point exception if x is infinite or y is 0. VECTOR OPERATIONS
If you need to apply the remquo() function to SIMD vectors or arrays, using the following functions provided by the Accelerate.framework may give significantly better performance: #include <Accelerate/Accelerate.h> vFloat vremquo(vFloat x, vFloat y, vUInt32 *q); SEE ALSO
math(3), remainder(3) STANDARDS
The remquo() functions conform to ISO/IEC 9899:2011. BSD
December 11, 2006 BSD