Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
If the timeout is negative, the user wants to block
[simgrid.git] / src / gras / Virtu / rl_process.c
index 7219c9a..f5bb0ef 100644 (file)
@@ -30,11 +30,11 @@ const char *xbt_procname(void) {
 }
 
 int gras_os_getpid(void) {
-       #ifdef _WIN32
-       return (long int) GetCurrentProcess();
-       #else
-       return (long int) getpid();
-       #endif
+#ifdef _WIN32
+   return (long int) GetCurrentProcess();
+#else
+   return (long int) getpid();
+#endif
 }
 
 /* **************************************************************************
@@ -46,3 +46,8 @@ gras_procdata_t *gras_procdata_get(void) {
 
   return _gras_procdata;
 }
+
+void gras_agent_spawn(const char *name, void *data, 
+                     xbt_main_func_t code, int argc, char *argv[]) {
+   THROW_UNIMPLEMENTED;
+}