History log of /libuv/include/uv.h (Results 376 – 400 of 498)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: node-v0.6.10, node-v0.7.2, node-v0.6.9
# 3ff3626e 25-Jan-2012 Maciej Małecki

unix: map `ELOOP` to `UV_ELOOP`

# 243cfcd0 01-Feb-2012 isaacs

Merge remote-tracking branch 'ry/v0.6'


# 4cfda74d 27-Jan-2012 Brandon Philips

uv.h: add EPERM to errno map to fix regression

EPERM isn't mapped in so chown returns an unknown error. This is a
regression from 0.4.12.

philips:node/ (master*) $ cat chown.js

uv.h: add EPERM to errno map to fix regression

EPERM isn't mapped in so chown returns an unknown error. This is a
regression from 0.4.12.

philips:node/ (master*) $ cat chown.js
var fs = require('fs')
fs.chown("/tmp/foobar", 100, 100, function(er){ console.log(er);})

philips:node/ (master*) $ ls -la /tmp/foobar
total 0
drwxr-xr-x 2 root wheel 68 Jan 24 17:21 .

0.4
---

philips:node/ (master*) $ /usr/local/Cellar/node/0.4.12/bin/node chown.js
{ stack: [Getter/Setter],
arguments: undefined,
type: undefined,
message: 'EPERM, Operation not permitted \'/tmp/foobar\'',
errno: 1,
code: 'EPERM',
path: '/tmp/foobar' }

master
------

philips:node/ (master*) $ ./node chown.js
{ [Error: UNKNOWN, unknown error '/tmp/foobar'] errno: -1, code: 'UNKNOWN', path: '/tmp/foobar' }

AFTER
-----

philips:node/ (master*) $ ./node chown.js
{ [Error: EPERM, operation not permitted '/tmp/foobar'] errno: 49, code: 'EPERM', path: '/tmp/foobar' }

show more ...

Revision tags: node-v0.7.1
# 2ce00582 20-Jan-2012 Igor Zinkovsky

import/export streams accross loops

# 3de04115 27-Jan-2012 Ben Noordhuis

Merge remote-tracking branch 'origin/v0.6'


# b88bc435 23-Jan-2012 Ben Noordhuis

unix: implement uv_udp_set_multicast_loop()

# e710fdb5 23-Jan-2012 Ben Noordhuis

unix: implement uv_udp_set_ttl()

# 02b41f63 23-Jan-2012 Ben Noordhuis

Add missing UV_EXTERN declarations in uv.h

# 24e6c7ec 22-Jan-2012 Maciej Małecki

unix: map `ENAMETOOLONG` to `UV_ENAMETOOLONG`

With tests. Closes #295

Revision tags: node-v0.7.0, node-v0.6.8, node-v0.6.7, node-v0.6.6, node-v0.6.4, node-v0.6.3
# 497b1ecd 23-Nov-2011 Dan VerWeire

unix: add uv_udp_set_broadcast() and uv_udp_set_multicast_ttl()

# 6d9c9a53 13-Jan-2012 Ben Noordhuis

Add uv_loop_refcount() function, debug tool.

# feb267e6 18-Dec-2011 Ben Noordhuis

unix: it's legal for dlsym() to return NULL

A symbol name can map to NULL. Check dlerror() to see if a real error happened.

# 60630dab 01-Dec-2011 Igor Zinkovsky

windows: enable pending pipe instances knob

# dceb3e65 30-Nov-2011 Igor Zinkovsky

uv_cwd + uv_chdir

# c69ccfab 01-Dec-2011 Bruce Mitchener

Remove incorrect documentation comment.

The callback for uv_close does not have a status parameter.

# b684deb4 25-Nov-2011 Bruce Mitchener

Note that uv_is_active works on timers.

# d513d9bb 30-Nov-2011 Bruce Mitchener

Fix typos.

# 01f64f66 25-Nov-2011 Bert Belder

Win: get rid of UV_EAINONAME, use UV_ENOENT instead

Revision tags: node-v0.6.2
# 4ae40b6a 15-Nov-2011 Ryan Dahl

Bump version to v0.6

# 9322dd17 10-Nov-2011 Frank Denis

Use (void) for a function taking no arguments - fix gcc -Wstrict-prototypes

Revision tags: node-v0.6.1
# 48896443 10-Nov-2011 Ben Noordhuis

Fix warning: comma at end of enumerator list

# 6d5ba424 10-Nov-2011 Ryan Dahl

Remove unnecessary errno

# fd2b04d7 10-Nov-2011 Ryan Dahl

Alternative errno strategy

# a378110f 07-Nov-2011 Tj Holowaychuk

Add UV_ESRCH

Fixes #239.

# 51df5e3b 07-Nov-2011 Ben Noordhuis

unix: map EISDIR

1...<<11121314151617181920