Tim-Smart
|
ae10a48383
|
Initial implementation of process.evalcx
|
15 years ago |
Ryan Dahl
|
6ec2f877c2
|
Depreciation -> Deprecation
|
15 years ago |
Vanilla Hsu
|
b13081691e
|
use getpagesize() to get PAGE_SIZE on FreeBSD.
|
15 years ago |
Ryan Dahl
|
c96b7e5ca0
|
Missing EOL semicolons
|
15 years ago |
Ryan Dahl
|
dd857f9fdf
|
.addon -> .node
How'd that get in there?
|
15 years ago |
Tim-Smart
|
0c17067d87
|
Add require.registerExtension
|
15 years ago |
Ryan Dahl
|
4635ed7fde
|
Add process.now
Faster way to find out current time.
|
15 years ago |
Ryan Dahl
|
9b67962a44
|
Add timer.again method
|
15 years ago |
Ryan Dahl
|
c1a0ade7e7
|
Further net2 compatibilities
|
15 years ago |
Ryan Dahl
|
dd21a4f4b9
|
Remove the 'Error: (no message)' exceptions print stack trace instead
|
15 years ago |
Ryan Dahl
|
6310e717e4
|
Remove the 'Error: (no message)' exceptions print stack trace instead
|
15 years ago |
Ryan Dahl
|
93c0c24a4e
|
process.mixin: Return instead of continue in forEach
|
15 years ago |
Aaron Heckmann
|
f8eb163728
|
Add removeAllListeners
|
15 years ago |
isaacs
|
b90d63b998
|
Change the include() message so that it doesn't recommend process.mixin.
|
15 years ago |
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 |