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: f4f4a2b9f8f1
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: fcca3585fea0
Choose a head ref
  • 11 commits
  • 13 files changed
  • 7 contributors

Commits on Dec 2, 2013

  1. process: document kill(0), disallow kill(O_RDWR)

    The null signal test existed, but only tested the case where the target
    process existed, not when it did not exist.
    
    Also clarified that SIGUSR1 is reserved by Node.js only for receiveing,
    its not at all reserved when sending a signal with kill().
    
    kill(pid, 'O_RDWR'), or any other node constant, "worked". I fixed this
    by also checking for 'SIG'. The same as done in the isSignal() function.
    Now the signal names supported by process.kill() are the same as those
    supported by process.on().
    sam-github authored and trevnorris committed Dec 2, 2013
    Copy the full SHA
    8aac118 View commit details
    Browse the repository at this point in the history
  2. doc: change constant to consistent

    gabrielf authored and tjfontaine committed Dec 2, 2013
    Copy the full SHA
    94c4ba9 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    bd7fa92 View commit details
    Browse the repository at this point in the history
  4. tls: fix pool usage race

    When calling `encOut` in loop, `maybeInitFinished()` may invoke
    `clearOut`'s loop, leading to the writing of interleaved data
    (encrypted and cleartext) into the one shared pool.
    
    Move `maybeInitFinished()` out of the loop and add assertion for
    future.
    indutny authored and tjfontaine committed Dec 2, 2013
    Copy the full SHA
    60f777d View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2013

  1. blog: bnoordhuis departure

    isaacs committed Dec 4, 2013
    Copy the full SHA
    b371d4a View commit details
    Browse the repository at this point in the history
  2. crypto: Make Decipher._flush() emit errors.

    When Decipher processes a stream using an incorrect key, the
    DecipherFinal() method throws an unhandled exception at the end of the
    stream.
    groner authored and indutny committed Dec 4, 2013
    Copy the full SHA
    98be8df View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2013

  1. Copy the full SHA
    796834b View commit details
    Browse the repository at this point in the history
  2. doc: mention execArgv in setupMaster

    yorkie authored and tjfontaine committed Dec 6, 2013
    Copy the full SHA
    5cfee92 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2013

  1. build: ./configure pass positional args to gyp

    use `--` to specify the arguments you want to pass directly to gyp.
    
    for example: `./configure -- --no-parallel -Dsome_define=foo`
    
    fixes #6370
    tjfontaine committed Dec 7, 2013
    Copy the full SHA
    b5e1619 View commit details
    Browse the repository at this point in the history
  2. build: pass --no-parallel by default to gyp

    gyp by default now tries to process gyp files in parallel by using
    python's multiprocessing module, but it has problems on oddball
    platforms. We don't have many files or complex dependency chains that
    would benefit from parallel processing so disable by deafult
    
    fixes #6640
    tjfontaine committed Dec 7, 2013
    Copy the full SHA
    2905884 View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'upstream/v0.10'

    Conflicts:
    	lib/tls.js
    	src/node.js
    tjfontaine committed Dec 7, 2013
    Copy the full SHA
    fcca358 View commit details
    Browse the repository at this point in the history