systypes.inc 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by Michael Van Canneyt,
  5. member of the Free Pascal development team.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. type
  13. TStatfs = packed record
  14. spare2, { place holder}
  15. bsize, { fundamental block size}
  16. iosize, { optimal block size }
  17. blocks, { total blocks}
  18. bfree, { blocks free}
  19. bavail, { block available for mortal users}
  20. files, { Total file nodes}
  21. ffree : longint; { file nodes free}
  22. fsid : array[0..1] of longint;
  23. fowner : longint; {mounter uid}
  24. ftype : longint;
  25. fflags : longint; {copy of mount flags}
  26. spare : array [0..1] of longint; { For later use }
  27. fstypename : array[0..15] of char;
  28. mountpoint : array[0..89] of char;
  29. mnfromname : array[0..89] of char;
  30. end;
  31. PStatFS=^TStatFS;
  32. ITimerVal= Record
  33. It_Interval,
  34. It_Value : TimeVal;
  35. end;
  36. {
  37. $Log$
  38. Revision 1.10 2003-09-14 20:15:01 marco
  39. * Unix reform stage two. Remove all calls from Unix that exist in Baseunix.
  40. Revision 1.9 2002/09/07 16:01:18 peter
  41. * old logs removed and tabs fixed
  42. Revision 1.8 2002/05/06 10:49:59 marco
  43. * setitimer for 1.1
  44. }