Minor profiling improvements.  Add a couple of cost centers.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@223 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/vg_include.h b/vg_include.h
index 4b36e44..61d5517 100644
--- a/vg_include.h
+++ b/vg_include.h
@@ -293,9 +293,11 @@
 
 #define VGP_M_STACK 10
 
-#define VGP_M_CCS 24  /* == the # of elems in VGP_LIST */
+#define VGP_M_CCS 26  /* == the # of elems in VGP_LIST */
 #define VGP_LIST \
-   VGP_PAIR(VgpRun=0,      "running"),                \
+   VGP_PAIR(VgpUnc=0,      "unclassified"),           \
+   VGP_PAIR(VgpRun,        "running"),                \
+   VGP_PAIR(VgpSched,      "scheduler"),              \
    VGP_PAIR(VgpMalloc,     "low-lev malloc/free"),    \
    VGP_PAIR(VgpCliMalloc,  "client  malloc/free"),    \
    VGP_PAIR(VgpTranslate,  "translate-main"),         \