diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-05-25 21:15:22 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-05-25 21:15:22 +0200 |
| commit | 54342ed0cc61585d953183ec29309eb0db846b72 (patch) | |
| tree | d852870f968869fd74ccdac1943e02fe5655059e /arch/v1 | |
| parent | 5ce8953bcb98e037f50a37abadf664d95ee69cc2 (diff) | |
Reorganizes includes
Diffstat (limited to 'arch/v1')
| -rw-r--r-- | arch/v1/arch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/v1/arch.c b/arch/v1/arch.c index dc3b316..3a43b43 100644 --- a/arch/v1/arch.c +++ b/arch/v1/arch.c @@ -879,7 +879,7 @@ void arch_push_data_header(void) { assert(g_sim_db); g_info("Creating arch table in SQLite database"); - salis_exec_sql( + sql_exec( 0, NULL, NULL, "create table arch (" #define INST(core, pref, index, label, mnemonic, symbol) \ @@ -952,7 +952,7 @@ void arch_push_data_line(void) { params->size = EVA_SIZE; params->in = (Bytef *)in; params->out = (Bytef *)malloc(EVA_SIZE); - thrd_create(&g_arch_eva_thrds[i][j], (thrd_start_t)salis_deflate, params); + thrd_create(&g_arch_eva_thrds[i][j], (thrd_start_t)comp_deflate, params); } } @@ -967,7 +967,7 @@ void arch_push_data_line(void) { } g_info("Pushing row to arch table in SQLite database"); - salis_exec_sql( + sql_exec( CORES * ARCH_EVENT_ARRAYS_COUNT, (const void **)blobs, (int *)blob_sizes, "insert into arch (" #define INST(core, pref, index, label, mnemonic, symbol) \ @@ -1032,7 +1032,7 @@ void arch_push_data_line(void) { for (int i = 0; i < CORES; ++i) { for (int j = 0; j < ARCH_EVENT_ARRAYS_COUNT; ++j) { struct DeflateParams *params = &g_arch_eva_deflate_params[i][j]; - salis_deflate_end(params); + comp_deflate_end(params); free(params->out); } } |
