diff options
author | Marvin Borner | 2023-05-27 00:37:19 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-27 00:37:19 +0200 |
commit | ac039e6fcbdec3dc6c8e28013e1b3a20068c84ee (patch) | |
tree | e0b9db6a303e1369054b478cc44a8ea7d3d7d44d /inc/map.h | |
parent | 90a0366ba0556314b8624a3f46c667eaf5824e4c (diff) |
Basic schedule initialization
Diffstat (limited to 'inc/map.h')
-rw-r--r-- | inc/map.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |