aboutsummaryrefslogtreecommitdiff
path: root/inc/map.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-27 00:37:19 +0200
committerMarvin Borner2023-05-27 00:37:19 +0200
commitac039e6fcbdec3dc6c8e28013e1b3a20068c84ee (patch)
treee0b9db6a303e1369054b478cc44a8ea7d3d7d44d /inc/map.h
parent90a0366ba0556314b8624a3f46c667eaf5824e4c (diff)
Basic schedule initialization
Diffstat (limited to 'inc/map.h')
-rw-r--r--inc/map.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/map.h b/inc/map.h
index 427cee5..790d42f 100644
--- a/inc/map.h
+++ b/inc/map.h
@@ -5,10 +5,13 @@
#define CALM_MAP_H
#include <lib/hash.h>
+#include <lib/pqueue.h>
struct term *map_get(hash_t hash);
void map_set(struct term *term, hash_t hash);
void map_initialize(void);
void map_destroy(void);
+struct pqueue *map_to_pqueue(pqueue_cmp_pri_f cmppri, pqueue_get_pri_f getpri,
+ pqueue_set_pos_f set_pos);
#endif