aboutsummaryrefslogtreecommitdiffstats
path: root/src/process_group.h
blob: eb4c5d81ef94086a1e71552bc03c3d9098e2df44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
 *
 * cpulimit - a cpu limiter for Linux
 *
 * Copyright (C) 2005-2012, by:  Angelo Marletta <marlonx80@hotmail.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef __PROCESS_MONITOR_H

#define __PROCESS_MONITOR_H

#include "process_iterator.h"

#include "list.h"

#define PIDHASH_SZ 1024
#define pid_hashfn(x) ((((x) >> 8) ^ (x)) & (PIDHASH_SZ - 1))

struct process_monitor
{
	//hashtable with all the processes (array of struct list of struct process)
	struct list *proctable[PIDHASH_SZ];
	pid_t target_pid;
	int ignore_children;
};

int init_process_monitor(struct process_monitor *monitor, int target_pid, int ignore_children);

struct list* get_process_list(struct process_monitor *monitor);

int close_process_monitor(struct process_monitor *monitor);

#endif
Un proyecto texto-plano.xyz