Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
d95b519a
Commit
d95b519a
authored
Jan 14, 2015
by
Damien George
Browse files
unix, windows: Don't call mp_unix_mark_exec on windows.
parent
d9dc6fff
Changes
1
Hide whitespace changes
Inline
Side-by-side
unix/gccollect.c
View file @
d95b519a
...
...
@@ -131,7 +131,9 @@ void gc_collect(void) {
// GC stack (and regs because we captured them)
void
**
regs_ptr
=
(
void
**
)(
void
*
)
&
regs
;
gc_collect_root
(
regs_ptr
,
((
mp_uint_t
)
MP_STATE_VM
(
stack_top
)
-
(
mp_uint_t
)
&
regs
)
/
sizeof
(
mp_uint_t
));
#ifndef _WIN32
mp_unix_mark_exec
();
#endif
gc_collect_end
();
//printf("-----\n");
...
...
Write
Preview
Supports
Markdown
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