1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

correct typo in comment

This commit is contained in:
Sam Leffler 2003-08-19 16:41:12 +00:00
parent 0698b57374
commit e540880d41
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119129

View File

@ -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 */