Subversion Repositories HelenOS-historic

Rev

Rev 1757 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1757 Rev 1780
Line 53... Line 53...
53
 *
53
 *
54
 * @param bitmap Bitmap structure.
54
 * @param bitmap Bitmap structure.
55
 * @param map Address of the memory used to hold the map.
55
 * @param map Address of the memory used to hold the map.
56
 * @param bits Number of bits stored in bitmap.
56
 * @param bits Number of bits stored in bitmap.
57
 */
57
 */
58
void bitmap_initialize(bitmap_t *bitmap, __u8 *map, count_t bits)
58
void bitmap_initialize(bitmap_t *bitmap, uint8_t *map, count_t bits)
59
{
59
{
60
    bitmap->map = map;
60
    bitmap->map = map;
61
    bitmap->bits = bits;
61
    bitmap->bits = bits;
62
}
62
}
63
 
63