diff options
author | mbuhl <> | 2021-09-02 15:28:41 +0000 |
---|---|---|
committer | mbuhl <> | 2021-09-02 15:28:41 +0000 |
commit | f8edb670d88f6894dfde975a5e26a59f01b9f82b (patch) | |
tree | d6ea9147aaa1946e4f275034210959b9c3114eb8 /src/regress/lib/libc/sys/macros.h | |
parent | d6e33ff0b9d31f1660462c62afd2505e1e37d60a (diff) | |
download | openbsd-f8edb670d88f6894dfde975a5e26a59f01b9f82b.tar.gz openbsd-f8edb670d88f6894dfde975a5e26a59f01b9f82b.tar.bz2 openbsd-f8edb670d88f6894dfde975a5e26a59f01b9f82b.zip |
Enable vfork syscall test. Disable SIGSTOP test as it is masked until
exec/exit with vfork.
OK bluhm@
Diffstat (limited to 'src/regress/lib/libc/sys/macros.h')
-rw-r--r-- | src/regress/lib/libc/sys/macros.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regress/lib/libc/sys/macros.h b/src/regress/lib/libc/sys/macros.h index 56f9ff1a1a..ee7d77c31d 100644 --- a/src/regress/lib/libc/sys/macros.h +++ b/src/regress/lib/libc/sys/macros.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: macros.h,v 1.3 2021/09/02 12:40:44 mbuhl Exp $ */ | 1 | /* $OpenBSD: macros.h,v 1.4 2021/09/02 15:28:41 mbuhl Exp $ */ |
2 | /* Public domain - Moritz Buhl */ | 2 | /* Public domain - Moritz Buhl */ |
3 | 3 | ||
4 | #include <sys/param.h> | 4 | #include <sys/param.h> |
@@ -56,6 +56,7 @@ sysctlbyname(char* s, void *oldp, size_t *oldlenp, void *newp, size_t newlen) | |||
56 | #define kinfo_proc2 kinfo_proc | 56 | #define kinfo_proc2 kinfo_proc |
57 | #define KERN_PROC2 KERN_PROC | 57 | #define KERN_PROC2 KERN_PROC |
58 | #define reallocarr(pp, n, s) ((*pp = reallocarray(*pp, n, s)), *pp == NULL) | 58 | #define reallocarr(pp, n, s) ((*pp = reallocarray(*pp, n, s)), *pp == NULL) |
59 | #define LSSTOP SSTOP | ||
59 | 60 | ||
60 | /* t_mlock.c */ | 61 | /* t_mlock.c */ |
61 | #define MAP_WIRED __MAP_NOREPLACE | 62 | #define MAP_WIRED __MAP_NOREPLACE |