kernel_types.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* Note that we use the exact same include guard #define names
  2. * as asm/posix_types.h. This will avoid gratuitous conflicts
  3. * with the posix_types.h kernel header, and will ensure that
  4. * our private content, and not the kernel header, will win.
  5. * -Erik
  6. */
  7. #ifndef __ASM_AVR32_POSIX_TYPES_H
  8. #define __ASM_AVR32_POSIX_TYPES_H
  9. /*
  10. * This file is generally used by user-level software, so you need to
  11. * be a little careful about namespace pollution etc. Also, we cannot
  12. * assume GCC is being used.
  13. */
  14. typedef unsigned long __kernel_dev_t;
  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. typedef long __kernel_long_t;
  41. typedef unsigned long __kernel_ulong_t;
  42. #ifdef __GNUC__
  43. typedef long long __kernel_loff_t;
  44. #endif
  45. typedef struct {
  46. #if defined(__USE_ALL)
  47. int val[2];
  48. #else
  49. int __val[2];
  50. #endif
  51. } __kernel_fsid_t;
  52. #endif /* __ASM_AVR32_POSIX_TYPES_H */