/arch/avr32/include/asm/posix_types.h

https://bitbucket.org/thekraven/iscream_thunderc-2.6.35 · C++ Header · 125 lines · 93 code · 16 blank · 16 comment · 4 complexity · 6fd43d84003adbf371efb44cd133f3b6 MD5 · raw file

  1. /*
  2. * Copyright (C) 2004-2006 Atmel Corporation
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef __ASM_AVR32_POSIX_TYPES_H
  9. #define __ASM_AVR32_POSIX_TYPES_H
  10. /*
  11. * This file is generally used by user-level software, so you need to
  12. * be a little careful about namespace pollution etc. Also, we cannot
  13. * assume GCC is being used.
  14. */
  15. typedef unsigned long __kernel_ino_t;
  16. typedef unsigned short __kernel_mode_t;
  17. typedef unsigned short __kernel_nlink_t;
  18. typedef long __kernel_off_t;
  19. typedef int __kernel_pid_t;
  20. typedef unsigned short __kernel_ipc_pid_t;
  21. typedef unsigned int __kernel_uid_t;
  22. typedef unsigned int __kernel_gid_t;
  23. typedef unsigned long __kernel_size_t;
  24. typedef long __kernel_ssize_t;
  25. typedef int __kernel_ptrdiff_t;
  26. typedef long __kernel_time_t;
  27. typedef long __kernel_suseconds_t;
  28. typedef long __kernel_clock_t;
  29. typedef int __kernel_timer_t;
  30. typedef int __kernel_clockid_t;
  31. typedef int __kernel_daddr_t;
  32. typedef char * __kernel_caddr_t;
  33. typedef unsigned short __kernel_uid16_t;
  34. typedef unsigned short __kernel_gid16_t;
  35. typedef unsigned int __kernel_uid32_t;
  36. typedef unsigned int __kernel_gid32_t;
  37. typedef unsigned short __kernel_old_uid_t;
  38. typedef unsigned short __kernel_old_gid_t;
  39. typedef unsigned short __kernel_old_dev_t;
  40. #ifdef __GNUC__
  41. typedef long long __kernel_loff_t;
  42. #endif
  43. typedef struct {
  44. int val[2];
  45. } __kernel_fsid_t;
  46. #if defined(__KERNEL__)
  47. #undef __FD_SET
  48. static __inline__ void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp)
  49. {
  50. unsigned long __tmp = __fd / __NFDBITS;
  51. unsigned long __rem = __fd % __NFDBITS;
  52. __fdsetp->fds_bits[__tmp] |= (1UL<<__rem);
  53. }
  54. #undef __FD_CLR
  55. static __inline__ void __FD_CLR(unsigned long __fd, __kernel_fd_set *__fdsetp)
  56. {
  57. unsigned long __tmp = __fd / __NFDBITS;
  58. unsigned long __rem = __fd % __NFDBITS;
  59. __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem);
  60. }
  61. #undef __FD_ISSET
  62. static __inline__ int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p)
  63. {
  64. unsigned long __tmp = __fd / __NFDBITS;
  65. unsigned long __rem = __fd % __NFDBITS;
  66. return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0;
  67. }
  68. /*
  69. * This will unroll the loop for the normal constant case (8 ints,
  70. * for a 256-bit fd_set)
  71. */
  72. #undef __FD_ZERO
  73. static __inline__ void __FD_ZERO(__kernel_fd_set *__p)
  74. {
  75. unsigned long *__tmp = __p->fds_bits;
  76. int __i;
  77. if (__builtin_constant_p(__FDSET_LONGS)) {
  78. switch (__FDSET_LONGS) {
  79. case 16:
  80. __tmp[ 0] = 0; __tmp[ 1] = 0;
  81. __tmp[ 2] = 0; __tmp[ 3] = 0;
  82. __tmp[ 4] = 0; __tmp[ 5] = 0;
  83. __tmp[ 6] = 0; __tmp[ 7] = 0;
  84. __tmp[ 8] = 0; __tmp[ 9] = 0;
  85. __tmp[10] = 0; __tmp[11] = 0;
  86. __tmp[12] = 0; __tmp[13] = 0;
  87. __tmp[14] = 0; __tmp[15] = 0;
  88. return;
  89. case 8:
  90. __tmp[ 0] = 0; __tmp[ 1] = 0;
  91. __tmp[ 2] = 0; __tmp[ 3] = 0;
  92. __tmp[ 4] = 0; __tmp[ 5] = 0;
  93. __tmp[ 6] = 0; __tmp[ 7] = 0;
  94. return;
  95. case 4:
  96. __tmp[ 0] = 0; __tmp[ 1] = 0;
  97. __tmp[ 2] = 0; __tmp[ 3] = 0;
  98. return;
  99. }
  100. }
  101. __i = __FDSET_LONGS;
  102. while (__i) {
  103. __i--;
  104. *__tmp = 0;
  105. __tmp++;
  106. }
  107. }
  108. #endif /* defined(__KERNEL__) */
  109. #endif /* __ASM_AVR32_POSIX_TYPES_H */