mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 10:16:41 +00:00
Grabbed from kernel. Probably worth to gather all bits manipulators here in future. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
7 lines
207 B
C
7 lines
207 B
C
#ifndef __CR_BITMAP_H__
|
|
#define __CR_BITMAP_H__
|
|
|
|
extern void bitmap_set(unsigned long *map, int start, int nr);
|
|
extern void bitmap_clear(unsigned long *map, int start, int nr);
|
|
|
|
#endif /* __CR_BITMAP_H__ */
|