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
|
/* Pid parsing/frobbing
Copyright (C) 1997 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
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, 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef __PIDS_H__
#define __PIDS_H__
/* Add the pids returned in vm_allocated memory by calling PIDS_FN with ID as
an argument to PIDS and NUM_PIDS, reallocating it in malloced memory. */
extern error_t add_fn_pids (pid_t **pids, size_t *num_pids, unsigned id,
error_t (*pids_fn)(process_t proc, pid_t id,
pid_t **pids, size_t *num_pids));
/* Add PID to PIDS and NUM_PIDS, reallocating it in malloced memory. */
extern error_t add_pid (pid_t **pids, size_t *num_pids, pid_t pid);
/* Params to be passed as the input when parsing PIDS_ARGP. */
struct pids_argp_params
{
/* Array to be extended with parsed pids. */
pid_t **pids;
size_t *num_pids;
/* If true, parse non-option arguments as pids. */
int parse_pid_args;
};
/* A parser for selecting a set of pids. */
extern struct argp pids_argp;
#endif __PIDS_H__
|