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
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
ZhouShuya
OpenXG-RAN
Commits
f39dd5df
Commit
f39dd5df
authored
Dec 13, 2017
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix: handle variable start_eNB in restart
parent
fea64122
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
openair2/ENB_APP/flexran_agent_common_internal.c
openair2/ENB_APP/flexran_agent_common_internal.c
+3
-0
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+2
-1
No files found.
openair2/ENB_APP/flexran_agent_common_internal.c
View file @
f39dd5df
...
@@ -62,6 +62,9 @@ void handle_reconfiguration(mid_t mod_id)
...
@@ -62,6 +62,9 @@ void handle_reconfiguration(mid_t mod_id)
return
;
return
;
}
}
enb_app_start_phy_rrc
(
mod_id
,
mod_id
+
1
);
enb_app_start_phy_rrc
(
mod_id
,
mod_id
+
1
);
MessageDef
*
msg_p
=
itti_alloc_new_message
(
TASK_ENB_APP
,
INITIALIZE_MESSAGE
);
itti_send_msg_to_task
(
TASK_L2L1
,
INSTANCE_DEFAULT
,
msg_p
);
int
diff_ms
=
(
1000
*
clock
()
-
start_ms
)
/
CLOCKS_PER_SEC
;
int
diff_ms
=
(
1000
*
clock
()
-
start_ms
)
/
CLOCKS_PER_SEC
;
LOG_I
(
ENB_APP
,
"lte-softmodem restart succeeded in %d ms
\n
"
,
diff_ms
);
LOG_I
(
ENB_APP
,
"lte-softmodem restart succeeded in %d ms
\n
"
,
diff_ms
);
}
}
...
...
targets/RT/USER/lte-softmodem.c
View file @
f39dd5df
...
@@ -555,7 +555,8 @@ void *l2l1_task(void *arg) {
...
@@ -555,7 +555,8 @@ void *l2l1_task(void *arg) {
case
TERMINATE_MESSAGE
:
case
TERMINATE_MESSAGE
:
LOG_W
(
TASK_L2L1
,
" *** Exiting L2L1 thread
\n
"
);
LOG_W
(
TASK_L2L1
,
" *** Exiting L2L1 thread
\n
"
);
oai_exit
=
1
;
oai_exit
=
1
;
start_eNB
=
0
;
itti_exit_task
();
itti_exit_task
();
break
;
break
;
...
...
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