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
c703a783
Commit
c703a783
authored
Feb 24, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove logging module dependency from Tpool
parent
3999fe5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
+4
-10
common/utils/threadPool/thread-pool.h
common/utils/threadPool/thread-pool.h
+4
-10
No files found.
common/utils/threadPool/thread-pool.h
View file @
c703a783
...
...
@@ -30,7 +30,6 @@
#include <unistd.h>
#include <sys/syscall.h>
#include <assertions.h>
#include <LOG/log.h>
#include <common/utils/system.h>
//#include <stdatomic.h>
...
...
@@ -103,13 +102,9 @@ static inline void *NotifiedFifoData(notifiedFIFO_elt_t *elt) {
}
static
inline
void
delNotifiedFIFO_elt
(
notifiedFIFO_elt_t
*
elt
)
{
if
(
elt
->
malloced
)
{
elt
->
malloced
=
false
;
free
(
elt
);
}
else
printf
(
"delNotifiedFIFO on something not allocated by newNotifiedFIFO
\n
"
);
//LOG_W(UTIL,"delNotifiedFIFO on something not allocated by newNotifiedFIFO\n");
AssertFatal
(
elt
->
malloced
,
"delNotifiedFIFO on something not allocated by newNotifiedFIFO
\n
"
);
elt
->
malloced
=
false
;
free
(
elt
);
}
static
inline
void
initNotifiedFIFO_nothreadSafe
(
notifiedFIFO_t
*
nf
)
{
...
...
@@ -148,8 +143,7 @@ static inline notifiedFIFO_elt_t *pullNotifiedFIFO_nothreadSafe(notifiedFIFO_t
notifiedFIFO_elt_t
*
ret
=
nf
->
outF
;
if
(
nf
->
outF
==
nf
->
outF
->
next
)
LOG_E
(
UTIL
,
"Circular list in thread pool: push several times the same buffer is forbidden
\n
"
);
AssertFatal
(
nf
->
outF
!=
nf
->
outF
->
next
,
"Circular list in thread pool: push several times the same buffer is forbidden
\n
"
);
nf
->
outF
=
nf
->
outF
->
next
;
...
...
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