ust: collect many channels and start work on pipe listener
[ust.git] / libmarkers / marker.h
index 5fdd66ff45feef3f5c1d2b3126304d630524b6ee..f26bcac033519fad67850a3757da23eb5d03f58e 100644 (file)
@@ -19,6 +19,7 @@
 //ust// #include <linux/ltt-channels.h>
 #include "kernelcompat.h"
 #include "compiler.h"
+#include "list.h"
 
 //ust// struct module;
 //ust// struct task_struct;
@@ -251,7 +252,8 @@ extern void *marker_get_private_data(const char *channel, const char *name,
 #define marker_synchronize_unregister() synchronize_sched()
 
 struct marker_iter {
-       struct module *module;
+//ust//        struct module *module;
+       struct lib *lib;
        struct marker *marker;
 };
 
@@ -273,4 +275,12 @@ extern int is_marker_enabled(const char *channel, const char *name);
 //ust// }
 //ust// #endif
 
+
+struct lib {
+       struct marker *markers_start;
+       int markers_count;
+       struct list_head list;
+};
+
+
 #endif
This page took 0.02339 seconds and 4 git commands to generate.