Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This change exports the gras_procdata pointer and use the Win32 function GetCurrentPr...
[simgrid.git] / src / gras / Virtu / rl_process.c
index d044831..c3a2920 100644 (file)
@@ -29,12 +29,12 @@ const char *xbt_procname(void) {
   else return "";
 }
 
-long int gras_os_getpid(void) {
-       #ifdef _WIN32
-       return (long int) GetCurrentProcess();
-       #else
-       return (long int) getpid();
-       #endif
+int gras_os_getpid(void) {
+#ifdef _WIN32
+   return (long int) GetCurrentProcessId();
+#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;
+}