File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
traceReader:
2
+ ``` C
2
3
typedef struct {
3
4
int time_field;
4
5
int obj_id_field;
@@ -122,18 +123,20 @@ int close_reader(reader_t *const reader);
122
123
* /
123
124
reader_t * clone_reader(const reader_t * const reader);
124
125
125
-
126
+ ```
126
127
127
128
cache and cacheAlgo:
128
129
130
+ ```C
129
131
static inline request_t *new_request();
130
132
static inline void copy_request(request_t *req_dest, request_t *req_src);
131
133
static inline request_t *clone_request(request_t *req);
132
134
static inline void free_request(request_t *req);
133
135
static inline void print_request(request_t *req);
134
-
136
+ ```
135
137
136
138
simulator:
139
+ ``` C
137
140
sim_res_t *
138
141
simulate_at_multi_sizes (reader_t * const reader,
139
142
const cache_t * const cache,
@@ -151,7 +154,7 @@ simulate_at_multi_sizes_with_step_size(reader_t *const reader_in,
151
154
reader_t * const warmup_reader,
152
155
const double warmup_perc,
153
156
const gint num_of_threads);
154
-
157
+ ```
155
158
156
159
157
160
You can’t perform that action at this time.
0 commit comments