Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
e566e874
Commit
e566e874
authored
Oct 11, 2020
by
Michael Cook
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for using gprof profiling
parent
c81d80bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
cmake_targets/CMakeLists.txt
cmake_targets/CMakeLists.txt
+7
-3
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+11
-0
No files found.
cmake_targets/CMakeLists.txt
View file @
e566e874
...
@@ -177,9 +177,13 @@ set(CMAKE_CXX_FLAGS
...
@@ -177,9 +177,13 @@ set(CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
${
C_FLAGS_PROCESSOR
}
-Wno-packed-bitfield-compat -fPIC -Wall -fno-strict-aliasing -rdynamic -std=c++11 -D
${
MKVER
}
"
"
${
CMAKE_CXX_FLAGS
}
${
C_FLAGS_PROCESSOR
}
-Wno-packed-bitfield-compat -fPIC -Wall -fno-strict-aliasing -rdynamic -std=c++11 -D
${
MKVER
}
"
)
)
#set(SANITIZER "-fsanitize=address")
# Uncomment these lines to enable the address sanitizer
set
(
CMAKE_C_FLAGS
"
${
CMAKE_C_FLAGS
}
${
SANITIZER
}
"
)
#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address")
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
${
SANITIZER
}
"
)
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address")
# Uncomment these lines to enable gprof profiling
#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pg -DUSING_GPROF")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg -DUSING_GPROF")
add_definitions
(
"-DASN_DISABLE_OER_SUPPORT"
)
add_definitions
(
"-DASN_DISABLE_OER_SUPPORT"
)
...
...
targets/RT/USER/lte-softmodem.c
View file @
e566e874
...
@@ -95,6 +95,9 @@ unsigned short config_frames[4] = {2,9,11,13};
...
@@ -95,6 +95,9 @@ unsigned short config_frames[4] = {2,9,11,13};
#include "NB_IoT_interface.h"
#include "NB_IoT_interface.h"
#include <executables/split_headers.h>
#include <executables/split_headers.h>
#if USING_GPROF
# include "sys/gmon.h"
#endif
pthread_cond_t
nfapi_sync_cond
;
pthread_cond_t
nfapi_sync_cond
;
pthread_mutex_t
nfapi_sync_mutex
;
pthread_mutex_t
nfapi_sync_mutex
;
...
@@ -738,6 +741,14 @@ int main ( int argc, char **argv )
...
@@ -738,6 +741,14 @@ int main ( int argc, char **argv )
if
(
IS_SOFTMODEM_DOFORMS
)
if
(
IS_SOFTMODEM_DOFORMS
)
load_softscope
(
"enb"
);
load_softscope
(
"enb"
);
itti_wait_tasks_end
();
itti_wait_tasks_end
();
#if USING_GPROF
// Save the gprof data now (rather than via atexit) in case we crash while shutting down
fprintf
(
stderr
,
"Recording gprof data...
\n
"
);
_mcleanup
();
fprintf
(
stderr
,
"Recording gprof data...done
\n
"
);
#endif // USING_GPROF
oai_exit
=
1
;
oai_exit
=
1
;
LOG_I
(
ENB_APP
,
"oai_exit=%d
\n
"
,
oai_exit
);
LOG_I
(
ENB_APP
,
"oai_exit=%d
\n
"
,
oai_exit
);
// stop threads
// stop threads
...
...
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