kernel_types.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  8. *
  9. * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
  10. */
  11. #ifndef __ASM_GENERIC_POSIX_TYPES_H
  12. #define __ASM_GENERIC_POSIX_TYPES_H
  13. typedef unsigned int __kernel_dev_t;
  14. typedef unsigned int __kernel_ino_t;
  15. typedef unsigned int __kernel_mode_t;
  16. typedef unsigned long __kernel_nlink_t;
  17. typedef long __kernel_off_t;
  18. typedef int __kernel_pid_t;
  19. typedef unsigned int __kernel_uid_t;
  20. typedef unsigned int __kernel_gid_t;
  21. typedef unsigned int __kernel_size_t;
  22. typedef int __kernel_ssize_t;
  23. typedef long __kernel_ptrdiff_t;
  24. typedef long __kernel_time_t;
  25. typedef long __kernel_suseconds_t;
  26. typedef long __kernel_clock_t;
  27. typedef int __kernel_daddr_t;
  28. typedef char * __kernel_caddr_t;
  29. typedef int __kernel_ipc_pid_t;
  30. typedef unsigned short __kernel_uid16_t;
  31. typedef unsigned short __kernel_gid16_t;
  32. typedef unsigned int __kernel_uid32_t;
  33. typedef unsigned int __kernel_gid32_t;
  34. typedef unsigned int __kernel_old_uid_t;
  35. typedef unsigned int __kernel_old_gid_t;
  36. typedef __kernel_dev_t __kernel_old_dev_t;
  37. typedef long long __kernel_loff_t;
  38. typedef long __kernel_long_t;
  39. typedef unsigned long __kernel_ulong_t;
  40. typedef struct {
  41. int val[2];
  42. } __kernel_fsid_t;
  43. #endif /* __ASM_GENERIC_POSIX_TYPES_H */