PERFORCE change 148676 for review
Mayur Shardul
mayur at FreeBSD.org
Thu Aug 28 04:16:52 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=148676
Change 148676 by mayur at mayur_freebsd_vm on 2008/08/28 04:15:57
Makefile and README for Benchmarking and code cleanup.
Affected files ...
.. //depot/projects/soc2008/mayur_vmalgo/uspace/benchmarking/Makefile#1 add
.. //depot/projects/soc2008/mayur_vmalgo/uspace/benchmarking/README#1 add
.. //depot/projects/soc2008/mayur_vmalgo/uspace/benchmarking/rtree_stree.c#2 edit
.. //depot/projects/soc2008/mayur_vmalgo/uspace/benchmarking/splay_tree.h#2 edit
Differences ...
==== //depot/projects/soc2008/mayur_vmalgo/uspace/benchmarking/rtree_stree.c#2 (text+ko) ====
@@ -3,16 +3,15 @@
#include <errno.h>
#include "splay_tree.h"
-#include "radix_tree.h"
+#include "../radix_tree.h"
#define N 0xffff
#define X 0xfff
void benchmark(int max_idx){
- unsigned long long splay, radix;
struct radix_tree *rtree;
int i,j;
- int vals[N], lookups[N],inserts[N],removes[N];
+ int vals[N], lookups[N],inserts[N];
unsigned long long t_start, t_end,t;
radix_tree_init();
@@ -90,6 +89,7 @@
max_idx[i]);
benchmark(max_idx[i]);
}
+ return 0;
}
==== //depot/projects/soc2008/mayur_vmalgo/uspace/benchmarking/splay_tree.h#2 (text+ko) ====
@@ -25,6 +25,7 @@
unsigned long long splay_insert(int );
unsigned long long splay_remove(int );
+unsigned long long splay_lookup(int );
static int
More information about the p4-projects
mailing list