aboutsummaryrefslogtreecommitdiff
path: root/include/tst_pid.h
blob: 774c845cef87b2f72c79d56906e1da747b61fda0 (plain)
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
48
49
50
51
52
53
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (c) 2015-2016 Cyril Hrubis <chrubis@suse.cz>
 */

#ifndef TST_PID_H__
#define TST_PID_H__

#include <sys/types.h>

/*
 * Get a pid value not used by the OS
 */
pid_t tst_get_unused_pid_(void (*cleanup_fn)(void));

/*
 * Returns number of free pids by subtraction of the number of pids
 * currently used ('ps -eT') from maximum number of processes.
 * The limit of processes come from kernel pid_max and cgroup session limits
 * (e.g. configured by systemd user.slice).
 */
int tst_get_free_pids_(void (*cleanup_fn)(void));

#ifdef TST_TEST_H__
static inline pid_t tst_get_unused_pid(void)
{
	return tst_get_unused_pid_(NULL);
}

static inline int tst_get_free_pids(void)
{
	return tst_get_free_pids_(NULL);
}
#else
static inline pid_t tst_get_unused_pid(void (*cleanup_fn)(void))
{
	return tst_get_unused_pid_(cleanup_fn);
}

static inline int tst_get_free_pids(void (*cleanup_fn)(void))
{
	return tst_get_free_pids_(cleanup_fn);
}
#endif

/*
 * Direct getpid() syscall. Some glibc versions cache getpid() return value
 * which can cause confusing issues for example in processes created by
 * direct clone() syscall (without using the glibc wrapper). Use this function
 * whenever the current process may be a child of the main test process.
 */
pid_t tst_getpid(void);

#endif /* TST_PID_H__ */