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.
23 lines
451 B
23 lines
451 B
15 years ago
|
#ifndef _LINUX_RANGE_H
|
||
|
#define _LINUX_RANGE_H
|
||
|
|
||
|
struct range {
|
||
|
u64 start;
|
||
|
u64 end;
|
||
|
};
|
||
|
|
||
|
int add_range(struct range *range, int az, int nr_range,
|
||
|
u64 start, u64 end);
|
||
|
|
||
|
|
||
|
int add_range_with_merge(struct range *range, int az, int nr_range,
|
||
|
u64 start, u64 end);
|
||
|
|
||
|
void subtract_range(struct range *range, int az, u64 start, u64 end);
|
||
|
|
||
|
int clean_sort_range(struct range *range, int az);
|
||
|
|
||
|
void sort_range(struct range *range, int nr_range);
|
||
|
|
||
|
#endif
|