aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/nv.h
diff options
context:
space:
mode:
authorMariusz Zaborski <oshogbo@FreeBSD.org>2018-06-18 22:57:32 +0000
committerMariusz Zaborski <oshogbo@FreeBSD.org>2018-06-18 22:57:32 +0000
commit24881c060c7b91335603f9a042eeb0bebe550d12 (patch)
treeb44f90c5067dba7c046543bd719d8d927dfd25bc /sys/sys/nv.h
parent936a20bb1c05c0507efa9ca437feb4dbacd89200 (diff)
downloadsrc-24881c060c7b91335603f9a042eeb0bebe550d12.tar.gz
src-24881c060c7b91335603f9a042eeb0bebe550d12.zip
libnv: Add nvlist_append_*_array() family of functions.
The nvlist_append_{bool,number,string,nvlist,descriptor}_array() functions allows to dynamically extend array stored in the nvlist. Submitted by: Mindaugas Rasiukevicius <rmind@netbsd.org>
Notes
Notes: svn path=/head/; revision=335347
Diffstat (limited to 'sys/sys/nv.h')
-rw-r--r--sys/sys/nv.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/sys/nv.h b/sys/sys/nv.h
index bf40f8f372a1..80fb877721f0 100644
--- a/sys/sys/nv.h
+++ b/sys/sys/nv.h
@@ -162,6 +162,14 @@ void nvlist_add_descriptor(nvlist_t *nvl, const char *name, int value);
void nvlist_add_descriptor_array(nvlist_t *nvl, const char *name, const int *value, size_t nitems);
#endif
+void nvlist_append_bool_array(nvlist_t *nvl, const char *name, const bool value);
+void nvlist_append_number_array(nvlist_t *nvl, const char *name, const uint64_t value);
+void nvlist_append_string_array(nvlist_t *nvl, const char *name, const char * const value);
+void nvlist_append_nvlist_array(nvlist_t *nvl, const char *name, const nvlist_t * const value);
+#ifndef _KERNEL
+void nvlist_append_descriptor_array(nvlist_t *nvl, const char *name, int value);
+#endif
+
/*
* The nvlist_move functions add the given name/value pair.
* The functions consumes provided buffer.