diff --git a/include/ck_bitmap.h b/include/ck_bitmap.h index 0c86b69..56536c0 100644 --- a/include/ck_bitmap.h +++ b/include/ck_bitmap.h @@ -142,4 +142,11 @@ ck_bitmap_test(struct ck_bitmap *bitmap, unsigned int n) return block & mask; } +CK_CC_INLINE static void * +ck_bitmap_buffer(struct ck_bitmap *bitmap) +{ + + return bitmap->map; +} + #endif /* _CK_BITMAP_H */