initc.pp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by Michael Van Canneyt and Peter Vreman,
  5. members of the Free Pascal development team
  6. This file links to libc, and handles the libc errno abstraction.
  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. unit initc;
  14. interface
  15. {$linklib c}
  16. type libcint = longint;
  17. plibcint = ^libcint;
  18. function fpgetCerrno:libcint;
  19. procedure fpsetCerrno(err:libcint);
  20. {$ifdef HASGLOBALPROPERTY}
  21. property cerrno:libcint read fpgetCerrno write fpsetcerrno;
  22. {$endif HASGLOBALPROPERTY}
  23. implementation
  24. // hasn't been divided up in .inc's, because I first want to see hoe
  25. // this idea works out.
  26. {$ifdef OpenBSD}
  27. {$define UseOldErrnoDirectLink}
  28. {$endif}
  29. {$ifdef UseOldErrnoDirectLink}
  30. Var
  31. interrno : libcint;external name {$ifdef OpenBSD} '_errno' {$else} 'h_errno'{$endif};
  32. function fpgetCerrno:libcint;
  33. begin
  34. fpgetCerrno:=interrno;
  35. end;
  36. procedure fpsetCerrno(err:libcint);
  37. begin
  38. interrno:=err;
  39. end;
  40. {$else}
  41. const clib = 'c';
  42. {$ifdef Linux}
  43. function geterrnolocation: Plibcint; cdecl;external clib name '__errno_location';
  44. {$else}
  45. {$ifdef FreeBSD} // tested on x86
  46. function geterrnolocation: Plibcint; cdecl;external clib name '__error';
  47. {$else}
  48. {$ifdef NetBSD} // from a sparc dump.
  49. function geterrnolocation: Plibcint; cdecl;external clib name '__errno';
  50. {$else}
  51. {$ifdef Darwin}
  52. function geterrnolocation: Plibcint; cdecl;external clib name '__error';
  53. {$endif}
  54. {$endif}
  55. {$endif}
  56. {$endif}
  57. function fpgetCerrno:libcint;
  58. begin
  59. fpgetCerrno:=geterrnolocation^;
  60. end;
  61. procedure fpsetCerrno(err:libcint);
  62. begin
  63. geterrnolocation^:=err;
  64. end;
  65. {$endif}
  66. end.
  67. {
  68. $Log$
  69. Revision 1.10 2004-01-21 21:25:49 marco
  70. * openbsd fixes stage one
  71. Revision 1.9 2004/01/04 20:36:53 jonas
  72. + geterrnolocation for Darwin
  73. Revision 1.8 2003/12/11 18:20:50 florian
  74. * replaced VER1_0 by HASGLOBALPROPERTY
  75. Revision 1.7 2003/12/10 17:14:27 marco
  76. * property support under ifndef ver1_0
  77. Revision 1.6 2003/12/10 17:06:19 marco
  78. * property support used.
  79. Revision 1.5 2003/12/10 14:59:49 marco
  80. * NetBSD supported added based on Sparc and define name changed to something more sensible
  81. Revision 1.4 2003/12/10 11:24:25 marco
  82. * get/setcerrno added
  83. Revision 1.3 2002/09/07 16:01:27 peter
  84. * old logs removed and tabs fixed
  85. }