summaryrefslogtreecommitdiff
path: root/src/til_module_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/til_module_context.h')
-rw-r--r--src/til_module_context.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/til_module_context.h b/src/til_module_context.h
index 43d06a7..d017a99 100644
--- a/src/til_module_context.h
+++ b/src/til_module_context.h
@@ -9,9 +9,10 @@ struct til_module_context_t {
unsigned seed;
unsigned ticks;
unsigned n_cpus;
+ char *path; /* for locating this instance of the module, NOT a file path */
};
-void * til_module_context_new(size_t size, unsigned seed, unsigned ticks, unsigned n_cpus);
+void * til_module_context_new(size_t size, unsigned seed, unsigned ticks, unsigned n_cpus, char *path);
void * til_module_context_free(til_module_context_t *module_context);
#endif
© All Rights Reserved