Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/vm/uma.h 95758 2002-04-29 23:45:41Z jeff $
---
> * $FreeBSD: head/sys/vm/uma.h 95766 2002-04-30 04:26:34Z jeff $
201,202c201
< * wait This flag indicates whether or not we are allowed to block while
< * allocating memory for this zone should we run out.
---
> * flags See sys/malloc.h for available flags.
210c209
< void *uma_zalloc_arg(uma_zone_t zone, void *arg, int wait);
---
> void *uma_zalloc_arg(uma_zone_t zone, void *arg, int flags);
218c217
< static __inline void *uma_zalloc(uma_zone_t zone, int wait);
---
> static __inline void *uma_zalloc(uma_zone_t zone, int flags);
221c220
< uma_zalloc(uma_zone_t zone, int wait)
---
> uma_zalloc(uma_zone_t zone, int flags)
223c222
< return uma_zalloc_arg(zone, NULL, wait);
---
> return uma_zalloc_arg(zone, NULL, flags);