Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
b291fba0
Commit
b291fba0
authored
10 years ago
by
Hisham Muhammad
Browse files
Options
Download
Email Patches
Plain Diff
Fixes to use platform-specific compare routines.
parent
dc4576d3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
ProcessList.c
+4
-4
ProcessList.c
ProcessList.h
+1
-1
ProcessList.h
freebsd/FreeBSDProcess.c
+15
-5
freebsd/FreeBSDProcess.c
freebsd/FreeBSDProcessList.c
+1
-1
freebsd/FreeBSDProcessList.c
linux/LinuxProcessList.c
+1
-1
linux/LinuxProcessList.c
with
22 additions
and
12 deletions
+22
-12
ProcessList.c
View file @
b291fba0
...
...
@@ -74,15 +74,15 @@ void ProcessList_goThroughEntries(ProcessList* pl);
}*/
ProcessList
*
ProcessList_init
(
ProcessList
*
this
,
UsersTable
*
usersTable
,
Hashtable
*
pidWhiteList
,
uid_t
userId
)
{
this
->
processes
=
Vector_new
(
C
lass
(
Process
)
,
true
,
DEFAULT_SIZE
);
ProcessList
*
ProcessList_init
(
ProcessList
*
this
,
ObjectClass
*
klass
,
UsersTable
*
usersTable
,
Hashtable
*
pidWhiteList
,
uid_t
userId
)
{
this
->
processes
=
Vector_new
(
k
lass
,
true
,
DEFAULT_SIZE
);
this
->
processTable
=
Hashtable_new
(
140
,
false
);
this
->
usersTable
=
usersTable
;
this
->
pidWhiteList
=
pidWhiteList
;
this
->
userId
=
userId
;
// tree-view auxiliary buffer
s
this
->
processes2
=
Vector_new
(
C
lass
(
Process
)
,
true
,
DEFAULT_SIZE
);
// tree-view auxiliary buffer
this
->
processes2
=
Vector_new
(
k
lass
,
true
,
DEFAULT_SIZE
);
// set later by platform-specific code
this
->
cpuCount
=
0
;
...
...
This diff is collapsed.
Click to expand it.
ProcessList.h
View file @
b291fba0
...
...
@@ -67,7 +67,7 @@ void ProcessList_delete(ProcessList* pl);
void
ProcessList_goThroughEntries
(
ProcessList
*
pl
);
ProcessList
*
ProcessList_init
(
ProcessList
*
this
,
UsersTable
*
usersTable
,
Hashtable
*
pidWhiteList
,
uid_t
userId
);
ProcessList
*
ProcessList_init
(
ProcessList
*
this
,
ObjectClass
*
klass
,
UsersTable
*
usersTable
,
Hashtable
*
pidWhiteList
,
uid_t
userId
);
void
ProcessList_done
(
ProcessList
*
this
);
...
...
This diff is collapsed.
Click to expand it.
freebsd/FreeBSDProcess.c
View file @
b291fba0
...
...
@@ -36,6 +36,16 @@ typedef struct FreeBSDProcess_ {
}*/
ProcessClass
FreeBSDProcess_class
=
{
.
super
=
{
.
extends
=
Class
(
Process
),
.
display
=
Process_display
,
.
delete
=
Process_delete
,
.
compare
=
FreeBSDProcess_compare
},
.
writeField
=
(
Process_WriteField
)
FreeBSDProcess_writeField
,
};
ProcessFieldData
Process_fields
[]
=
{
[
0
]
=
{
.
name
=
""
,
.
title
=
NULL
,
.
description
=
NULL
,
.
flags
=
0
,
},
[
PID
]
=
{
.
name
=
"PID"
,
.
title
=
" PID "
,
.
description
=
"Process/thread ID"
,
.
flags
=
0
,
},
...
...
@@ -94,7 +104,7 @@ void Process_setupColumnWidths() {
FreeBSDProcess
*
FreeBSDProcess_new
(
Settings
*
settings
)
{
FreeBSDProcess
*
this
=
calloc
(
sizeof
(
FreeBSDProcess
),
1
);
Object_setClass
(
this
,
Class
(
Process
));
Object_setClass
(
this
,
Class
(
FreeBSD
Process
));
Process_init
(
&
this
->
super
,
settings
);
return
this
;
}
...
...
@@ -105,7 +115,7 @@ void Process_delete(Object* cast) {
free
(
this
);
}
void
Process_writeField
(
Process
*
this
,
RichString
*
str
,
ProcessField
field
)
{
void
FreeBSD
Process_writeField
(
Process
*
this
,
RichString
*
str
,
ProcessField
field
)
{
//FreeBSDProcess* fp = (FreeBSDProcess*) this;
char
buffer
[
256
];
buffer
[
255
]
=
'\0'
;
int
attr
=
CRT_colors
[
DEFAULT_COLOR
];
...
...
@@ -113,13 +123,13 @@ void Process_writeField(Process* this, RichString* str, ProcessField field) {
switch
(
field
)
{
// add FreeBSD-specific fields here
default:
Process_write
Default
Field
(
this
,
str
,
field
);
Process_writeField
(
this
,
str
,
field
);
return
;
}
RichString_append
(
str
,
attr
,
buffer
);
}
long
Process_compare
(
const
void
*
v1
,
const
void
*
v2
)
{
long
FreeBSD
Process_compare
(
const
void
*
v1
,
const
void
*
v2
)
{
FreeBSDProcess
*
p1
,
*
p2
;
Settings
*
settings
=
((
Process
*
)
v1
)
->
settings
;
if
(
settings
->
direction
==
1
)
{
...
...
@@ -132,7 +142,7 @@ long Process_compare(const void* v1, const void* v2) {
switch
(
settings
->
sortKey
)
{
// add FreeBSD-specific fields here
default:
return
Process_
defaultC
ompare
(
v1
,
v2
);
return
Process_
c
ompare
(
v1
,
v2
);
}
}
...
...
This diff is collapsed.
Click to expand it.
freebsd/FreeBSDProcessList.c
View file @
b291fba0
...
...
@@ -45,7 +45,7 @@ static int pageSizeKb;
ProcessList
*
ProcessList_new
(
UsersTable
*
usersTable
,
Hashtable
*
pidWhiteList
,
uid_t
userId
)
{
FreeBSDProcessList
*
fpl
=
calloc
(
1
,
sizeof
(
FreeBSDProcessList
));
ProcessList
*
pl
=
(
ProcessList
*
)
fpl
;
ProcessList_init
(
pl
,
usersTable
,
pidWhiteList
,
userId
);
ProcessList_init
(
pl
,
Class
(
FreeBSDProcess
),
usersTable
,
pidWhiteList
,
userId
);
int
cpus
=
1
;
size_t
sizeof_cpus
=
sizeof
(
cpus
);
...
...
This diff is collapsed.
Click to expand it.
linux/LinuxProcessList.c
View file @
b291fba0
...
...
@@ -83,7 +83,7 @@ typedef struct LinuxProcessList_ {
ProcessList
*
ProcessList_new
(
UsersTable
*
usersTable
,
Hashtable
*
pidWhiteList
,
uid_t
userId
)
{
LinuxProcessList
*
this
=
calloc
(
1
,
sizeof
(
LinuxProcessList
));
ProcessList
*
pl
=
&
(
this
->
super
);
ProcessList_init
(
pl
,
usersTable
,
pidWhiteList
,
userId
);
ProcessList_init
(
pl
,
Class
(
LinuxProcess
),
usersTable
,
pidWhiteList
,
userId
);
// Update CPU count:
FILE
*
file
=
fopen
(
PROCSTATFILE
,
"r"
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help