From e37656f2e58ca802f0df5eef42b35e4015b58d86 Mon Sep 17 00:00:00 2001 From: fonsinchen Date: Mon, 10 Feb 2014 20:13:07 +0000 Subject: (svn r26331) -Fix: some inconsistencies regarding link graph (job) IDs. --- src/core/pool_type.hpp | 3 +++ src/linkgraph/linkgraph.h | 2 +- src/linkgraph/linkgraph_type.h | 2 +- src/linkgraph/linkgraphjob.h | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/core/pool_type.hpp b/src/core/pool_type.hpp index 74ade5790..25067ae27 100644 --- a/src/core/pool_type.hpp +++ b/src/core/pool_type.hpp @@ -81,6 +81,9 @@ private: */ template struct Pool : PoolBase { + /* Ensure Tmax_size is within the bounds of Tindex. */ + assert_compile((Tmax_size - 1) >> 8 * sizeof(Tindex) == 0); + static const size_t MAX_SIZE = Tmax_size; ///< Make template parameter accessible from outside const char * const name; ///< Name of this pool diff --git a/src/linkgraph/linkgraph.h b/src/linkgraph/linkgraph.h index 811a955e5..4bcc27b31 100644 --- a/src/linkgraph/linkgraph.h +++ b/src/linkgraph/linkgraph.h @@ -27,7 +27,7 @@ class LinkGraph; * Type of the pool for link graph components. Each station can be in at up to * 32 link graphs. So we allow for plenty of them to be created. */ -typedef Pool LinkGraphPool; +typedef Pool LinkGraphPool; /** The actual pool with link graphs. */ extern LinkGraphPool _link_graph_pool; diff --git a/src/linkgraph/linkgraph_type.h b/src/linkgraph/linkgraph_type.h index 277e56c73..330461841 100644 --- a/src/linkgraph/linkgraph_type.h +++ b/src/linkgraph/linkgraph_type.h @@ -16,7 +16,7 @@ typedef uint16 LinkGraphID; static const LinkGraphID INVALID_LINK_GRAPH = UINT16_MAX; typedef uint16 LinkGraphJobID; -static const LinkGraphID INVALID_LIN_KGRAPH_JOB = UINT16_MAX; +static const LinkGraphID INVALID_LINK_GRAPH_JOB = UINT16_MAX; typedef uint16 NodeID; static const NodeID INVALID_NODE = UINT16_MAX; diff --git a/src/linkgraph/linkgraphjob.h b/src/linkgraph/linkgraphjob.h index f6979db74..130379220 100644 --- a/src/linkgraph/linkgraphjob.h +++ b/src/linkgraph/linkgraphjob.h @@ -21,7 +21,7 @@ class Path; typedef std::list PathList; /** Type of the pool for link graph jobs. */ -typedef Pool LinkGraphJobPool; +typedef Pool LinkGraphJobPool; /** The actual pool with link graph jobs. */ extern LinkGraphJobPool _link_graph_job_pool; -- cgit v1.2.3-54-g00ecf