You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
556 B
15 lines
556 B
#ifndef _ASM_GENERIC_BITOPS_MINIX_H_
|
|
#define _ASM_GENERIC_BITOPS_MINIX_H_
|
|
|
|
#define minix_test_and_set_bit(nr,addr) \
|
|
__test_and_set_bit((nr),(unsigned long *)(addr))
|
|
#define minix_set_bit(nr,addr) \
|
|
__set_bit((nr),(unsigned long *)(addr))
|
|
#define minix_test_and_clear_bit(nr,addr) \
|
|
__test_and_clear_bit((nr),(unsigned long *)(addr))
|
|
#define minix_test_bit(nr,addr) \
|
|
test_bit((nr),(unsigned long *)(addr))
|
|
#define minix_find_first_zero_bit(addr,size) \
|
|
find_first_zero_bit((unsigned long *)(addr),(size))
|
|
|
|
#endif /* _ASM_GENERIC_BITOPS_MINIX_H_ */
|
|
|