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: 9fb041473a15^
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 1016f3471f17
Choose a head ref
  • 8 commits
  • 19 files changed
  • 1 contributor

Commits on May 29, 2013

  1. Copy the full SHA
    9fb0414 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    40b12cb View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    139ab52 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    9f43d24 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    5d0a444 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    2cc2293 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    c7afaf3 View commit details
    Browse the repository at this point in the history
  8. src: optimize streamHandle.writeQueueSize

    Change the writeQueueSize property into a typed array-ish object. It's
    a direct view of the underlying stream->write_queue_size field now.
    
    Makes updating the property free at the cost of one extra object per
    handle. Should be a worthwhile trade-off because it gets updated all
    the time. Before this commit, each update was done with an expensive
    call to v8::Object::Set().
    bnoordhuis committed May 29, 2013
    Copy the full SHA
    1016f34 View commit details
    Browse the repository at this point in the history