diff options
author | Alex Auvolat <alex@adnab.me> | 2016-07-15 23:12:14 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2016-07-15 23:12:14 +0200 |
commit | 32407e728971006ed3d0885e01c22fb66c8adc57 (patch) | |
tree | 89483d39e8e2638383f815d4e73b647334fe2fe9 /src/common/include | |
parent | ba4e59a1d687173ac5cfa74d26d71d6059dc6bc6 (diff) | |
download | kogata-32407e728971006ed3d0885e01c22fb66c8adc57.tar.gz kogata-32407e728971006ed3d0885e01c22fb66c8adc57.zip |
Move stuff around, again
Diffstat (limited to 'src/common/include')
-rw-r--r-- | src/common/include/kogata/algo.h (renamed from src/common/include/algo.h) | 0 | ||||
-rw-r--r-- | src/common/include/kogata/btree.h (renamed from src/common/include/btree.h) | 2 | ||||
-rw-r--r-- | src/common/include/kogata/debug.h (renamed from src/common/include/debug.h) | 0 | ||||
-rw-r--r-- | src/common/include/kogata/hashtbl.h (renamed from src/common/include/hashtbl.h) | 2 | ||||
-rw-r--r-- | src/common/include/kogata/malloc.h (renamed from src/common/include/malloc.h) | 0 | ||||
-rw-r--r-- | src/common/include/kogata/mutex.h (renamed from src/common/include/mutex.h) | 0 | ||||
-rw-r--r-- | src/common/include/kogata/printf.h (renamed from src/common/include/printf.h) | 0 | ||||
-rw-r--r-- | src/common/include/kogata/region_alloc.h (renamed from src/common/include/region_alloc.h) | 0 | ||||
-rw-r--r-- | src/common/include/kogata/slab_alloc.h (renamed from src/common/include/slab_alloc.h) | 2 |
9 files changed, 3 insertions, 3 deletions
diff --git a/src/common/include/algo.h b/src/common/include/kogata/algo.h index 80af052..80af052 100644 --- a/src/common/include/algo.h +++ b/src/common/include/kogata/algo.h diff --git a/src/common/include/btree.h b/src/common/include/kogata/btree.h index a645d66..e796a2d 100644 --- a/src/common/include/btree.h +++ b/src/common/include/kogata/btree.h @@ -1,6 +1,6 @@ #pragma once -#include <algo.h> +#include <kogata/algo.h> // A btree may contain several bindings for the same key (in that case they are not ordered) // - btree_find returns any item with matching key, or null if none exists diff --git a/src/common/include/debug.h b/src/common/include/kogata/debug.h index 2db5a80..2db5a80 100644 --- a/src/common/include/debug.h +++ b/src/common/include/kogata/debug.h diff --git a/src/common/include/hashtbl.h b/src/common/include/kogata/hashtbl.h index b9c7178..e8f327c 100644 --- a/src/common/include/hashtbl.h +++ b/src/common/include/kogata/hashtbl.h @@ -1,6 +1,6 @@ #pragma once -#include <algo.h> +#include <kogata/algo.h> // Simple hashtable structure (key -> void*) // Supports adding, seeking, removing, iterating diff --git a/src/common/include/malloc.h b/src/common/include/kogata/malloc.h index e55c25e..e55c25e 100644 --- a/src/common/include/malloc.h +++ b/src/common/include/kogata/malloc.h diff --git a/src/common/include/mutex.h b/src/common/include/kogata/mutex.h index 88c077e..88c077e 100644 --- a/src/common/include/mutex.h +++ b/src/common/include/kogata/mutex.h diff --git a/src/common/include/printf.h b/src/common/include/kogata/printf.h index b4e1c1b..b4e1c1b 100644 --- a/src/common/include/printf.h +++ b/src/common/include/kogata/printf.h diff --git a/src/common/include/region_alloc.h b/src/common/include/kogata/region_alloc.h index d314bd5..d314bd5 100644 --- a/src/common/include/region_alloc.h +++ b/src/common/include/kogata/region_alloc.h diff --git a/src/common/include/slab_alloc.h b/src/common/include/kogata/slab_alloc.h index c8d5d6c..1191057 100644 --- a/src/common/include/slab_alloc.h +++ b/src/common/include/kogata/slab_alloc.h @@ -16,7 +16,7 @@ #include <stdio.h> #define dbg_printf printf #else -#include <debug.h> +#include <kogata/debug.h> #endif #define PAGE_SIZE 0x1000 |