diff options
author | sam <sam@FreeBSD.org> | 2003-08-19 16:41:12 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2003-08-19 16:41:12 +0000 |
commit | 923b177486d23c3a3252d45a3ac8a413bad664c3 (patch) | |
tree | 1e2dbc4b577c260f729e12d958162bf2cd586515 /sys/sys | |
parent | 510c7bd0c1f73c5eefd5b26eae291c756609f03c (diff) | |
download | FreeBSD-src-923b177486d23c3a3252d45a3ac8a413bad664c3.zip FreeBSD-src-923b177486d23c3a3252d45a3ac8a413bad664c3.tar.gz |
correct typo in comment
Diffstat (limited to 'sys/sys')
-rw-r--r-- | sys/sys/malloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index aa92da9..2763b03 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -47,7 +47,7 @@ * flags to malloc. */ #define M_NOWAIT 0x0001 /* do not block */ -#define M_WAITOK 0x0002 /* do not block */ +#define M_WAITOK 0x0002 /* ok to block */ #define M_ZERO 0x0100 /* bzero the allocation */ #define M_NOVM 0x0200 /* don't ask VM for pages */ #define M_USE_RESERVE 0x0400 /* can alloc out of reserve memory */ |