Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/x86_64/libk++/bitmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
#define BMP_BLOCK_SIZE 8

namespace firefly::libkern {
typedef struct
typedef struct _bitmap_t
{
uint32_t* pool;
} bitmap_t;

constexpr int BIT_SET = 1;
constexpr int BIT_CLEAR = 0;

typedef struct
typedef struct _bitmap_res_t
{
bool success;
int64_t bit_offset; // Only used by get() & find_first()
Expand Down