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

Fix profiler not building on ruby-head (3.2) due to VM refactoring #2066

Merged
merged 2 commits into from
Jun 7, 2022

Commits on Jun 6, 2022

  1. Fix support for Ruby 3.2 (> preview1)

    A new `struct rb_native_thread` was introduced to contain the
    `thread_id`.
    
    Fixes #2065
    ivoanjo committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    f545994 View commit details
    Browse the repository at this point in the history
  2. Fix "warning: old-style function definition"

    The correct modern way to declare a function which takes no arguments
    is `void foo(void)` not `void foo()`.
    ivoanjo committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    61e6943 View commit details
    Browse the repository at this point in the history