Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
716de3f5
Commit
716de3f5
authored
Jun 20, 2014
by
Vinzenz Feenstra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build fixes
Signed-off-by:
Vinzenz Feenstra
<
evilissimo@gmail.com
>
parent
ddabda9a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
src/core/threading.cpp
src/core/threading.cpp
+1
-1
src/core/types.h
src/core/types.h
+2
-1
No files found.
src/core/threading.cpp
View file @
716de3f5
...
...
@@ -150,7 +150,7 @@ static void _thread_context_dump(int signum, siginfo_t* info, void* _context) {
if
(
VERBOSITY
()
>=
2
)
{
printf
(
"in thread_context_dump, tid=%d
\n
"
,
tid
);
printf
(
"%p %p %p
\n
"
,
context
,
&
context
,
context
->
uc_mcontext
.
fpregs
);
printf
(
"old rip: 0x%lx
\n
"
,
context
->
uc_mcontext
.
gregs
[
REG_RIP
]);
printf
(
"old rip: 0x%l
l
x
\n
"
,
context
->
uc_mcontext
.
gregs
[
REG_RIP
]);
}
pushThreadState
(
tid
,
context
);
...
...
src/core/types.h
View file @
716de3f5
...
...
@@ -215,7 +215,8 @@ public:
typedef
std
::
vector
<
CompiledFunction
*>
FunctionList
;
class
CallRewriteArgs
;
struct
CLFunction
{
class
CLFunction
{
public:
int
num_args
;
int
num_defaults
;
bool
takes_varargs
,
takes_kwargs
;
...
...
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