aboutsummaryrefslogtreecommitdiff
path: root/sys/posix4
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2003-01-21 08:56:16 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2003-01-21 08:56:16 +0000
commit44956c9863dc03344b03bdf6a83acf4e743f8e50 (patch)
treef16a2fb9fa7a7fbc4c19e981d278d5f6eb53234d /sys/posix4
parent1326e03f7f8018164ece91fc0a3f15f9c65ff64a (diff)
downloadsrc-44956c9863dc03344b03bdf6a83acf4e743f8e50.tar.gz
src-44956c9863dc03344b03bdf6a83acf4e743f8e50.zip
Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.
Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT.
Notes
Notes: svn path=/head/; revision=109623
Diffstat (limited to 'sys/posix4')
-rw-r--r--sys/posix4/posix4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/posix4/posix4.h b/sys/posix4/posix4.h
index b17e9270e675..033c1ec46f1b 100644
--- a/sys/posix4/posix4.h
+++ b/sys/posix4/posix4.h
@@ -56,7 +56,7 @@ int SC (struct thread *td, struct SC##_args *uap) \
MALLOC_DECLARE(M_P31B);
-#define p31b_malloc(SIZE) malloc((SIZE), M_P31B, M_WAITOK)
+#define p31b_malloc(SIZE) malloc((SIZE), M_P31B, 0)
#define p31b_free(P) free((P), M_P31B)
int p31b_proc(struct proc *, pid_t, struct proc **);