diff src/llrb/llrbContext.c @ 22:4c3c0ad4a75d

add benchmark method
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Tue, 28 Apr 2015 17:39:44 +0900
parents 737a900518be
children 868c2918b634
line wrap: on
line diff
--- a/src/llrb/llrbContext.c	Tue Apr 28 14:34:59 2015 +0900
+++ b/src/llrb/llrbContext.c	Tue Apr 28 17:39:44 2015 +0900
@@ -2,6 +2,8 @@
 extern __code code1(struct Context*);
 extern __code code2(struct Context*);
 extern __code code3(struct Context*);
+extern __code code4(struct Context*);
+extern __code code5(struct Context*);
 extern __code meta(struct Context*);
 extern __code allocate(struct Context*);
 extern __code put(struct Context*);
@@ -14,6 +16,8 @@
     context->code[Code1]    = code1;
     context->code[Code2]    = code2;
     context->code[Code3]    = code3;
+    context->code[Code4]    = code4;
+    context->code[Code5]    = code5;
     context->code[Allocate] = allocate;
     context->code[Put]      = put;
     context->code[InsertD]  = insertDown;