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

worker: add option to track unmanaged file descriptors #34303

Closed
wants to merge 5 commits into from

Commits on Jul 11, 2020

  1. src: add option to track unmanaged file descriptors

    Add the ability to track “raw” file descriptors, i.e. integers returned
    by `fs.open()`, and close them on `Environment` shutdown, to match the
    behavior for all other resource types (which are also closed on
    shutdown).
    addaleax committed Jul 11, 2020
    Copy the full SHA
    7f24131 View commit details
    Browse the repository at this point in the history
  2. worker: add option to track unmanaged file descriptors

    Add a public option for Workers which adds tracking for raw
    file descriptors, as currently, those resources are not cleaned
    up, unlike e.g. `FileHandle`s.
    addaleax committed Jul 11, 2020
    Copy the full SHA
    8efcacd View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    e462b80 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    9f6bce2 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    8b161c8 View commit details
    Browse the repository at this point in the history