Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert the convertion of MSG pids from int to long int: linux ones are int only,...
[simgrid.git] / src / msg / private.h
index 2184dbe..e78420d 100644 (file)
@@ -57,8 +57,8 @@ typedef struct simdata_task {
 typedef struct simdata_process {
   m_host_t host;                /* the host on which the process is running */
        smx_process_t smx_process;
-  long int PID;                        /* used for debugging purposes */
-  long int PPID;               /* The parent PID */
+  int PID;                     /* used for debugging purposes */
+  int PPID;                    /* The parent PID */
   m_host_t put_host;           /* used for debugging purposes */
   m_channel_t put_channel;     /* used for debugging purposes */
        m_task_t waiting_task;