readme.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. $Id: readme.txt,v 1.2 2002/10/27 11:58:30 marco Exp $
  3. This file is part of the Free Pascal run time librar~y.
  4. Copyright (c) 2000 by Marco van de Voort
  5. member of the Free Pascal development team.
  6. Filellist and some notes about the *BSD RTL architecture.
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. *BSD commonly means FreeBSD, OpenBSD and NetBSD, but since Apple's Darwin
  14. has a FreeBSD userland, I also add Darwin to it. At least Darwin's
  15. userland seems to be compatible enough to be included, despite its
  16. internal Mach architecture.
  17. Common *BSD files:
  18. bsd.pa BSD specific syscall functions
  19. bsdmacro.inc The POSIX mode_t (IS_DIR etc) and exit macro's.
  20. bsdsysc.inc The base syscalls for *BSD system unit.
  21. including a few that are _not_ posix, but still
  22. required in the system unit. All routines have
  23. a public alias.
  24. bsdsysch.inc EXTERNAL declarations for the non-posix calls in
  25. bsdsysc.inc (to import them into e.g. Unix)
  26. bsdtypes.inc some non POSIX BSD types required for the
  27. syscalls and base functions.
  28. bsdfuncs.inc POSIX syscalls and functions that are not needed
  29. for system.
  30. osposix.inc The implementation of unit posix, redirects to libc
  31. or bsdtypes.inc (via aliases)
  32. osposixh.inc The headers of unit posix.
  33. sysctl.pp Some basic sysctl headers, needed for implementation
  34. of POSIX functions.
  35. sysposix.inc BSD specific part of the implementation
  36. i386/syscall.inc The primitives for performing syscalls
  37. i386/syscallh.inc Headers to syscall.inc
  38. powerpc/syscall.inc likewise for PPC.