Navigation Menu

Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: f9b7714b4b3f
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 3f5d5847e2f4
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Aug 9, 2013

  1. node: remove domain nextTick

    It's ridiculously cheap to check if process.domain is set. Don't bother
    cluttering the code.
    trevnorris committed Aug 9, 2013
    Copy the full SHA
    2ef1782 View commit details
    Browse the repository at this point in the history
  2. domain: share object and state with native land

    Change process.domain to use a getter/setter and access that property
    via an array index. These are much faster to get from c++, and it can be
    passed to _setupDomainUse and stored as a Persistent<Array>.
    
    InDomain() and GetDomain() as trivial ways to access the domain
    information in the native layer. Important because we'll be able to
    quickly access if a domain is active. Instead of just whether the domain
    module has been loaded.
    trevnorris committed Aug 9, 2013
    4
    Copy the full SHA
    3f5d584 View commit details
    Browse the repository at this point in the history