Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David Price
openairinterface5G
Commits
59d0cf1c
Commit
59d0cf1c
authored
Jan 03, 2017
by
Thomas Laurent
Browse files
fix T macro calls
parent
2612df9e
Changes
2
Hide whitespace changes
Inline
Side-by-side
common/utils/T/T.h
View file @
59d0cf1c
...
...
@@ -188,12 +188,6 @@ extern T_cache_t *T_cache;
#define T_HEADER(x) \
do { \
if (!__builtin_types_compatible_p(typeof(x), struct T_header *)) { \
printf("%s:%d:%s: " \
"bad use of T, pass a message ID as first parameter\n", \
__FILE__, __LINE__, __FUNCTION__); \
abort(); \
} \
struct timespec T_HEADER_time; \
if (clock_gettime(CLOCK_REALTIME, &T_HEADER_time)) abort(); \
memcpy(T_LOCAL_buf, &T_HEADER_time, sizeof(struct timespec)); \
...
...
@@ -205,12 +199,6 @@ extern T_cache_t *T_cache;
#define T_HEADER(x) \
do { \
if (!__builtin_types_compatible_p(typeof(x), struct T_header *)) { \
printf("%s:%d:%s: " \
"bad use of T, pass a message ID as first parameter\n", \
__FILE__, __LINE__, __FUNCTION__); \
abort(); \
} \
T_PUT_int(1, (int)(uintptr_t)(x)); \
} while (0)
...
...
targets/RT/USER/lte-ue.c
View file @
59d0cf1c
...
...
@@ -642,7 +642,7 @@ static void *UE_thread_rxn_txnp4(void *arg) {
AssertFatal
(
pthread_mutex_lock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
pthread_cond_wait
(
&
proc
->
cond_rxtx
,
&
proc
->
mutex_rxtx
);
if
(
(
instance_cnt_rxtx
+
proc
->
sub_frame_step
)
%
10
!=
proc
->
subframe_rx
&&
instance_cnt_rxtx
!=-
1
)
LOG_W
(
PHY
,
"REAL TIME NOT MATCHED: missed a sub-frame: expecting %d, got %d
\n
"
,
LOG_W
(
PHY
,
"REAL TIME NOT MATCHED: missed a sub-frame: expecting %
ll
d, got %d
\n
"
,
(
instance_cnt_rxtx
+
proc
->
sub_frame_step
)
%
10
,
proc
->
subframe_rx
);
instance_cnt_rxtx
=
proc
->
subframe_rx
;
AssertFatal
(
pthread_mutex_unlock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment