syscalls.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #ifndef SCM_SYSCALLS_H
  2. #define SCM_SYSCALLS_H
  3. /* Copyright 1995-1996,2000-2002,2006,2008-2011,2013-2014,2018
  4. Free Software Foundation, Inc.
  5. This file is part of Guile.
  6. Guile is free software: you can redistribute it and/or modify it
  7. under the terms of the GNU Lesser General Public License as published
  8. by the Free Software Foundation, either version 3 of the License, or
  9. (at your option) any later version.
  10. Guile is distributed in the hope that it will be useful, but WITHOUT
  11. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
  13. License for more details.
  14. You should have received a copy of the GNU Lesser General Public
  15. License along with Guile. If not, see
  16. <https://www.gnu.org/licenses/>. */
  17. /* ASYNC_TICK after finding EINTR in order to handle pending signals, if
  18. any. See comment in scm_syserror. */
  19. #define SCM_SYSCALL(line) \
  20. do \
  21. { \
  22. errno = 0; \
  23. line; \
  24. if (errno == EINTR) \
  25. { \
  26. scm_async_tick (); \
  27. errno = EINTR; \
  28. } \
  29. } \
  30. while (errno == EINTR)
  31. #if defined GUILE_USE_64_CALLS && GUILE_USE_64_CALLS && defined(HAVE_STAT64)
  32. #define CHOOSE_LARGEFILE(foo,foo64) foo64
  33. #else
  34. #define CHOOSE_LARGEFILE(foo,foo64) foo
  35. #endif
  36. /* These names are a bit long, but they make it clear what they represent. */
  37. #if SCM_HAVE_STRUCT_DIRENT64 == 1
  38. # define dirent_or_dirent64 CHOOSE_LARGEFILE(dirent,dirent64)
  39. #else
  40. # define dirent_or_dirent64 dirent
  41. #endif
  42. #define fstat_or_fstat64 CHOOSE_LARGEFILE(fstat,fstat64)
  43. #define ftruncate_or_ftruncate64 CHOOSE_LARGEFILE(ftruncate,ftruncate64)
  44. #define lseek_or_lseek64 CHOOSE_LARGEFILE(lseek,lseek64)
  45. #define lstat_or_lstat64 CHOOSE_LARGEFILE(lstat,lstat64)
  46. #define off_t_or_off64_t CHOOSE_LARGEFILE(off_t,off64_t)
  47. #define open_or_open64 CHOOSE_LARGEFILE(open,open64)
  48. #define openat_or_openat64 CHOOSE_LARGEFILE(openat,openat64)
  49. #define readdir_or_readdir64 CHOOSE_LARGEFILE(readdir,readdir64)
  50. #if SCM_HAVE_READDIR64_R == 1
  51. # define readdir_r_or_readdir64_r CHOOSE_LARGEFILE(readdir_r,readdir64_r)
  52. #else
  53. # define readdir_r_or_readdir64_r readdir_r
  54. #endif
  55. #define stat_or_stat64 CHOOSE_LARGEFILE(stat,stat64)
  56. #define fstatat_or_fstatat64 CHOOSE_LARGEFILE(fstatat,fstatat64)
  57. #define truncate_or_truncate64 CHOOSE_LARGEFILE(truncate,truncate64)
  58. #define scm_from_off_t_or_off64_t CHOOSE_LARGEFILE(scm_from_off_t,scm_from_int64)
  59. #define scm_from_ino_t_or_ino64_t CHOOSE_LARGEFILE(scm_from_ulong,scm_from_uint64)
  60. #define scm_from_blkcnt_t_or_blkcnt64_t CHOOSE_LARGEFILE(scm_from_ulong,scm_from_uint64)
  61. #define scm_to_off_t_or_off64_t CHOOSE_LARGEFILE(scm_to_off_t,scm_to_int64)
  62. #if SIZEOF_OFF_T == 4
  63. # define scm_to_off_t scm_to_int32
  64. # define scm_from_off_t scm_from_int32
  65. #elif SIZEOF_OFF_T == 8
  66. # define scm_to_off_t scm_to_int64
  67. # define scm_from_off_t scm_from_int64
  68. #else
  69. # error sizeof(off_t) is not 4 or 8.
  70. #endif
  71. #define scm_to_off64_t scm_to_int64
  72. #define scm_from_off64_t scm_from_int64
  73. #endif /* SCM_SYSCALLS_H */