diff -NbBur -x *.o -x *.d -x configure -x config.log -x obj -x gnu-gnu-gnu core0712/base/Source/NSProcessInfo.m core/base/Source/NSProcessInfo.m
--- core0712/base/Source/NSProcessInfo.m	Sun Jun 16 04:30:11 2002
+++ core/base/Source/NSProcessInfo.m	Mon Jul 22 13:11:56 2002
@@ -594,6 +594,7 @@
  */
 - (NSString *) globallyUniqueString
 {
+  static unsigned cnt = 0;
   int	pid;

 #if defined(__MINGW__)
@@ -605,8 +606,8 @@
   // $$$ The format of the string is not specified by the OpenStep
   // specification. It could be useful to change this format after
   // NeXTSTEP release 4.0 comes out.
-  return [NSString stringWithFormat: @"%@:%d:[%@]",
-    [self hostName], pid, [NSDate date]];
+  return [NSString stringWithFormat: @"%@:%d:[%@]:%u",
+    [self hostName], pid, [NSDate date], cnt++];
 }

 /**
