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 / req_wrap.h @ 6f92da2d

History | View | Annotate | Download (2.72 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.

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

src: lint c++ code

d11e7c20 07/19/2013 05:41 PM Ben Noordhuis

src: ReqWrap now optionally accepts a wrap object

c679ac8f 07/11/2013 09:37 AM Ben Noordhuis

build: fix windows build

Be very careful with forward declarations, MSVC is quite picky and
rather stupid about it.

Fixes #5810.

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.

8428b52e 04/10/2013 05:51 PM Trevor Norris

req_wrap: only grab domain object if in use

591cfe6b 04/10/2013 05:51 PM Trevor Norris

src: add node_isolate to remaining scopes

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...

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...
636add24 05/15/2012 02:59 PM Ben Noordhuis

req_wrap: share process_symbol, domain_symbol

Share persistent strings process_symbol and domain_symbol across compilation
units. Avoids redefinition errors when src/node.cc includes src/req_wrap.h.

10ce3d12 04/17/2012 04:14 PM isaacs

Domain hooks in ReqWrap<T> and MakeCallback

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

Add missing copyright headers

39ea2747 09/04/2011 10:44 PM Ryan Dahl

Return ReqWrap from internal fs functions

1ae14890 07/18/2011 06:08 AM Ryan Dahl

Abstract StreamWrap from TCPWrap