Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
openairinterface-6g
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
openairinterface-6g
Commits
7157d4bc
Commit
7157d4bc
authored
Sep 19, 2025
by
Laurent THOMAS
Committed by
Robert Schmidt
Oct 30, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add trace when the main NR UE thread ends and when NR UE sets oai_exit variable
parent
75a68167
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
executables/nr-ue.c
executables/nr-ue.c
+1
-1
executables/nr-uesoftmodem.c
executables/nr-uesoftmodem.c
+3
-7
No files found.
executables/nr-ue.c
View file @
7157d4bc
...
...
@@ -1091,7 +1091,7 @@ void *UE_thread(void *arg)
stream_status
=
STREAM_STATUS_SYNCED
;
tx_wait_for_dlsch
[
slot
]
=
0
;
}
LOG_W
(
NR_PHY
,
"UE main thread is ending
\n
"
);
return
NULL
;
}
...
...
executables/nr-uesoftmodem.c
View file @
7157d4bc
...
...
@@ -139,10 +139,7 @@ int create_tasks_nrue(uint32_t ue_nb) {
void
exit_function
(
const
char
*
file
,
const
char
*
function
,
const
int
line
,
const
char
*
s
,
const
int
assert
)
{
int
CC_id
;
if
(
s
!=
NULL
)
{
printf
(
"%s:%d %s() Exiting OAI softmodem: %s
\n
"
,
file
,
line
,
function
,
s
);
}
LOG_W
(
NR_PHY
,
"called by: %s:%d %s() Exiting OAI softmodem: %s
\n
"
,
file
,
line
,
function
,
s
?
s
:
"no msg"
);
oai_exit
=
1
;
...
...
@@ -496,9 +493,8 @@ int main(int argc, char **argv)
printf
(
"Entering ITTI signals handler
\n
"
);
printf
(
"TYPE <CTRL-C> TO TERMINATE
\n
"
);
itti_wait_tasks_end
(
trigger_deregistration
);
printf
(
"Returned from ITTI signal handler
\n
"
);
oai_exit
=
1
;
printf
(
"oai_exit=%d
\n
"
,
oai_exit
);
LOG_W
(
NR_PHY
,
"Returned from ITTI signal handler
\n
"
);
oai_exit
=
1
;
if
(
ouput_vcd
)
vcd_signal_dumper_close
();
...
...
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