Merge branches/quickjs to trunk. This is the way.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3621 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
17
src/trace.h
Normal file
17
src/trace.h
Normal file
@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
typedef struct _tf_trace_t tf_trace_t;
|
||||
typedef struct sqlite3 sqlite3;
|
||||
|
||||
tf_trace_t* tf_trace_create();
|
||||
void tf_trace_destroy(tf_trace_t* trace);
|
||||
|
||||
void tf_trace_counter(tf_trace_t* trace, const char* name, int argc, const char** arg_names, const int64_t* arg_values);
|
||||
void tf_trace_begin(tf_trace_t* trace, const char* name);
|
||||
void tf_trace_end(tf_trace_t* trace);
|
||||
|
||||
char* tf_trace_export(tf_trace_t* trace);
|
||||
|
||||
void tf_trace_sqlite(tf_trace_t* trace, sqlite3* sqlite);
|
Reference in New Issue
Block a user