#ifndef _THREADS_T_H_
#define _THREADS_T_H_

typedef struct threads_s {
    int iq;
    int one;
    int two;
    int three;
    int slot1_proc_one;
    int slot1_proc_two;
    int slot1_proc_three;
} threads_t;

#endif /* _THREADS_T_H_ */