Dynamically sized multi-word bit masks.
#include <bitmask.h> cc ... -lbitmask
struct bitmask *bitmask_alloc(unsigned int nbits); void bitmask_free(struct bitmask *bmp);
int bitmask_displayhex(char *buf, int len, const struct bitmask *bmp); int bitmask_displaylist(char *buf, int len, const struct bitmask *bmp); int bitmask_parsehex(const char *buf, struct bitmask *bmp); int bitmask_parselist(const char *buf, struct bitmask *bmp);
struct bitmask *bitmask_copy(struct bitmask *bmp1, const bitmask *bmp2); struct bitmask *bitmask_setall(struct bitmask *bmp); struct bitmask *bitmask_clearall(struct bitmask *bmp);
unsigned int bitmask_nbytes(struct bitmask *bmp); unsigned long *bitmask_mask(struct bitmask *bmp);
unsigned int bitmask_nbits(const struct bitmask *bmp); unsigned int bitmask_weight(const struct bitmask *bmp);
int bitmask_isbitset(const struct bitmask *bmp, unsigned int i); int bitmask_isbitclear(const struct bitmask *bmp, unsigned int i); int bitmask_isallset(const struct bitmask *bmp); int bitmask_isallclear(const struct bitmask *bmp);
struct bitmask *bitmask_setbit(struct bitmask *bmp, unsigned int i); struct bitmask *bitmask_clearbit(struct bitmask *bmp, unsigned int i);
int bitmask_equal(const struct bitmask *bmp1, const bitmask *bmp2); int bitmask_subset(const struct bitmask *bmp1, const bitmask *bmp2); int bitmask_disjoint(const struct bitmask *bmp1, const bitmask *bmp2); int bitmask_intersects(const struct bitmask *bmp1, const bitmask *bmp2);
struct bitmask *bitmask_setrange(struct bitmask *bmp, unsigned int i, unsigned int j); struct bitmask *bitmask_clearrange(struct bitmask *bmp, unsigned int i, unsigned int j); struct bitmask *bitmask_keeprange(struct bitmask *bmp, unsigned int i, unsigned int j);
struct bitmask *bitmask_complement(struct bitmask *bmp1, const bitmask *bmp2); struct bitmask *bitmask_shiftright(struct bitmask *bmp1, const bitmask *bmp2, unsigned int n); struct bitmask *bitmask_shiftleft(struct bitmask *bmp1, const bitmask *bmp2, unsigned int n);
struct bitmask *bitmask_and(struct bitmask *bmp1, const bitmask *bmp2, const bitmask *bmp3); struct bitmask *bitmask_andnot(struct bitmask *bmp1, const bitmask *bmp2, const bitmask *bmp3); struct bitmask *bitmask_or(struct bitmask *bmp1, const bitmask *bmp2, const bitmask *bmp3); struct bitmask *bitmask_eor(struct bitmask *bmp1, const bitmask *bmp2, const bitmask *bmp3);
int bitmask_first(const struct bitmask *bmp); unsigned int bitmask_next(const struct bitmask *bmp, unsigned int i); unsigned int bitmask_rel_to_abs_pos(const struct bitmask *bmp, unsigned int n); unsigned int bitmask_abs_to_rel_pos(const struct bitmask *bmp, unsigned int n); unsigned int bitmask_last(const struct bitmask *bmp);
See further /usr/share/doc/packages/libbitmask/libbitmask.html. This document is also available in plain text format as /usr/share/doc/packages/libbitmask/libbitmask.txt.
cpuset(1), libcpuset(3), bootcpuset.conf(5), bootcpuset(8).
[email protected] (Paul Jackson)