bitops.h 857 B

1234567891011121314151617181920212223242526272829
  1. #ifndef __TOOLS_ASM_GENERIC_BITOPS_H
  2. #define __TOOLS_ASM_GENERIC_BITOPS_H
  3. /*
  4. * tools/ copied this from include/asm-generic/bitops.h, bit by bit as it needed
  5. * some functions.
  6. *
  7. * For the benefit of those who are trying to port Linux to another
  8. * architecture, here are some C-language equivalents. You should
  9. * recode these in the native assembly language, if at all possible.
  10. *
  11. * C language equivalents written by Theodore Ts'o, 9/26/92
  12. */
  13. #include <asm-generic/bitops/__ffs.h>
  14. #include <asm-generic/bitops/fls.h>
  15. #include <asm-generic/bitops/__fls.h>
  16. #include <asm-generic/bitops/fls64.h>
  17. #include <asm-generic/bitops/find.h>
  18. #ifndef _TOOLS_LINUX_BITOPS_H_
  19. #error only <linux/bitops.h> can be included directly
  20. #endif
  21. #include <asm-generic/bitops/hweight.h>
  22. #include <asm-generic/bitops/atomic.h>
  23. #endif /* __TOOLS_ASM_GENERIC_BITOPS_H */