The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / src / handle_wrap.h @ 6f92da2d

History | View | Annotate | Download (3.41 KB)

# Date Author Comment
d4cc30f1 08/03/2013 04:23 PM Ben Noordhuis

src: use PersistentToLocal() in a few more places

Update a few more `Local<T>::New(isolate, persistent)` call sites to
`PersistentToLocal(isolate, persistent)` - the latter has a fast path
for non-weak persistent references.

02cab974 07/31/2013 05:16 PM Ben Noordhuis

src: more lint after cpplint tightening

Commit 847c6d9 adds a 'project headers before system headers' check
to cpplint. Update the files in src/ to make the linter pass again.

8e29ce9f 07/31/2013 02:12 PM Fedor Indutny

src: lint c++ code

110a9cd8 07/06/2013 11:44 AM Ben Noordhuis

lib, src: upgrade after v8 api change

This is a big commit that touches just about every file in the src/
directory. The V8 API has changed in significant ways. The most
important changes are:

  • Binding functions take a const v8::FunctionCallbackInfo<T>& argument...
a7820a15 06/04/2013 06:22 AM Ben Noordhuis

src: replace ngx-queue.h with queue.h

No functional changes, just one less entry in the LICENSE file.

448adaa4 05/29/2013 06:12 PM Ben Noordhuis

src: simplify HandleWrap initialization

0a4ebc3d 04/19/2013 09:24 AM Trevor Norris

src: replace Holder() with This()

Switch to always use args.This() to retrieve object instance.

0bba5902 03/19/2013 08:11 PM Trevor Norris

bindings: update api

All compile time warnings about using deprecated APIs have been
suppressed by updating node's API. Though there are still many function
calls that can accept Isolate, and still need to be updated.

node_isolate had to be added as an extern variable in node.h and...

110cacd1 03/13/2013 02:26 PM isaacs

core: Move UNWRAP_NO_ABORT to handle_wrap.h

Otherwise it cannot be used in StreamWrap.

Forgot to include in last patch, broke the build.

958ab661 03/06/2013 09:32 AM Ben Noordhuis

handle_wrap: add close callback support

3d20905b 03/06/2013 09:25 AM Ben Noordhuis

handle_wrap: replace unref_ field with flags_ field

Prep work for a follow-up commit that adds support for close callbacks.

5e7e51c2 01/28/2013 04:12 PM Bert Belder

cluster: support datagram sockets

3116522e 06/07/2012 03:20 PM Fedor Indutny

child_process: spawn().ref() and spawn().unref()

039fac63 05/22/2012 10:14 AM Ben Noordhuis

deps: upgrade libuv to a478847

The event loop's reference counting scheme in this version of libuv has changed.
Update the libuv bindings to reflect that fact.

5f040653 05/15/2012 03:00 PM Ben Noordhuis

process: add _getActiveHandles(), _getActiveRequests()

  • process._getActiveHandles() returns a list containing all active handles
    (timers, sockets, etc.) that have not been unref'd.
  • process._getActiveRequests() returns a list of active requests (in-flight...
cf20b6bf 12/05/2011 07:47 PM isaacs

Fix #2257 pause/resume semantics for stdin

This makes it so that the stdin TTY-wrap stream gets ref'ed on
.resume() and unref'ed on .pause()

The semantics of the names "pause" and "resume" are a bit weird, but the
important thing is that this corrects an API change from 0.4 -> 0.6...

60818b95 11/02/2011 01:00 PM Ryan Dahl

Add missing copyright headers

7e62bc98 09/27/2011 06:01 PM Ryan Dahl

Move process.stdout unref hack to handle_wrap.cc

See #1726

187fe27a 07/26/2011 09:59 PM Igor Zinkovsky

stdio binding + javascript to enable process.stdin.listen()

85404c5c 07/18/2011 04:47 PM Ryan Dahl

Move HandleWrap rules to one place

0c7bf813 07/18/2011 07:22 AM Ryan Dahl

Abstract out HandleWrap class