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
Ryan Dahl
860d008d54
Truly synchronous require()
This is to reduce our dependency on wait(). For some reason this patch
affects the timer test:
% ./node test/mjsunit/test-timers.js
diff: 989
diff: 989
diff: 1989
diff: 2989
Previously it showed:
% ./node test/mjsunit/test-timers.js
diff: 1000
diff: 1000
diff: 2000
diff: 3000
I'm not sure what caused this change, and it's rather disturbing. However I
want to remove wait() as soon as possible and so am pushing this patch
through.
The module loading code is becoming increasingly ugly - this patch has not
helped. A refactor needs to be done soon.
15 years ago
Rasmus Andersson
3bb7ad6fea
fixed process.mixin to properly copy getters/setters
15 years ago
Micheil Smith
bcc032e43a
Adding interface between node and libeio for Chmod.
15 years ago
Tim Caswell
6115df6338
File API tweaks
- Rename fs.cat to fs.readFile
- Move file.write to fs.writeFile
- Allow strings for the flag argument to fs.open
("r", "r+", "w", "w+", "a", "a+")
- Remove the unused 'File' module / class
15 years ago
Ryan Dahl
5468173ce9
[debug] Give debug_watcher maximum priority
15 years ago
Ryan Dahl
4322523fcf
[debug] Use ProcessDebugMessage() instead of executing empty script
And don't use --debugger_auto_break v8 flag, it seems unnecessary.
15 years ago
Jérémy Lal
5a08a5653c
Calculate page size with getpagesize for armel
15 years ago
Ryan Dahl
ecd61742a1
Throw from connection.connect if resolving.
Bug reported by James Golick.
15 years ago
Ryan Dahl
23cf502db7
API: connection.send() renamed to connection.write()
15 years ago
Ryan Dahl
1bf46d1536
Revert "Add process.startTime"
Unnecessary
This reverts commit 896cef23c4
.
15 years ago
Zoka
fbef11b679
Use InstanceTemplate() instead of PrototypeTemplate() for accessor methods
This fixes crash that used to happen when Eclipse debugging session hits the
breakpoint that is set either in timer or connection callback.
15 years ago
Felix Geisendörfer
490cac0d7e
Fix Promise.wait() for fired promises
Failure introduced in 80ace36e4c
15 years ago
Ryan Dahl
95fd370096
Remove unused variable
15 years ago
Yuichiro MASUI
1793ee1c80
Fixed: promise late chain
15 years ago
Ryan Dahl
b82ef28d9d
Rename 'posix' module to 'fs'
15 years ago
Ryan Dahl
896cef23c4
Add process.startTime
15 years ago
Ryan Dahl
bc17d94a0a
API: tcp events 'receive' to 'data', 'eof' to 'end'
No deprecation messages. Not sure how...
15 years ago
Ryan Dahl
7d428a7741
s/tinyclouds.org/nodejs.org/
15 years ago
Ryan Dahl
b20c343a7a
Fix whitespace and warnings in node.cc
15 years ago
Felix Geisendörfer
6c94b8e4e4
Implemented posix.catSync()
15 years ago
Ryan Dahl
cd41e30bcc
Return chunk & bytes read for posix.readSync()
15 years ago
Felix Geisendörfer
b02b54e003
Fix: Module cache did not propagate
This patch makes sure nested modules are available in their parents
cache. The module simplification broke this behavior.
See:
http://groups.google.com/group/nodejs/browse_thread/thread/e875132469547d2
b73f61a137
15 years ago
Ryan Dahl
3eaaaffadb
Ignore EAGAIN in stderr dumps.
(Going out of the way to be sync)
15 years ago
Ryan Dahl
88b9359284
Fix stderr flushing problem
15 years ago
Ryan Dahl
b6edae5671
Expose errno exception creation
15 years ago
Michael Carter
a38607605c
Add process.setuid(), getuid()
15 years ago
Ryan Dahl
6f92d8f3b0
Add handlescope and flush to process.reallyExit()
15 years ago
Ryan Dahl
ae1fc497bb
Fix stdout flush issue
http://github.com/ry/node/issues#issue/53
15 years ago
Ryan Dahl
76c1805c67
Add posix.truncate()
15 years ago
Ryan Dahl
77145ba229
Throw errors from server.listen()
15 years ago
Ryan Dahl
263813ae3e
Whitespace for node_net2.cc
15 years ago
Ryan Dahl
8fdb39a4ae
Add errno symbol to error messages
15 years ago
Felix Geisendörfer
b73f61a137
Simplified module system
createModule got removed as it was unnecessary and caused issues by
doing its own cache checks independent of loadModule. Internal modules
are now the only globally cached modules, all other modules are only
cached by inheriting their parent modules cache.
Credits: Module specific cache and a few other diffs by Blaine Cook
431662d25c
http://romeda.org/blog/2010/01/hot-code-loading-in-nodejs.html
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/1994
15 years ago
Ryan Dahl
f3ad635576
Downcase process.ARGV/ENV to process.argv/env
15 years ago
Ryan Dahl
1660db6b87
Inline Buffer::HasInstance
15 years ago
Ryan Dahl
c723acc721
Remove some HandleScopes from HTTP
for a %2.5 improvement in hello world HTTP score.
15 years ago