summaryrefslogtreecommitdiffstats
path: root/ksysguard/ksysguardd
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 20:16:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 20:16:47 +0000
commit495d08bc2db58ee7fc4ea55a7158f2f61b82fc56 (patch)
treedaabcb652c07b9a17cad88ca50b63a2d91ead4a3 /ksysguard/ksysguardd
parent50001f1757f97510e80cb1990e2f2d5b00144c2a (diff)
downloadtdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.tar.gz
tdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.zip
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1211357 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksysguard/ksysguardd')
-rw-r--r--ksysguard/ksysguardd/FreeBSD/ProcessList.c2
-rw-r--r--ksysguard/ksysguardd/Irix/ProcessList.c2
-rw-r--r--ksysguard/ksysguardd/Linux/Memory.c2
-rw-r--r--ksysguard/ksysguardd/Linux/ProcessList.c4
-rw-r--r--ksysguard/ksysguardd/Linux/lmsensors.c2
-rw-r--r--ksysguard/ksysguardd/Linux/stat.c2
-rw-r--r--ksysguard/ksysguardd/NetBSD/ProcessList.c2
-rw-r--r--ksysguard/ksysguardd/Porting-HOWTO4
-rw-r--r--ksysguard/ksysguardd/Solaris/ProcessList.c2
-rw-r--r--ksysguard/ksysguardd/ksysguardd.c2
10 files changed, 12 insertions, 12 deletions
diff --git a/ksysguard/ksysguardd/FreeBSD/ProcessList.c b/ksysguard/ksysguardd/FreeBSD/ProcessList.c
index f8d2c3ba6..ecd8ce4a6 100644
--- a/ksysguard/ksysguardd/FreeBSD/ProcessList.c
+++ b/ksysguard/ksysguardd/FreeBSD/ProcessList.c
@@ -405,7 +405,7 @@ updateProcessList(void)
void
printProcessListInfo(const char* cmd)
{
- fprintf(CurrentClient, "Name\tPID\tPPID\tUID\tGID\tStatus\tUser%%\tSystem%%\tNice\tVmSize\tVmRss\tLogin\tCommand\n");
+ fprintf(CurrentClient, "Name\tPID\tPPID\tUID\tGID\ttqStatus\tUser%%\tSystem%%\tNice\tVmSize\tVmRss\tLogin\tCommand\n");
fprintf(CurrentClient, "s\td\td\td\td\tS\tf\tf\td\tD\tD\ts\ts\n");
}
diff --git a/ksysguard/ksysguardd/Irix/ProcessList.c b/ksysguard/ksysguardd/Irix/ProcessList.c
index 523d87d26..1575e0153 100644
--- a/ksysguard/ksysguardd/Irix/ProcessList.c
+++ b/ksysguard/ksysguardd/Irix/ProcessList.c
@@ -317,7 +317,7 @@ int updateProcessList( void ) {
}
void printProcessListInfo( const char *cmd ) {
- fprintf(CurrentClient, "Name\tPID\tPPID\tGID\tStatus\tUser"
+ fprintf(CurrentClient, "Name\tPID\tPPID\tGID\ttqStatus\tUser"
"\tSize\tResident\t%% CPU\tPriority\tCommand\n" );
fprintf(CurrentClient, "s\td\td\td\ts\ts\tD\tD\tf\td\ts\n" );
}
diff --git a/ksysguard/ksysguardd/Linux/Memory.c b/ksysguard/ksysguardd/Linux/Memory.c
index 93c8d9edb..ba69a9fb6 100644
--- a/ksysguard/ksysguardd/Linux/Memory.c
+++ b/ksysguard/ksysguardd/Linux/Memory.c
@@ -103,7 +103,7 @@ int updateMemory( void )
{
/**
The amount of total and used memory is read from the /proc/meminfo.
- It also contains the information about the swap space.
+ It also tqcontains the information about the swap space.
The 'file' looks like this:
MemTotal: 516560 kB
diff --git a/ksysguard/ksysguardd/Linux/ProcessList.c b/ksysguard/ksysguardd/Linux/ProcessList.c
index e9e8c1315..069e931b1 100644
--- a/ksysguard/ksysguardd/Linux/ProcessList.c
+++ b/ksysguard/ksysguardd/Linux/ProcessList.c
@@ -137,7 +137,7 @@ static void validateStr( char* str )
++s;
}
- /* Make sure that string contains at least one character (blank). */
+ /* Make sure that string tqcontains at least one character (blank). */
if ( str[ 0 ] == '\0' )
strcpy( str, " " );
}
@@ -407,7 +407,7 @@ void exitProcessList( void )
void printProcessListInfo( const char* cmd )
{
(void)cmd;
- fprintf( CurrentClient, "Name\tPID\tPPID\tUID\tGID\tStatus\tUser%%\tSystem%%\tNice\tVmSize"
+ fprintf( CurrentClient, "Name\tPID\tPPID\tUID\tGID\ttqStatus\tUser%%\tSystem%%\tNice\tVmSize"
"\tVmRss\tLogin\tCommand\n" );
fprintf( CurrentClient, "s\td\td\td\td\tS\tf\tf\td\tD\tD\ts\ts\n" );
}
diff --git a/ksysguard/ksysguardd/Linux/lmsensors.c b/ksysguard/ksysguardd/Linux/lmsensors.c
index 37e41d2a1..0d34d735f 100644
--- a/ksysguard/ksysguardd/Linux/lmsensors.c
+++ b/ksysguard/ksysguardd/Linux/lmsensors.c
@@ -151,7 +151,7 @@ void initLmSensors( struct SensorModul* sm )
strlen( label ) + 1 );
snprintf( p->fullName, BUFFER_SIZE_LMSEN, "lmsensors/%s/%s", scn->prefix, label );
- /* Make sure that name contains only proper characters. */
+ /* Make sure that name tqcontains only proper characters. */
for ( s = p->fullName; *s; s++ )
if ( *s == ' ' )
*s = '_';
diff --git a/ksysguard/ksysguardd/Linux/stat.c b/ksysguard/ksysguardd/Linux/stat.c
index 9bc576deb..c1eb48c7d 100644
--- a/ksysguard/ksysguardd/Linux/stat.c
+++ b/ksysguard/ksysguardd/Linux/stat.c
@@ -550,7 +550,7 @@ static void processStat( void )
void initStat( struct SensorModul* sm )
{
/* The CPU load is calculated from the values in /proc/stat. The cpu
- * entry contains 4 counters. These counters count the number of ticks
+ * entry tqcontains 4 counters. These counters count the number of ticks
* the system has spend on user processes, system processes, nice
* processes and idle time.
*
diff --git a/ksysguard/ksysguardd/NetBSD/ProcessList.c b/ksysguard/ksysguardd/NetBSD/ProcessList.c
index 54ab65513..5c7499f2f 100644
--- a/ksysguard/ksysguardd/NetBSD/ProcessList.c
+++ b/ksysguard/ksysguardd/NetBSD/ProcessList.c
@@ -306,7 +306,7 @@ updateProcessList(void)
void
printProcessListInfo(const char* cmd)
{
- fprintf(CurrentClient, "Name\tPID\tPPID\tUID\tGID\tStatus\tUser%%\tSystem%%\tNice\tVmSize\tVmRss\tLogin\tCommand\n");
+ fprintf(CurrentClient, "Name\tPID\tPPID\tUID\tGID\ttqStatus\tUser%%\tSystem%%\tNice\tVmSize\tVmRss\tLogin\tCommand\n");
fprintf(CurrentClient, "s\td\td\td\td\tS\tf\tf\td\tD\tD\ts\ts\n");
}
diff --git a/ksysguard/ksysguardd/Porting-HOWTO b/ksysguard/ksysguardd/Porting-HOWTO
index 4576783bc..75bb2b3c2 100644
--- a/ksysguard/ksysguardd/Porting-HOWTO
+++ b/ksysguard/ksysguardd/Porting-HOWTO
@@ -70,7 +70,7 @@ auto-range feature of the display.
--------
ksysguardd> ps?
-Name PID PPID UID GID Status User% System% Nice VmSize VmRss VmLib Login Command
+Name PID PPID UID GID tqStatus User% System% Nice VmSize VmRss VmLib Login Command
s d d d d S f f d d sksysguardd>
--------
@@ -105,7 +105,7 @@ ksysguardd may support dynamic monitor sets. If a CPU is added or an
interface disabled, monitors may be added or removed. To notify the
front-end about this, you need to send the string "RECONFIGURE\n" over
stderr. This causes the front-end to request the list of monitors
-again and adapt it's layout accordingly. If ksysguardd receives a
+again and adapt it's tqlayout accordingly. If ksysguardd receives a
command it doesn't know it has to reply with "UNKNOWN
COMMAND\nksysguardd> ".
diff --git a/ksysguard/ksysguardd/Solaris/ProcessList.c b/ksysguard/ksysguardd/Solaris/ProcessList.c
index 771371b76..1d6809aa9 100644
--- a/ksysguard/ksysguardd/Solaris/ProcessList.c
+++ b/ksysguard/ksysguardd/Solaris/ProcessList.c
@@ -290,7 +290,7 @@ int updateProcessList( void ) {
}
void printProcessListInfo( const char *cmd ) {
- fprintf(CurrentClient, "Name\tPID\tPPID\tGID\tStatus\tUser\tThreads"
+ fprintf(CurrentClient, "Name\tPID\tPPID\tGID\ttqStatus\tUser\tThreads"
"\tSize\tResident\t%% CPU\tPriority\tCommand\n" );
fprintf(CurrentClient, "s\td\td\td\ts\ts\td\tD\tD\tf\td\ts\n" );
}
diff --git a/ksysguard/ksysguardd/ksysguardd.c b/ksysguard/ksysguardd/ksysguardd.c
index faea19492..eebb44a53 100644
--- a/ksysguard/ksysguardd/ksysguardd.c
+++ b/ksysguard/ksysguardd/ksysguardd.c
@@ -91,7 +91,7 @@ int QuitApp = 0;
int RunAsDaemon = 0;
/**
- This pointer is used by all modules. It contains the file pointer of
+ This pointer is used by all modules. It tqcontains the file pointer of
the currently served client. This is stdout for non-daemon mode.
*/
FILE* CurrentClient = 0;