ModelHistory *history = model->get_history();
func_id = history->getFuncMap()->get(funcName);
+ /* func_id not found; this could happen in the case where a function calls cds_func_entry
+ * when the model has been defined yet, but then an atomic inside the function initializes
+ * the model. And then cds_func_exit is called upon the function exiting.
+ */
+ if (func_id == 0)
+ return;
+
history->exit_function(func_id, th->get_id());
}
func_inst_lists->push_back( new func_inst_list_t() );
}
+/* @param func_id a non-zero value */
void ModelHistory::exit_function(const uint32_t func_id, thread_id_t tid)
{
uint32_t id = id_to_int(tid);