Sebastian Lackner : server: Do not store unix_pid in process_snapshot struct.

Alexandre Julliard julliard at winehq.org
Wed Sep 7 10:48:41 CDT 2016


Module: wine
Branch: master
Commit: 7c06f1c218a2ecb1f2dda2cfb97b3a2c5b7f01e8
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7c06f1c218a2ecb1f2dda2cfb97b3a2c5b7f01e8

Author: Sebastian Lackner <sebastian at fds-team.de>
Date:   Wed Sep  7 12:51:39 2016 +0200

server: Do not store unix_pid in process_snapshot struct.

Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 server/process.c | 1 -
 server/process.h | 1 -
 2 files changed, 2 deletions(-)

diff --git a/server/process.c b/server/process.c
index 48ada99..2f2d1ad 100644
--- a/server/process.c
+++ b/server/process.c
@@ -1067,7 +1067,6 @@ struct process_snapshot *process_snap( int *count )
         ptr->count    = process->obj.refcount;
         ptr->priority = process->priority;
         ptr->handles  = get_handle_table_count(process);
-        ptr->unix_pid = process->unix_pid;
         grab_object( process );
         ptr++;
     }
diff --git a/server/process.h b/server/process.h
index eaa4adb..4e6de69 100644
--- a/server/process.h
+++ b/server/process.h
@@ -104,7 +104,6 @@ struct process_snapshot
     int             threads;  /* number of threads */
     int             priority; /* priority class */
     int             handles;  /* number of handles */
-    int             unix_pid; /* Unix pid */
 };
 
 #define CPU_FLAG(cpu) (1 << (cpu))




More information about the wine-cvs mailing list