diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2009-11-20 13:02:38 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-11-20 13:02:38 -0500 |
commit | e9b2a22da6a5a4cc49b410681bd5cf228f1e8fc3 (patch) | |
tree | d7a0c7f4b1265797d807bf3a2745bba45a79e0dd /runtime | |
parent | 34642a03789b139d9e33253ab42744852199af1f (diff) | |
download | systemtap-steved-e9b2a22da6a5a4cc49b410681bd5cf228f1e8fc3.tar.gz systemtap-steved-e9b2a22da6a5a4cc49b410681bd5cf228f1e8fc3.tar.xz systemtap-steved-e9b2a22da6a5a4cc49b410681bd5cf228f1e8fc3.zip |
cleanup: explain -5 magic value used in map-sorting code
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/map.c b/runtime/map.c index 74467f30..20d8a48c 100644 --- a/runtime/map.c +++ b/runtime/map.c @@ -412,7 +412,7 @@ static void _stp_pmap_del(PMAP pmap) } /* sort keynum values */ -#define SORT_COUNT -5 +#define SORT_COUNT -5 /* see also translate.cxx:visit_foreach_loop */ #define SORT_SUM -4 #define SORT_MIN -3 #define SORT_MAX -2 |