Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2010-09-16 01:17:12 +0400
committerMiguel de Icaza <miguel@gnome.org>2010-09-16 01:18:41 +0400
commit052fd53f2192ed0466bbae7ce052afdf0844d1cb (patch)
treea47360010d1371bd0fa8976381e8bb576f6fa1b4
parent164ba0d2042e10817b45b56e413a49419870841a (diff)
Revert2.8-p5
-rw-r--r--mcs/class/System/System.Diagnostics/Process.cs2
-rw-r--r--mono/metadata/process.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System/System.Diagnostics/Process.cs b/mcs/class/System/System.Diagnostics/Process.cs
index 5f5e41f208a..75787d07bc2 100644
--- a/mcs/class/System/System.Diagnostics/Process.cs
+++ b/mcs/class/System/System.Diagnostics/Process.cs
@@ -65,7 +65,7 @@ namespace System.Diagnostics {
*/
public IntPtr thread_handle;
public int pid; // Contains -GetLastError () on failure.
- public IntPtr tid;
+ public int tid;
public string [] envKeys;
public string [] envValues;
public string UserName;
diff --git a/mono/metadata/process.h b/mono/metadata/process.h
index bc218f76635..fb184a774b6 100644
--- a/mono/metadata/process.h
+++ b/mono/metadata/process.h
@@ -22,7 +22,7 @@ typedef struct
HANDLE process_handle;
HANDLE thread_handle;
guint32 pid; /* Contains GetLastError () on failure */
- gpointer tid;
+ guint32 tid;
MonoArray *env_keys;
MonoArray *env_values;
MonoString *username;