Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG-RAN
Commits
e387747a
Commit
e387747a
authored
Mar 10, 2025
by
francescomani
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/clean-ue-exit' into integration_2025_w10
parents
7506d634
99e67dc5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
6 deletions
+19
-6
executables/nr-ue.c
executables/nr-ue.c
+2
-4
executables/nr-uesoftmodem.c
executables/nr-uesoftmodem.c
+15
-2
openair1/PHY/defs_nr_UE.h
openair1/PHY/defs_nr_UE.h
+2
-0
No files found.
executables/nr-ue.c
View file @
e387747a
...
...
@@ -1162,13 +1162,11 @@ void init_NR_UE(int nb_inst, char *uecap_file, char *reconfig_file, char *rbconf
}
void
init_NR_UE_threads
(
PHY_VARS_NR_UE
*
UE
)
{
pthread_t
thread
;
char
thread_name
[
16
];
sprintf
(
thread_name
,
"UEthread_%d"
,
UE
->
Mod_id
);
threadCreate
(
&
thread
,
UE_thread
,
(
void
*
)
UE
,
thread_name
,
-
1
,
OAI_PRIORITY_RT_MAX
);
threadCreate
(
&
UE
->
main_
thread
,
UE_thread
,
(
void
*
)
UE
,
thread_name
,
-
1
,
OAI_PRIORITY_RT_MAX
);
if
(
!
IS_SOFTMODEM_NOSTATS
)
{
pthread_t
stat_pthread
;
sprintf
(
thread_name
,
"L1_UE_stats_%d"
,
UE
->
Mod_id
);
threadCreate
(
&
stat_p
thread
,
nrL1_UE_stats_thread
,
UE
,
thread_name
,
-
1
,
OAI_PRIORITY_RT_LOW
);
threadCreate
(
&
UE
->
stat_
thread
,
nrL1_UE_stats_thread
,
UE
,
thread_name
,
-
1
,
OAI_PRIORITY_RT_LOW
);
}
}
executables/nr-uesoftmodem.c
View file @
e387747a
...
...
@@ -24,6 +24,7 @@
#include <sched.h>
#include <stdbool.h>
#include <signal.h>
#include <errno.h>
#include "T.h"
#include "common/oai_version.h"
...
...
@@ -572,8 +573,20 @@ int main(int argc, char **argv)
if
(
PHY_vars_UE_g
&&
PHY_vars_UE_g
[
0
])
{
for
(
int
CC_id
=
0
;
CC_id
<
MAX_NUM_CCs
;
CC_id
++
)
{
PHY_VARS_NR_UE
*
phy_vars
=
PHY_vars_UE_g
[
0
][
CC_id
];
if
(
phy_vars
&&
phy_vars
->
rfdevice
.
trx_end_func
)
phy_vars
->
rfdevice
.
trx_end_func
(
&
phy_vars
->
rfdevice
);
if
(
phy_vars
)
{
shutdown_actor
(
&
phy_vars
->
ul_actor
);
for
(
int
i
=
0
;
i
<
NUM_DL_ACTORS
;
i
++
)
{
shutdown_actor
(
&
phy_vars
->
dl_actors
[
i
]);
}
int
ret
=
pthread_join
(
phy_vars
->
main_thread
,
NULL
);
AssertFatal
(
ret
==
0
,
"pthread_join error %d, errno %d (%s)
\n
"
,
ret
,
errno
,
strerror
(
errno
));
if
(
!
IS_SOFTMODEM_NOSTATS
)
{
ret
=
pthread_join
(
phy_vars
->
stat_thread
,
NULL
);
AssertFatal
(
ret
==
0
,
"pthread_join error %d, errno %d (%s)
\n
"
,
ret
,
errno
,
strerror
(
errno
));
}
if
(
phy_vars
->
rfdevice
.
trx_end_func
)
phy_vars
->
rfdevice
.
trx_end_func
(
&
phy_vars
->
rfdevice
);
}
}
}
...
...
openair1/PHY/defs_nr_UE.h
View file @
e387747a
...
...
@@ -549,6 +549,8 @@ typedef struct PHY_VARS_NR_UE_s {
Actor_t
dl_actors
[
NUM_DL_ACTORS
];
Actor_t
ul_actor
;
ntn_config_message_t
*
ntn_config_message
;
pthread_t
main_thread
;
pthread_t
stat_thread
;
}
PHY_VARS_NR_UE
;
typedef
struct
{
...
...
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