mirror of https://github.com/t1meshift/os_labs.git
14 lines
210 B
C
14 lines
210 B
C
|
#ifndef __vector_header_h__
|
||
|
#define __vector_header_h__
|
||
|
|
||
|
#define VECTOR_SIZE (100)
|
||
|
|
||
|
typedef struct __vector {
|
||
|
pthread_mutex_t lock;
|
||
|
int values[VECTOR_SIZE];
|
||
|
} vector_t;
|
||
|
|
||
|
|
||
|
#endif // __vector_header_h__
|
||
|
|