Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David Price
openairinterface5G
Commits
ea858d54
Commit
ea858d54
authored
Feb 20, 2017
by
Cedric Roux
Browse files
integration fix: strerror has to be used, not perror
The command line to get the error was: ./build_oai --eNB -w EXMIMO -c
parent
b82e7c1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
targets/RT/USER/lte-ue.c
View file @
ea858d54
...
...
@@ -135,7 +135,7 @@ void init_thread(int sched_runtime, int sched_deadline, int sched_fifo, cpu_set_
attr
.
sched_deadline
=
sched_deadline
;
attr
.
sched_period
=
0
;
AssertFatal
(
sched_setattr
(
0
,
&
attr
,
0
)
==
0
,
"[SCHED] %s thread: sched_setattr failed %s
\n
"
,
name
,
p
error
(
errno
));
"[SCHED] %s thread: sched_setattr failed %s
\n
"
,
name
,
str
error
(
errno
));
LOG_I
(
HW
,
"[SCHED][eNB] %s deadline thread %lu started on CPU %d
\n
"
,
name
,
(
unsigned
long
)
gettid
(),
sched_getcpu
());
}
...
...
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