]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/shared/fdset.h
nspawn: don't free "fds" twice
[thirdparty/systemd.git] / src / shared / fdset.h
index d31062b5c621d8b37965e978741c267b132eb366..bdf1377038cc3a5fd135c02f0caa6476aebc74f9 100644 (file)
@@ -33,6 +33,8 @@ int fdset_iterate(FDSet *s, Iterator *i);
 
 int fdset_steal_first(FDSet *fds);
 
+void fdset_close(FDSet *fds);
+
 #define FDSET_FOREACH(fd, fds, i) \
         for ((i) = ITERATOR_FIRST, (fd) = fdset_iterate((fds), &(i)); (fd) >= 0; (fd) = fdset_iterate((fds), &(i)))