aboutsummaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2017-10-06 21:52:28 +0000
committerMark Johnston <markj@FreeBSD.org>2017-10-06 21:52:28 +0000
commitf38c0c46c5e7e71f7e449de7c98ccd52afad3135 (patch)
tree4d73782c5242e53e2e796b0a482e7e4e8b5692fb /sys/sys
parentc0b63519b0309515445f4a973f4a727bf9ba077a (diff)
downloadsrc-f38c0c46c5e7e71f7e449de7c98ccd52afad3135.tar.gz
src-f38c0c46c5e7e71f7e449de7c98ccd52afad3135.zip
Let stack_create(9) take a malloc flags argument.
Reviewed by: cem Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D12614
Notes
Notes: svn path=/head/; revision=324377
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/stack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/stack.h b/sys/sys/stack.h
index e26b535e12ab..113269b1a966 100644
--- a/sys/sys/stack.h
+++ b/sys/sys/stack.h
@@ -34,7 +34,7 @@
struct sbuf;
/* MI Routines. */
-struct stack *stack_create(void);
+struct stack *stack_create(int);
void stack_destroy(struct stack *);
int stack_put(struct stack *, vm_offset_t);
void stack_copy(const struct stack *, struct stack *);