threads_t.h 364 Bytes
#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;
    int dlsch_td_one;
	int dlsch_td_two;
	int dlsch_td_three;
	int dlsch_td1_one;
	int dlsch_td1_two;
	int dlsch_td1_three;
} threads_t;

#endif /* _THREADS_T_H_ */