Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
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
Libraries
UERANSIM
Commits
455d044f
Commit
455d044f
authored
Dec 28, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Performance improvements
parent
3ed02713
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
7 deletions
+2
-7
src/ue/nas/layer.cpp
src/ue/nas/layer.cpp
+1
-4
src/ue/nas/layer.hpp
src/ue/nas/layer.hpp
+0
-2
src/ue/nas/task.cpp
src/ue/nas/task.cpp
+1
-1
No files found.
src/ue/nas/layer.cpp
View file @
455d044f
...
...
@@ -70,7 +70,7 @@ void NasLayer::handleSapMessage(std::unique_ptr<NtsMessage> msg)
}
}
void
NasLayer
::
perform
Tick
()
void
NasLayer
::
perform
Cycle
()
{
UeTimer
*
const
arr
[]
=
{
&
m_timers
.
t3346
,
&
m_timers
.
t3396
,
&
m_timers
.
t3444
,
&
m_timers
.
t3445
,
&
m_timers
.
t3502
,
&
m_timers
.
t3510
,
...
...
@@ -90,10 +90,7 @@ void NasLayer::performTick()
}
m_sm
->
onTimerTick
();
}
void
NasLayer
::
performCycle
()
{
m_mm
->
performMmCycle
();
}
...
...
src/ue/nas/layer.hpp
View file @
455d044f
...
...
@@ -32,8 +32,6 @@ class NasLayer
void
onQuit
();
void
performCycle
();
void
performTick
();
void
handleSapMessage
(
std
::
unique_ptr
<
NtsMessage
>
msg
);
};
...
...
src/ue/nas/task.cpp
View file @
455d044f
...
...
@@ -52,7 +52,7 @@ void NasTask::onLoop()
if
(
timerId
==
NTS_TIMER_ID_NAS_TIMER_CYCLE
)
{
setTimer
(
NTS_TIMER_ID_NAS_TIMER_CYCLE
,
NTS_TIMER_INTERVAL_NAS_TIMER_CYCLE
);
layer
->
perform
Tick
();
layer
->
perform
Cycle
();
}
if
(
timerId
==
NTS_TIMER_ID_MM_CYCLE
)
{
...
...
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