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
spbro
OpenXG-RAN
Commits
d1002cc7
Commit
d1002cc7
authored
Mar 01, 2024
by
Laurent THOMAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move declarations out from log.h to a better place
parent
2129ee3c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
12 deletions
+11
-12
common/utils/LOG/log.c
common/utils/LOG/log.c
+9
-0
common/utils/LOG/log.h
common/utils/LOG/log.h
+0
-11
common/utils/utils.h
common/utils/utils.h
+1
-0
openair2/PHY_INTERFACE/phy_stub_UE.c
openair2/PHY_INTERFACE/phy_stub_UE.c
+1
-1
No files found.
common/utils/LOG/log.c
View file @
d1002cc7
...
...
@@ -48,6 +48,8 @@
#include <stdatomic.h>
#include "common/utils/LOG/log.h"
#define LOG_MEM_SIZE 100*1024*1024
// main log variables
// Fixme: a better place to be shure it is called
...
...
@@ -58,6 +60,13 @@ void read_cpu_hardware (void) __attribute__ ((constructor));
void
read_cpu_hardware
(
void
)
{}
#endif
typedef
struct
{
char
*
buf_p
;
int
buf_index
;
int
enable_flag
;
}
log_mem_cnt_t
;
static
log_mem_cnt_t
log_mem_d
[
2
];
static
int
log_mem_flag
=
0
;
volatile
int
log_mem_side
=
0
;
...
...
common/utils/LOG/log.h
View file @
d1002cc7
...
...
@@ -57,8 +57,6 @@
#ifdef NDEBUG
#warning assert is disabled
#endif
#define NUM_ELEMENTS(ARRAY) (sizeof(ARRAY) / sizeof(ARRAY[0]))
#define CHECK_INDEX(ARRAY, INDEX) assert((INDEX) < NUM_ELEMENTS(ARRAY))
#ifdef __cplusplus
extern
"C"
{
...
...
@@ -295,17 +293,8 @@ int is_newline( char *str, int size);
int
register_log_component
(
char
*
name
,
char
*
fext
,
int
compidx
);
#define LOG_MEM_SIZE 100*1024*1024
#define LOG_MEM_FILE "./logmem.log"
void
flush_mem_to_file
(
void
);
int
logInit_log_mem
(
char
*
);
void
close_log_mem
(
void
);
typedef
struct
{
char
*
buf_p
;
int
buf_index
;
int
enable_flag
;
}
log_mem_cnt_t
;
/** @}*/
...
...
common/utils/utils.h
View file @
d1002cc7
...
...
@@ -18,6 +18,7 @@ extern "C" {
#endif
#define sizeofArray(a) (sizeof(a)/sizeof(*(a)))
#define CHECK_INDEX(ARRAY, INDEX) assert((INDEX) < sizeofArray(ARRAY))
#define cmax(a,b) ((a>b) ? (a) : (b))
#define cmax3(a,b,c) ((cmax(a,b)>c) ? (cmax(a,b)) : (c))
...
...
openair2/PHY_INTERFACE/phy_stub_UE.c
View file @
d1002cc7
...
...
@@ -1957,7 +1957,7 @@ static int get_mcs_from_sinr(float sinr)
static
int
get_cqi_from_mcs
(
void
)
{
static
const
int
mcs_to_cqi
[]
=
{
0
,
1
,
2
,
3
,
3
,
4
,
4
,
5
,
5
,
6
,
6
,
7
,
7
,
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
,
12
,
12
,
13
,
13
,
14
,
14
,
15
,
15
};
assert
(
NUM_ELEMENTS
(
mcs_to_cqi
)
==
NUM_MCS
);
assert
(
sizeofArray
(
mcs_to_cqi
)
==
NUM_MCS
);
int
sf
=
0
;
while
(
sf
<
NUM_NFAPI_SUBFRAME
)
{
...
...
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