Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KOS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Karsten
KOS
Commits
3d2fc2ae
Commit
3d2fc2ae
authored
6 years ago
by
Martin Karsten
Browse files
Options
Downloads
Patches
Plain Diff
- minor bug in gdb extension
- clerical updates
parent
00eda33d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/libfibre/Makefile
+1
-1
1 addition, 1 deletion
src/libfibre/Makefile
src/libfibre/libfibre.so-gdb.py
+5
-3
5 additions, 3 deletions
src/libfibre/libfibre.so-gdb.py
src/testoptions.h
+1
-1
1 addition, 1 deletion
src/testoptions.h
with
7 additions
and
5 deletions
src/libfibre/Makefile
+
1
−
1
View file @
3d2fc2ae
...
...
@@ -36,7 +36,7 @@ CXXFLAGS=$(LANGFLAGS) $(OPTFLAGS) $(DBGFLAGS) $(COMPFLAGS) $(CFGFLAGS)
PREFLAGS
=
$(
LANGFLAGS
)
$(
OPTFLAGS
)
$(
COMPFLAGS
)
$(
KERNFLAGS
)
$(
CFGFLAGS
)
#SPLITSTACK=-fsplit-stack -DSPLIT_STACK
CXXFLAGS
+=
-fpic
-fno-extern-tls-init
$(
SPLITSTACK
)
CXXFLAGS
+=
-fpic
$(
SPLITSTACK
)
ifneq
($(OPTIM),1)
#CXXFLAGS+=-fsanitize=address # and/or other -fsanitize options
...
...
This diff is collapsed.
Click to expand it.
src/libfibre/libfibre.so-gdb.py
+
5
−
3
View file @
3d2fc2ae
...
...
@@ -152,10 +152,12 @@ class InfoFibres(gdb.Command):
print
(
"
(*)
"
,
end
=
''
)
with
FibreSupport
.
get_frame
(
FibreSupport
.
list
[
i
])
as
frame
:
if
frame
is
not
None
:
sal
=
frame
.
find_sal
()
symtab
=
sal
.
symtab
print
(
"
in
"
,
frame
.
name
(),
sep
=
''
,
end
=
''
)
print
(
"
at
"
,
symtab
.
filename
,
"
:
"
,
sal
.
line
,
sep
=
''
)
sal
=
frame
.
find_sal
()
if
sal
is
not
None
and
sal
.
symtab
is
not
None
:
print
(
"
at
"
,
sal
.
symtab
.
filename
,
"
:
"
,
sal
.
line
,
sep
=
''
)
else
:
print
()
else
:
print
()
...
...
This diff is collapsed.
Click to expand it.
src/testoptions.h
+
1
−
1
View file @
3d2fc2ae
...
...
@@ -21,7 +21,7 @@
//#define TESTING_IDLE_SPIN 128 // spin before idle/halt threshold
//#define TESTING_MUTEX_FIFO 1 // use fifo/baton mutex
//#define TESTING_MUTEX_SPIN 1 // spin before block in non-fifo mutex
//#define TESTING_PLACEMENT_RR 1 // RR placement, instead of load-based
//#define TESTING_PLACEMENT_RR 1 // RR placement, instead of load-based
staging
#define TESTING_WAKE_CLUSTER 1 // try waking idle processor on cluster backlog
#define TESTING_WORK_STEALING 1 // enable work stealing (default transient)
#define TESTING_WORK_STEALING_STICKY 5 // sticky work stealing load threshold
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment