Browse Source

include/starpu_bitmap.h: add missing starpu_bitmap_has_next() function prototype

Nathalie Furmento 11 years ago
parent
commit
e1166e9eb0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      include/starpu_bitmap.h

+ 2 - 0
include/starpu_bitmap.h

@@ -44,4 +44,6 @@ int starpu_bitmap_first(struct starpu_bitmap *);
 int starpu_bitmap_last(struct starpu_bitmap *);
 //return the index of bit right after e, -1 if none
 int starpu_bitmap_next(struct starpu_bitmap *, int e);
+int starpu_bitmap_has_next(struct starpu_bitmap * b, int e);
+
 #endif