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
1b8c81a3
Commit
1b8c81a3
authored
Dec 21, 2023
by
Eurecom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a label can only be a part of a statement
parent
6a1704f0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
+7
-5
executables/lte-softmodem.c
executables/lte-softmodem.c
+1
-1
executables/nr-gnb.c
executables/nr-gnb.c
+4
-2
openair1/SIMULATION/NR_PHY/dlschsim.c
openair1/SIMULATION/NR_PHY/dlschsim.c
+1
-1
openair1/SIMULATION/NR_PHY/dlsim.c
openair1/SIMULATION/NR_PHY/dlsim.c
+1
-1
No files found.
executables/lte-softmodem.c
View file @
1b8c81a3
...
...
@@ -451,7 +451,7 @@ static int num_threads(char* params)
//pool->activated=false;
break
;
default:
default:
;
int
core_id
=
atoi
(
curptr
);
printf
(
"create a thread for core %d
\n
"
,
core_id
);
// set the thread name for debugging
...
...
executables/nr-gnb.c
View file @
1b8c81a3
...
...
@@ -503,14 +503,16 @@ int num_threads(char* params)
int
c
=
toupper
(
curptr
[
0
]);
switch
(
c
)
{
case
'N'
:
case
'N'
:
{
//pool->activated=false;
break
;
}
default:
default:
{
int
core_id
=
atoi
(
curptr
);
printf
(
"create a thread for core %d
\n
"
,
core_id
);
nbThreads
++
;
}
}
curptr
=
strtok_r
(
NULL
,
","
,
&
saveptr
);
...
...
openair1/SIMULATION/NR_PHY/dlschsim.c
View file @
1b8c81a3
...
...
@@ -118,7 +118,7 @@ int num_threads(char* parms_cpy)
//pool->activated=false;
break
;
default:
default:
;
int
const
core_id
=
atoi
(
curptr
);
printf
(
"create a thread for core %d
\n
"
,
core_id
);
nbThreads
++
;
...
...
openair1/SIMULATION/NR_PHY/dlsim.c
View file @
1b8c81a3
...
...
@@ -278,7 +278,7 @@ int num_threads(char* parms_cpy)
//pool->activated=false;
break
;
default:
default:
;
int
const
core_id
=
atoi
(
curptr
);
printf
(
"create a thread for core %d
\n
"
,
core_id
);
nbThreads
++
;
...
...
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