Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel'
[palacios.git] / kitten / include / arch-generic / bitops / hweight.h
1 #ifndef _ASM_GENERIC_BITOPS_HWEIGHT_H_
2 #define _ASM_GENERIC_BITOPS_HWEIGHT_H_
3
4 #include <arch/types.h>
5
6 extern unsigned int hweight32(unsigned int w);
7 extern unsigned int hweight16(unsigned int w);
8 extern unsigned int hweight8(unsigned int w);
9 extern unsigned long hweight64(__u64 w);
10
11 #endif /* _ASM_GENERIC_BITOPS_HWEIGHT_H_ */