threads/model: allocate Thread from w/in ModelChecker
[model-checker.git] / threads-model.h
index 02362100dca410b35f531ef536e2066f85315890..d4d2da29e82a7fc1c58a2a61db7ee61aac7206a5 100644 (file)
 #include <threads.h>
 #include "modeltypes.h"
 
+struct thread_params {
+       thrd_start_t func;
+       void *arg;
+};
+
 /** @brief Represents the state of a user Thread */
 typedef enum thread_state {
        /** Thread was just created and hasn't run yet */