From 9780c312f40633a2ce23300cc76faf64e07a87ed Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 20 Feb 2015 14:52:10 -0200 Subject: Fix allocation of processes. Closes #166. Conflicts: Process.c Process.h ProcessList.c ScreenManager.c linux/LinuxProcessList.c --- Process.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Process.h') diff --git a/Process.h b/Process.h index 6bd40686..f4d5a463 100644 --- a/Process.h +++ b/Process.h @@ -24,6 +24,8 @@ in the source distribution for its full text. #include +typedef struct Settings_ Settings; + #define PROCESS_FLAG_IO 1 #define PROCESS_FLAG_IOPRIO 2 #define PROCESS_FLAG_OPENVZ 4 @@ -189,11 +191,11 @@ void Process_setupColumnWidths(); #define ONE_DECIMAL_M (ONE_DECIMAL_K * ONE_DECIMAL_K) #define ONE_DECIMAL_G (ONE_DECIMAL_M * ONE_DECIMAL_K) -void Process_delete(Object* cast); +void Process_done(Process* this); extern ObjectClass Process_class; -Process* Process_new(struct ProcessList_ *pl); +void Process_init(Process* this, struct Settings_* settings, struct ProcessList_* pl); void Process_toggleTag(Process* this); -- cgit v1.2.3