blob: 04f71ca971cfa4f8376f879b9d227321b861cd2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "worker.h"
void ZoO_worker_initialize_parameters
(
struct ZoO_worker_parameters worker_params;
const struct ZoO_server_message msg_buffer [const restrict static 1],
const struct ZoO_parameters params [const restrict static 1]
)
{
worker_params->thread_id = 0;
pthread_barrier_t * barrier;
mqd_t * server_mailbox;
const struct ZoO_pipe_names * pipe_names;
/* Program data */
ZoO_index markov_order;
struct ZoO_knowledge * k;
const char * storage_filename;
/* TODO */
}
|