list_init (&hpriv.model_priv_list);
pthread_mutex_init (&hpriv.mutex, NULL);
- return initNEcomm (&handler, conf->communication_method);
+ /**
+ * In order to fix build errors, the following line is changed from
+ * return initNEcomm (&handler, conf->communication_method);
+ * to
+ * return 0;
+ *
+ * TODO: Implement initNEcomm()
+ */
+ return 0;
+
}
/**
int
exit_ne_handler (void)
{
- int err;
+ /*
+ int err;
+ */
free_all_models();
pthread_mutex_destroy (&hpriv.mutex);
- if ((err = exitNEcomm ()) < 0)
- return err;
+ /**
+ * In order to fix build errors, the following lines are blocked.
+ * TODO: Implement exitNEcomm()
+ *
+ * if ((err = exitNEcomm ()) < 0)
+ * return err;
+ */
return GET_MEM()->fini ();
}