Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
this example file cannot be parsed because of case sensitivity ... Not
[simgrid.git] / examples / msg / gpu / test_MSG_gpu_task_create.c
index 9d176fd8b6e3c16ec06025325d150e1c01885f03..29362af2b342fd2353d6004f9876f4963a246ff2 100644 (file)
@@ -22,18 +22,16 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
 /** Main function */
 int main(int argc, char *argv[])
 {
-  MSG_error_t res = MSG_OK;
+  msg_error_t res = MSG_OK;
 
   MSG_init(&argc, argv);
 
-  m_gpu_task_t mytask = NULL;
+  msg_gpu_task_t mytask = NULL;
 
   mytask = MSG_gpu_task_create("testTask", 2000.0, 20.0, 20.0);
 
   XBT_INFO("GPU task %p was created", mytask);
 
-  MSG_clean();
-
   if (res == MSG_OK)
     return 0;
   else