summaryrefslogtreecommitdiffstats
path: root/Process.h
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2008-03-09 08:58:38 +0000
committerHisham Muhammad <hisham@gobolinux.org>2008-03-09 08:58:38 +0000
commitda23c8c5a188324455c8f417293c10d85f65cb63 (patch)
treed7a4b8cb0af705de6650e20e00ba3da04d84b27f /Process.h
parent12f4f09e6ed288bdedc86e4ef22f3cc34f0e787a (diff)
Clean up headers by using 'static' whenever possible.
Reduces resulting code size.
Diffstat (limited to 'Process.h')
-rw-r--r--Process.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/Process.h b/Process.h
index 57133380..ddb56a59 100644
--- a/Process.h
+++ b/Process.h
@@ -150,13 +150,15 @@ extern char* PROCESS_CLASS;
extern char *Process_fieldNames[];
-Process* Process_new(struct ProcessList_ *pl);
-
-Process* Process_clone(Process* this);
+#define ONE_K 1024
+#define ONE_M (ONE_K * ONE_K)
+#define ONE_G (ONE_M * ONE_K)
void Process_delete(Object* cast);
-void Process_display(Object* cast, RichString* out);
+Process* Process_new(struct ProcessList_ *pl);
+
+Process* Process_clone(Process* this);
void Process_toggleTag(Process* this);
@@ -168,12 +170,6 @@ bool Process_setAffinity(Process* this, unsigned long mask);
void Process_sendSignal(Process* this, int signal);
-#define ONE_K 1024
-#define ONE_M (ONE_K * ONE_K)
-#define ONE_G (ONE_M * ONE_K)
-
-void Process_writeField(Process* this, RichString* str, ProcessField field);
-
int Process_pidCompare(const void* v1, const void* v2);
int Process_compare(const void* v1, const void* v2);

© 2014-2024 Faster IT GmbH | imprint | privacy policy