This commit is contained in:
JoelKatz
2012-12-11 18:42:17 -08:00
parent 44b3c6eda7
commit bb77dc2bc0
2 changed files with 4 additions and 3 deletions

View File

@@ -26,10 +26,10 @@ enum LoadType
LT_RequestData, // A request that is hard to satisfy, disk access
LT_CheapQuery, // A query that is trivial, cached data
LT_MAX = LT_CheapQuery
LT_MAX // MUST BE LAST
};
// load categoryies
// load categories
static const int LC_Disk = 1;
static const int LC_CPU = 2;
static const int LC_Network = 4;