瀏覽代碼

* UnusedHandle value made the same as with other targets

Tomas Hajny 22 年之前
父節點
當前提交
136a47429e
共有 2 個文件被更改,包括 10 次插入4 次删除
  1. 5 2
      rtl/emx/system.pas
  2. 5 2
      rtl/os2/system.pas

+ 5 - 2
rtl/emx/system.pas

@@ -83,7 +83,7 @@ type    TByteArray = array [0..$ffff] of byte;
         PProcessInfoBlock = ^TProcessInfoBlock;
         PPProcessInfoBlock = ^PProcessInfoBlock;
 
-const   UnusedHandle=$ffff;
+const   UnusedHandle=-1;
         StdInputHandle=0;
         StdOutputHandle=1;
         StdErrorHandle=2;
@@ -1263,7 +1263,10 @@ begin
 end.
 {
   $Log$
-  Revision 1.16  2003-10-19 09:35:28  hajny
+  Revision 1.17  2003-10-19 12:13:41  hajny
+    * UnusedHandle value made the same as with other targets
+
+  Revision 1.16  2003/10/19 09:35:28  hajny
     * fixes from OS/2 merged to EMX
 
   Revision 1.15  2003/10/16 15:43:13  peter

+ 5 - 2
rtl/os2/system.pas

@@ -104,7 +104,7 @@ type    TByteArray = array [0..$ffff] of byte;
         PProcessInfoBlock = ^TProcessInfoBlock;
         PPProcessInfoBlock = ^PProcessInfoBlock;
 
-const   UnusedHandle=$ffff;
+const   UnusedHandle=-1;
         StdInputHandle=0;
         StdOutputHandle=1;
         StdErrorHandle=2;
@@ -1179,7 +1179,10 @@ begin
 end.
 {
   $Log$
-  Revision 1.50  2003-10-19 09:37:00  hajny
+  Revision 1.51  2003-10-19 12:13:41  hajny
+    * UnusedHandle value made the same as with other targets
+
+  Revision 1.50  2003/10/19 09:37:00  hajny
     * minor fix in non-default sbrk code
 
   Revision 1.49  2003/10/19 09:06:28  hajny