diff options
author | alfred <alfred@FreeBSD.org> | 2003-01-21 08:56:16 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2003-01-21 08:56:16 +0000 |
commit | bf8e8a6e8f0bd9165109f0a258730dd242299815 (patch) | |
tree | f16a2fb9fa7a7fbc4c19e981d278d5f6eb53234d /sys/posix4 | |
parent | 2180deee00350fff613a1d1d1328eddc4c0ba9c8 (diff) | |
download | FreeBSD-src-bf8e8a6e8f0bd9165109f0a258730dd242299815.zip FreeBSD-src-bf8e8a6e8f0bd9165109f0a258730dd242299815.tar.gz |
Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.
Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT.
Diffstat (limited to 'sys/posix4')
-rw-r--r-- | sys/posix4/posix4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/posix4/posix4.h b/sys/posix4/posix4.h index b17e927..033c1ec 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 **); |