1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 06:38:07 +00:00

Update bitmap.md

This commit is contained in:
0xAX 2016-03-12 20:05:26 +06:00
parent 9ba14909eb
commit 2d1aa8b9a7

View File

@ -33,7 +33,7 @@ The second way is to use the `DECLARE_BITMAP` macro which is defined in the [inc
unsigned long name[BITS_TO_LONGS(bits)]
```
We can see that `DECLARE_BITMAP` takes two parameters:
We can see that `DECLARE_BITMAP` macro takes two parameters:
* `name` - name of bitmap;
* `bits` - amount of bits in bitmap;