Commit d7ebaf69 authored by Raymond Knopp's avatar Raymond Knopp

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5488 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent f05e1cb8
...@@ -179,10 +179,14 @@ enum transmission_access_mode{ ...@@ -179,10 +179,14 @@ enum transmission_access_mode{
#endif #endif
typedef struct { typedef struct {
int instance_cnt; int instance_cnt_tx;
pthread_t pthread; int instance_cnt_rx;
pthread_cond_t cond; pthread_t pthread_tx;
pthread_mutex_t mutex; 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 subframe;
int frame_rx; int frame_rx;
int frame_tx; int frame_tx;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment