search for: find_bitmap_one

Displaying 1 result from an estimated 1 matches for "find_bitmap_one".

2000 May 02
0
patch for .samba-2.0.7/source/lib/bitmap.c
...09:00:59 @@ -21,35 +21,42 @@ #include "includes.h" extern int DEBUGLEVEL; +#define BITMAP_ALIGN 32 +#define UINT32_BITS 32 +#define UINT32_ALLONE (0xffffffffUL) + /* these functions provide a simple way to allocate integers from a pool without repitition */ +static int find_bitmap_one( uint32 bitmaps ); + + /**************************************************************************** allocate a bitmap of the specified size ****************************************************************************/ struct bitmap *bitmap_allocate(int n) { - struct bitmap *bm; + size_t...