diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-09-23 15:01:41 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-09-23 15:02:13 +0200 |
commit | 22be093ffb403a1c474037939ca9b88b1ee39f77 (patch) | |
tree | 99b06c7fa271316661a2c3e2ea9bd69ff370a53f /src/hashmap.h | |
parent | 647703fecb8c9928d0f13fd95d17fd5f2280c7e1 (diff) |
readahead: implement minimal readahead logic based on fanotify(), mincore() and readahead()
Diffstat (limited to 'src/hashmap.h')
-rw-r--r-- | src/hashmap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hashmap.h b/src/hashmap.h index c48d6b31f6..ac5a8ae085 100644 --- a/src/hashmap.h +++ b/src/hashmap.h @@ -72,6 +72,7 @@ void *hashmap_iterate_skip(Hashmap *h, const void *key, Iterator *i); void hashmap_clear(Hashmap *h); void *hashmap_steal_first(Hashmap *h); +void *hashmap_steal_first_key(Hashmap *h); void* hashmap_first(Hashmap *h); void* hashmap_last(Hashmap *h); |