Skip to content
Snippets Groups Projects
Commit d7ebaf69 authored by knopp's avatar knopp
Browse files

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5488 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent f05e1cb8
No related branches found
No related tags found
No related merge requests found
......@@ -179,10 +179,14 @@ enum transmission_access_mode{
#endif
typedef struct {
int instance_cnt;
pthread_t pthread;
pthread_cond_t cond;
pthread_mutex_t mutex;
int instance_cnt_tx;
int instance_cnt_rx;
pthread_t pthread_tx;
pthread_t pthread_rx;
pthread_cond_t cond_tx;
pthread_cond_t cond_rx;
pthread_mutex_t mutex_tx;
pthread_mutex_t mutex_rx;
int subframe;
int frame_rx;
int frame_tx;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment