summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/sys/macros.h
blob: 932f230c03ac86e17520684702103fb89ad5b41f (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
54
55
/*	$OpenBSD: macros.h,v 1.1.1.1 2019/11/19 19:57:03 bluhm Exp $	*/
/* Public domain - Moritz Buhl */

#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stdint.h>
#include <sys/sysctl.h>
#include <sys/types.h>

#include <stdbool.h>
#include <string.h>

#define __RCSID(str)
#define __COPYRIGHT(str)

#define __arraycount(_a)	nitems(_a)
#define __unreachable()		atf_tc_fail("unreachable")
#define __UNCONST(a)		(a)

/* t_chroot.c */
#define fchroot(fd) 0

/* t_clock_gettime.c */
int sysctlbyname(char *, void *, size_t *, void *, size_t);

int
sysctlbyname(char* s, void *oldp, size_t *oldlenp, void *newp, size_t newlen)
{
	int ktc;
	if (strcmp(s, "kern.timecounter.hardware") == 0)
		ktc = KERN_TIMECOUNTER_HARDWARE;
	else if (strcmp(s, "kern.timecounter.choice") == 0)
		ktc = KERN_TIMECOUNTER_CHOICE;

        int mib[3];
	mib[0] = CTL_KERN;
	mib[1] = KERN_TIMECOUNTER;
	mib[2] = ktc;
        return sysctl(mib, 3, oldp, oldlenp, newp, newlen);
}

/* t_mlock.c */
#define MAP_WIRED	__MAP_NOREPLACE

/* t_pipe2.c */
#define O_NOSIGPIPE	0

/* t_poll.c */
#define pollts(a, b, c, e)	0

/* t_sendrecv.c */
#define SO_RERROR	SO_DEBUG

/* t_write.c */
#define _PATH_DEVZERO	"/dev/zero"