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
lizhongxiao
OpenXG-RAN
Commits
77b529c3
Commit
77b529c3
authored
Mar 16, 2023
by
Anurag Asokan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Final working changes
parent
c6107fd0
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
173 additions
and
150 deletions
+173
-150
common/utils/ocp_itti/intertask_interface.h
common/utils/ocp_itti/intertask_interface.h
+1
-0
executables/create_tasks.c
executables/create_tasks.c
+4
-0
openair3/SS/ss_eNB_drb_task.c
openair3/SS/ss_eNB_drb_task.c
+167
-150
openair3/SS/ss_eNB_drb_task.h
openair3/SS/ss_eNB_drb_task.h
+1
-0
No files found.
common/utils/ocp_itti/intertask_interface.h
View file @
77b529c3
...
...
@@ -338,6 +338,7 @@ void *rrc_enb_process_msg(void *);
TASK_DEF(TASK_VNG, TASK_PRIORITY_MED, 200, NULL, NULL) \
TASK_DEF(TASK_VTP, TASK_PRIORITY_MED, 200, NULL, NULL) \
TASK_DEF(TASK_SS_DRB, TASK_PRIORITY_MED, 200, NULL, NULL) \
TASK_DEF(TASK_SS_DRB_ACP, TASK_PRIORITY_MED, 200, NULL, NULL) \
TASK_DEF(TASK_VT_TIMER, TASK_PRIORITY_MED, 200, NULL, NULL) \
TASK_DEF(TASK_ENB_APP, TASK_PRIORITY_MED, 200, NULL, NULL) \
TASK_DEF(TASK_GNB_APP, TASK_PRIORITY_MED, 200, NULL, NULL) \
...
...
executables/create_tasks.c
View file @
77b529c3
...
...
@@ -86,6 +86,10 @@ int create_tasks(uint32_t enb_nb) {
rc
=
itti_create_task
(
TASK_SS_DRB
,
ss_eNB_drb_task
,
NULL
);
AssertFatal
(
rc
>=
0
,
"Create task for SS DRB failed
\n
"
);
rc
=
itti_create_task
(
TASK_SS_DRB_ACP
,
ss_eNB_drb_acp_task
,
NULL
);
AssertFatal
(
rc
>=
0
,
"Create task for SS DRB ACP failed
\n
"
);
/* Task for support Virtual Time for TTCN engine */
rc
=
itti_create_task
(
TASK_VTP
,
ss_eNB_vtp_task
,
NULL
);
AssertFatal
(
rc
>=
0
,
"Create task for SS VTP failed
\n
"
);
...
...
openair3/SS/ss_eNB_drb_task.c
View file @
77b529c3
This diff is collapsed.
Click to expand it.
openair3/SS/ss_eNB_drb_task.h
View file @
77b529c3
...
...
@@ -4,6 +4,7 @@
void
ss_eNB_drb_init
(
void
);
void
*
ss_eNB_drb_process_itti_msg
(
void
*
);
void
*
ss_eNB_drb_task
(
void
*
arg
);
void
*
ss_eNB_drb_acp_task
(
void
*
arg
);
#endif
/* SS_ENB_DRB_TASK_H_ */
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