Forráskód Böngészése

* merges from fixes

peter 25 éve
szülő
commit
1034313760
2 módosított fájl, 18 hozzáadás és 7 törlés
  1. 9 5
      rtl/linux/sysconst.inc
  2. 9 2
      rtl/linux/systypes.inc

+ 9 - 5
rtl/linux/sysconst.inc

@@ -32,14 +32,15 @@ Const
   Open_NDelay    = Open_NonBlock;
   Open_Sync      = 1 shl 12;
   Open_Direct    = 4 shl 12;
-  Open_LargeFile = 1 shl 15; 
-  Open_Directory = 2 shl 15; 
-  Open_NoFollow  = 4 shl 15; 
+  Open_LargeFile = 1 shl 15;
+  Open_Directory = 2 shl 15;
+  Open_NoFollow  = 4 shl 15;
   { The waitpid uses the following options:}
   Wait_NoHang   = 1;
   Wait_UnTraced = 2;
   Wait_Any      = -1;
   Wait_MyPGRP   = 0;
+  Wait_Clone    = $80000000;
   { Constants to check stat.mode }
   STAT_IFMT   = $f000; {00170000}
   STAT_IFSOCK = $c000; {0140000}
@@ -83,7 +84,10 @@ Const
 
 {
   $Log$
-  Revision 1.2  2000-07-13 11:33:49  michael
+  Revision 1.3  2000-10-26 22:55:11  peter
+    * merges from fixes
+
+  Revision 1.2  2000/07/13 11:33:49  michael
   + removed logs
- 
+
 }

+ 9 - 2
rtl/linux/systypes.inc

@@ -108,6 +108,10 @@ type
   ptimeval=^timeval;
   TTimeVal=timeval;
 
+  timespec = packed record
+    tv_sec,tv_nsec:longint;
+  end;
+
   timezone = packed record
     minuteswest,dsttime:longint;
   end;
@@ -127,7 +131,10 @@ type
 
 {
   $Log$
-  Revision 1.2  2000-07-13 11:33:49  michael
+  Revision 1.3  2000-10-26 22:55:11  peter
+    * merges from fixes
+
+  Revision 1.2  2000/07/13 11:33:49  michael
   + removed logs
- 
+
 }