*** empty log message ***

(Old svn revision: 535)
This commit is contained in:
Johannes Zellner
2005-02-11 10:26:29 +00:00
parent 4bf8bee986
commit 32efbc9bbe
5 changed files with 328 additions and 70 deletions

View File

@@ -23,13 +23,29 @@
#include <pwd.h>
#include <sys/types.h>
#include <stdio.h>
#include <libxfce4util/libxfce4util.h>
#include <libgtop-2.0/glibtop.h>
#include <libgtop-2.0/glibtop/proctime.h>
#include "types.h"
/* config vars */
gboolean config_show_user_tasks;
gboolean config_show_root_tasks;
gboolean config_show_other_tasks;
struct task all_tasks[512];
struct task task_list;
void refresh_task_list(void);
void refresh_task_list(gboolean first_time);
void send_signal_to_task(gchar *task_id, gchar *signal);
void remove_task_from_array(gint count);
struct task *get_parent_task(struct task task);
void show_user_tasks(void);
void hide_user_tasks(void);
void show_root_tasks(void);
void hide_root_tasks(void);
void show_other_tasks(void);
void hide_other_tasks(void);
void load_config(void);