summaryrefslogtreecommitdiff
path: root/src/mintdb/perf_taler_mintdb.c
diff options
context:
space:
mode:
authorFournier Nicolas <nicolas.fournier@ensta-paristech.fr>2015-06-26 15:32:20 +0200
committerFournier Nicolas <nicolas.fournier@ensta-paristech.fr>2015-06-26 15:32:20 +0200
commit5963e1136fcc566e9fc3070839ddaee518854d8f (patch)
treeae4c3eac224810de2c083942a694a2a4a7e14db6 /src/mintdb/perf_taler_mintdb.c
parent47262f4316874f321ffdcbcdcb1d98c182375730 (diff)
downloadexchange-5963e1136fcc566e9fc3070839ddaee518854d8f.tar.gz
exchange-5963e1136fcc566e9fc3070839ddaee518854d8f.tar.bz2
exchange-5963e1136fcc566e9fc3070839ddaee518854d8f.zip
Remade memory management strategy of the interpreter.
Diffstat (limited to 'src/mintdb/perf_taler_mintdb.c')
-rw-r--r--src/mintdb/perf_taler_mintdb.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mintdb/perf_taler_mintdb.c b/src/mintdb/perf_taler_mintdb.c
index ed7e80b3d..50d351e2a 100644
--- a/src/mintdb/perf_taler_mintdb.c
+++ b/src/mintdb/perf_taler_mintdb.c
@@ -33,10 +33,15 @@ main (int argc, char ** argv)
struct GNUNET_CONFIGURATION_Handle *config;
struct PERF_TALER_MINTDB_Cmd test[] =
{
+ // Denomination used to create coins
+ PERF_TALER_MINTDB_INIT_CMD_INSERT_DENOMINATION ("denomination"),
+
+ PERF_TALER_MINTDB_INIT_CMD_DEBUG ("denomination inserted"),
PERF_TALER_MINTDB_INIT_CMD_LOOP ("loop_db_init_deposit",
PERF_TALER_MINTDB_NB_DEPOSIT_INIT),
PERF_TALER_MINTDB_INIT_CMD_START_TRANSACTION ("start_transaction_init"),
- PERF_TALER_MINTDB_INIT_CMD_INSERT_DEPOSIT ("init_deposit_insert"),
+ PERF_TALER_MINTDB_INIT_CMD_INSERT_DEPOSIT ("init_deposit_insert",
+ "denomination"),
PERF_TALER_MINTDB_INIT_CMD_COMMIT_TRANSACTION ("commit_transaction_init"),
PERF_TALER_MINTDB_INIT_CMD_SAVE_ARRAY ("array_depo",
"loop_db_init_deposit",
@@ -45,13 +50,12 @@ main (int argc, char ** argv)
PERF_TALER_MINTDB_DEPOSIT),
PERF_TALER_MINTDB_INIT_CMD_END_LOOP ("endloop_init_deposit",
"loop_db_init_deposit"),
- PERF_TALER_MINTDB_INIT_CMD_DEBUG("INIT_END"),
// End of database initialization
PERF_TALER_MINTDB_INIT_CMD_GET_TIME ("deposit_get_start"),
PERF_TALER_MINTDB_INIT_CMD_LOOP ("loop_deposit_get",
PERF_TALER_MINTDB_NB_DEPOSIT_GET),
PERF_TALER_MINTDB_INIT_CMD_START_TRANSACTION ("start_transaction_get"),
- PERF_TALER_MINTDB_INIT_CMD_LOAD_ARRAY ("load deposit",
+ PERF_TALER_MINTDB_INIT_CMD_LOAD_ARRAY ("load_deposit",
"loop_deposit_get",
"array_depo"),
PERF_TALER_MINTDB_INIT_CMD_GET_DEPOSIT ("get_deposit",