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

Register new threads with the collector #31

Merged
merged 3 commits into from
Apr 9, 2021

Commits on Apr 6, 2021

  1. Register new threads with libgc

    New thread creation is bottlenecked through `Thread::new`, so this is
    the ideal place to register its stack as a rootset with the collector.
    jacob-hughes committed Apr 6, 2021
    Configuration menu
    Copy the full SHA
    5334dd5 View commit details
    Browse the repository at this point in the history
  2. Initialize boehm at the entry_point (pre-main)

    Multithreaded GC needs to do some collector setup before any mutator
    work is done.
    jacob-hughes committed Apr 6, 2021
    Configuration menu
    Copy the full SHA
    b0094c0 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2021

  1. Exclude debuginfo tests from bors

    Stepping through a debugger is more difficult now Boehm has its own
    SIGSEGV handler. These tests are deprecated anyway, and the rust team
    are working on removing them.
    
    More info: rust-lang#47163
    jacob-hughes committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    94b0ef8 View commit details
    Browse the repository at this point in the history