]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - filter_common.c
file writer pre_select() fixes.
[paraslash.git] / filter_common.c
index 7c71ff39243a7a63f7026c11726418377790c87e..acd84d5cd6332e3d4a2c5507ecc661f1822ba0e1 100644 (file)
@@ -9,12 +9,14 @@
 #include <regex.h>
 #include <sys/types.h>
 #include <dirent.h>
+#include <stdbool.h>
 
 #include "para.h"
 #include "list.h"
 #include "sched.h"
 #include "fd.h"
 #include "ggo.h"
+#include "buffer_tree.h"
 #include "filter.h"
 #include "error.h"
 #include "string.h"
@@ -273,3 +275,15 @@ void print_filter_helps(int detailed)
        }
 
 }
+
+void generic_filter_pre_select(struct sched *s, struct task *t)
+{
+       struct filter_node *fn = container_of(t, struct filter_node, task);
+
+       t->error = 0;
+       if (btr_node_status(fn->btrn, fn->min_iqs) != 0) {
+               s->timeout.tv_sec = 0;
+               s->timeout.tv_usec = 1;
+       }
+}
+