Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make more of the code valid C++ esp. on Darwin (MacOSX). #209

Closed
wants to merge 7 commits into from

Conversation

jaykrell
Copy link
Contributor

No description provided.

…say:

    void foo() { }
    extern "C" { void foo() { } }

Specifically #include darwin_stop_world.h for GC_mprotect_stop GC_mprotect_resume.
Add comment that <mach/exc.h> has some of it, however maybe this varies by host version.
Either cast or use the enum name or depend on globals being zeroed.
Specifically:
  int i;
  int i = 0;
is not valid, but:
  extern int i;
  int i = 0;
is. static would also be desirable here but requires a larger change.
@jaykrell
Copy link
Contributor Author

One CI task seemed to hang. Is there a retry?

@ivmai
Copy link
Owner

ivmai commented Feb 28, 2018

Merged (with some changes). Commits are listed in #206

@ivmai ivmai closed this Feb 28, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants