Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Visual C++ already declare the isatty function in the header.h. So this change avoids...
[simgrid.git] / src / gras / Virtu / rl_process.c
index ae191c3..4f542af 100644 (file)
@@ -9,22 +9,32 @@
 
 #include "gras_modinter.h" /* module initialization interface */
 #include "gras/Virtu/virtu_rl.h"
-
-XBT_LOG_EXTERNAL_CATEGORY(process);
-XBT_LOG_DEFAULT_CATEGORY(process);
+#include "portable.h"
 
 /* globals */
 static gras_procdata_t *_gras_procdata = NULL;
+XBT_EXPORT_NO_IMPORT(char const *) _gras_procname = NULL;
 
-xbt_error_t gras_process_init() {
-  _gras_procdata=xbt_new(gras_procdata_t,1);
+void gras_process_init() {
+  _gras_procdata=xbt_new0(gras_procdata_t,1);
   gras_procdata_init();
-  return no_error;
 }
-xbt_error_t gras_process_exit() {
+void gras_process_exit() {
   gras_procdata_exit();
   free(_gras_procdata);
-  return no_error;
+}
+
+const char *xbt_procname(void) {
+  if(_gras_procname) return _gras_procname;
+  else return "";
+}
+
+int gras_os_getpid(void) {
+#ifdef _WIN32
+   return (long int) GetCurrentProcess();
+#else
+   return (long int) getpid();
+#endif
 }
 
 /* **************************************************************************
@@ -36,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;
+}