Ryan Dahl
40e42e8107
Replace --cflags with --vars
15 years ago
Ryan Dahl
209b219b10
Add environmental varibles to help text
15 years ago
Rasmus Andersson
374300ca8d
Updated patch of node.cc for supporting reading of umask
15 years ago
Ryan Dahl
a258992855
Depreciation process.unloop()
15 years ago
Ryan Dahl
e72b072d53
Decouple timer from EventEmitter
15 years ago
Ryan Dahl
6d60d2db00
Revert "Use kqueue on macintosh"
Experiencing bugs http://github.com/ry/node/issues/#issue/74
This reverts commit 409020a67d
.
15 years ago
Ryan Dahl
e6dbf8d632
Revert "Remove process.unloop()"
People need this for backwards compatibility. Will be removed soon though!
This reverts commit 1e710cafa7
.
15 years ago
Ryan Dahl
1e710cafa7
Remove process.unloop()
15 years ago
Ryan Dahl
409020a67d
Use kqueue on macintosh
15 years ago
Ryan Dahl
d5ee777af2
Don't allow child process to clobber environ
15 years ago
isaacs
0dba38eef0
Fix a bug that was suppressing the error in setgid, allowing it to fail silently.
15 years ago
Ryan Dahl
769a35024f
Allow passing env to child process
15 years ago
Jacek Becela
548d59d07e
Fix fs.readFile handling encoding. Should close issue #72
15 years ago
Ryan Dahl
0e844d3bcb
tcp.Connection.prototype.write should return boolean
15 years ago
Ryan Dahl
62c4214711
Properly throw error on failed connection
15 years ago
Ryan Dahl
fdbc9a82e4
Use EVBACKEND_SELECT on Solaris
Using EVBACKEND_PORT DTraceToolkit-0.99/Proc/syscallbypid.d reports after 5
seconds
PID CMD SYSCALL COUNT
. . . .
. . . .
. . . .
28551 mysqld fcntl 485
24793 httpd gtime 528
28551 mysqld read 707
28551 mysqld gtime 956
21050 rsync pollsys 965
21050 rsync read 965
24793 httpd read 982
28551 mysqld lwp_sigmask 1422
4675 dtrace ioctl 1579
15136 node portfs 15681
15136 node clock_gettime 31358
On a very simple node process.
15 years ago
Felix Geisendörfer
55ab9b4541
Bug fix for deep process.mixin array handling
process.mixin was throwing an exception when trying to do a deep copy
of an object that included an array.
This bug was introduced in: 3bb7ad6fea
15 years ago
Ryan Dahl
b021a845f7
Move process.inherits to sys
15 years ago
Ryan Dahl
30b700ee22
Move watchFile into fs module
15 years ago
Ryan Dahl
810882c1ad
Move 'fs' module out of src/node.js into its own file
15 years ago
kriskowal
2b91f8d265
Fixed spurious suffixes on fs.readlink.
15 years ago
Zoran Tomicic
b2995829e1
Edit PrintHelp() text
15 years ago
Karl Guertin
9ad7539cf9
Add (unused) callback parameter to fs.readFile, fs.writeFile
15 years ago
Jonas Pfenniger
8f59cccb75
Removed deprecation errors in src/node.cc
Removed constness on string litterals. This should cause no problem
since we're not modifying them.
15 years ago
James Duncan
df1c1e593f
Add setgid,getgid
15 years ago
Ryan Dahl
4fd0225e41
Give signal handlers maximum priority
15 years ago
Rasmus Andersson
b57d946184
added fs.link, fs.symlink, fs.readlink
including sync versions and complete tests
15 years ago
Jérémy Lal
ffb4b47367
Fix for when EV_MULTIPLICITY=1
15 years ago
Ryan Dahl
46ebaa00ce
Encoding 0 length data, returns '' instead of null
15 years ago
Ryan Dahl
6ee0bf704a
Fix dns bug - first cb arg wasn't null
15 years ago
Ryan Dahl
05ae932a0e
Implement fs.readdirSync()
15 years ago
Benjamin Thomas
49cd1bbf84
Fix bug in process.mixin where deep copies would not work at all.
Before, doing this:
var sys = require("sys");
var obj = {
one: 1,
two: 2,
three: {
value: 3
}
};
sys.p(process.mixin(true, {}, obj));
Would output this:
{
"two": 2,
"three": {
"one": 1,
"two": 2,
"three": {
"value": 3
},
"value": 3
},
"one": 1
}
When it should have outputed this:
{
"one": 1,
"two": 2,
"three": {
"value": 3
}
}
15 years ago
Ryan Dahl
4c8889bba2
Revert "Add fs.readdirSync()"
Doesn't work on Linux.
This reverts commit 05d6da6c4a
.
15 years ago
isaacs
9acc8a686a
Expose fs.lstat
15 years ago
Zoran Tomicic
d98ea70168
Configurable debug ports, and --debug-brk
15 years ago
Micheil Smith
05d6da6c4a
Add fs.readdirSync()
15 years ago
Ryan Dahl
c094dda53c
Move errors for readPause and readResume
15 years ago
Ryan Dahl
7a8ede6f80
Add note about Promise removal
15 years ago
Scott González
6eff8937d7
Fixed encoding in fs.writeFile().
15 years ago
Jeremy Ashkenas
2916a2acd4
Remove '--' from command line parsing
15 years ago
Ryan Dahl
a0c48eecab
Rename readPause and readResume to pause/resume
15 years ago
Tim Caswell
68af59ef6b
Fix typo in fs.writeFile
15 years ago
Ryan Dahl
ea4956f046
Simplify call to V8::IdleNotification
Run a max priority ev_timer every 2 seconds. If there aren't any pending
watchers then call V8::IdleNotification() once. This is slower at freeing
memory, but I think simpler and less aggressive.
15 years ago
Ryan Dahl
0485cc41d5
Remove promises
15 years ago
Ryan Dahl
daacb81d3a
Experimental idle garbage compact
15 years ago
Ryan Dahl
d0f2d465aa
http.cat no longer uses Promise
15 years ago
Ryan Dahl
ef55324f1a
Do not use Promise in 'fs' module
15 years ago
Ryan Dahl
662fdfed37
fs.closeSync should return Undefined on success
15 years ago
Ryan Dahl
375131376f
Module loading no longer depends on Promise
The module loading code is looking extremely messy. It needs a refactor.
15 years ago
Ryan Dahl
764783560e
Remove Promise.prototype.wait()
I don't want users to have to think about coroutine safety.
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/2468/focus=2603
15 years ago