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 / fs_event_wrap.cc @ 31c510ca

History | View | Annotate | Download (5.51 KB)

# Date Author Comment
51f6e6a9 02/25/2013 05:45 PM Ben Noordhuis

src, test: downgrade to v8 3.14 api

7788a6bf 01/07/2013 11:39 AM Ben Noordhuis

src: pass node_isolate to Undefined()

c7d7ae1f 01/07/2013 11:39 AM Ben Noordhuis

src: pass node_isolate to Null()

01c3d0aa 01/07/2013 11:39 AM Ben Noordhuis

src: pass node_isolate to Local<>::New

6573fc35 01/07/2013 11:39 AM Ben Noordhuis

src: pass node_isolate to Integer::New

412b3cee 01/07/2013 11:39 AM Ben Noordhuis

src: pass node_isolate to String::Empty

5664dd2f 01/04/2013 06:16 PM Ben Noordhuis

src: use static_cast where appropriate

Use static_cast instead of reinterpret_cast when casting from void*
to another type.

This is mostly an aesthetic change but may help catch bugs when the
affected code is modified.

5e57bcc3 01/02/2013 03:13 AM Fedor Indutny

bindings: update to new v8 apis

GetPointerFromInternalField() is deprecated now, we should use
GetAlignedPointerFromInternalField().

db5c26e3 09/13/2012 08:37 PM Ben Noordhuis

fs: fix assert in fs.watch()

Fix the following error:

FSEventWrap: Aborting due to unwrap failure at ../../src/fs_event_wrap.cc:169

It's possible and legal for a handle to be closed twice. HandleWrap::Close()
deals with that by ignoring the second close. Now FSEventWrap::Close() does...

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.

45de259b 05/21/2012 05:29 PM Oleg Efimov

Make UNWRAP macro generic.

a26bee8f 04/17/2012 04:14 PM isaacs

MakeCallback: Consistent symbol usage

249c3c16 03/22/2012 08:02 PM ssuda

Avoiding unnecessary ToString() calls

String::Utf8Value and String::AsciiValue constructors take Handle<Value>
So no need to convert to Handle<String>

ff4a9d38 03/09/2012 06:14 PM Ben Noordhuis

core: use proper #include directives

74a8215a 02/06/2012 09:44 AM Ben Noordhuis

Revert support for isolates.

It was decided that the performance benefits that isolates offer (faster spin-up
times for worker processes, faster inter-worker communication, possibly a lower
memory footprint) are not actual bottlenecks for most people and do not outweigh...

20ba454e 12/28/2011 07:56 PM Ryan Dahl

Add node::Loop() and don't inc node_isolate.h in *.cc

node::Loop() replaces the NODE_LOOP macro. This avoids hitting
v8::Isolate::GetCurrent() for each loop lookup when HAVE_ISOLATE==0

f168f7d7 12/28/2011 07:56 PM Ryan Dahl

Remove node_isolate.h from node.h

356992fe 12/28/2011 07:56 PM Ben Noordhuis

isolates: isolate-ify the main loop

22c2c349 12/07/2011 05:19 PM Ben Noordhuis

fs: fix fs.watch() segmentation fault

The binding layer failed to initialize the event string if both UV_RENAME and
UV_CHANGE were set.

Fixes #2287.

8dd4fcbe 11/10/2011 07:17 AM Ben Noordhuis

fs: don't close uninitialized fs.watch handle

Makes uv_close() assert because the uv_fs_event_t struct contains garbage.

cdcb1118 11/09/2011 10:34 AM Ben Noordhuis

Remove stray NODE_MODULE() semi-colons.

1a9286c6 11/04/2011 09:04 PM Igor Zinkovsky

update fs_event_wrap.cc to work with new uv_fs_event_init api

189dd8f8 11/04/2011 11:24 AM Bert Belder

Fix line endings and trailing whitespace

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

Add missing copyright headers

6cc42927 10/19/2011 07:53 PM Ryan Dahl

Display sys_errno when UV_UNKNOWN is returned

8fe57124 09/23/2011 01:32 AM Igor Zinkovsky

fs watcher binding