(svn r7331) - Codechange: Rename all memory pool macro's and types to "old pool", so the new pool implementation can be committed alongside it.

- Codechange: Rename pool.[ch] to oldpool.[ch].
This commit is contained in:
matthijs
2006-12-03 17:27:43 +00:00
parent e205c58ddc
commit 231111ce3d
28 changed files with 67 additions and 67 deletions

View File

@@ -36,7 +36,7 @@ static void WaypointPoolNewBlock(uint start_item)
for (wp = GetWaypoint(start_item); wp != NULL; wp = (wp->index + 1U < GetWaypointPoolSize()) ? GetWaypoint(wp->index + 1U) : NULL) wp->index = start_item++;
}
DEFINE_POOL(Waypoint, Waypoint, WaypointPoolNewBlock, NULL)
DEFINE_OLD_POOL(Waypoint, Waypoint, WaypointPoolNewBlock, NULL)
/* Create a new waypoint */
static Waypoint* AllocateWaypoint(void)