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
7bdf807b
Commit
7bdf807b
authored
Aug 04, 2020
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FlexRAN timers: Remove destroy_timers()
parent
db933da1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
13 deletions
+0
-13
openair2/ENB_APP/flexran_agent_timer.c
openair2/ENB_APP/flexran_agent_timer.c
+0
-10
openair2/ENB_APP/flexran_agent_timer.h
openair2/ENB_APP/flexran_agent_timer.h
+0
-3
No files found.
openair2/ENB_APP/flexran_agent_timer.c
View file @
7bdf807b
...
...
@@ -248,16 +248,6 @@ err_code_t flexran_agent_create_timer(mid_t mod_id,
return
0
;
}
err_code_t
flexran_agent_destroy_timers
(
mid_t
mod_id
)
{
struct
timesync
*
sync
=
&
timesync
[
mod_id
];
pthread_mutex_lock
(
&
sync
->
mutex_timer
);
for
(
int
i
=
sync
->
timer_num
-
1
;
i
<
0
;
--
i
)
{
flexran_agent_timer_remove_internal
(
sync
,
i
);
}
pthread_mutex_unlock
(
&
sync
->
mutex_timer
);
return
0
;
}
err_code_t
flexran_agent_destroy_timer
(
mid_t
mod_id
,
xid_t
xid
)
{
struct
timesync
*
sync
=
&
timesync
[
mod_id
];
pthread_mutex_lock
(
&
sync
->
mutex_timer
);
...
...
openair2/ENB_APP/flexran_agent_timer.h
View file @
7bdf807b
...
...
@@ -61,9 +61,6 @@ err_code_t flexran_agent_create_timer(mid_t mod_id,
flexran_agent_timer_callback_t
cb
,
Protocol__FlexranMessage
*
msg
);
/* Destroy all existing timers */
err_code_t
flexran_agent_destroy_timers
(
mid_t
mod_id
);
/* Destroy the timer for task with id xid */
err_code_t
flexran_agent_destroy_timer
(
mid_t
mod_id
,
xid_t
xid
);
...
...
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