-
Notifications
You must be signed in to change notification settings - Fork 0
/
hwc1.h
45 lines (35 loc) · 963 Bytes
/
hwc1.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef HWC1_H_INCLUDED
#define HWC1_H_INCLUDED
#define BUFFER_ERROR (msg_t *) NULL;
pthread_mutex_t usoD;
pthread_mutex_t usoT;
sem_t vuote;
sem_t piene;
typedef struct msg
{
void* content;
struct msg* (*msg_init)(void*);
void (*msg_destroy)(struct msg *);
struct msg* (*msg_copy)(struct msg *);
} msg_t;
typedef struct buffer {
msg_t* buf;
unsigned int maxsize;
int D;
int T;
} buffer_t;
//struttura dati per passare entrambi i parametri al thread
typedef struct params {
buffer_t* buffer;
msg_t* msg;
} params_t;
void msg_destroy_string(msg_t* msg);
msg_t* msg_copy_string(msg_t* msg);
msg_t* msg_init_string(void* content);
buffer_t* buffer_init(unsigned int maxsize);
void buffer_destroy(buffer_t* buffer);
msg_t* put_bloccante(buffer_t* buffer, msg_t* msg);
msg_t* put_non_bloccante(buffer_t* buffer, msg_t* msg);
msg_t* get_bloccante(buffer_t* buffer);
msg_t* get_non_bloccante(buffer_t* buffer);
#endif // HWC1_H_INSSCLUDED