diff options
author | Bert Belder <bertbelder@gmail.com> | 2010-11-26 03:27:44 +0100 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2010-12-20 23:51:20 +0100 |
commit | e85733a80ba624a45abda29d941614bdd778529e (patch) | |
tree | 31045b567d8cfda8e45c8b6e45a5ed5afe417f97 /TODO.win32 | |
parent | 46dc393ff1716312e770045696909b9f688666f8 (diff) | |
download | nodejs-e85733a80ba624a45abda29d941614bdd778529e.tar.gz nodejs-e85733a80ba624a45abda29d941614bdd778529e.tar.bz2 nodejs-e85733a80ba624a45abda29d941614bdd778529e.zip |
Update TODO.w32
Diffstat (limited to 'TODO.win32')
-rw-r--r-- | TODO.win32 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/TODO.win32 b/TODO.win32 index 8739410c2..190865d3e 100644 --- a/TODO.win32 +++ b/TODO.win32 @@ -3,12 +3,17 @@ - Implement other stuff missing in node.cc/process
Like setuid, setgid, kill etc.
-- Implement missing `net` methods
+- Implement missing `net` methods
+ A pressing issue is: how do we work with windows api functions that are not utf8 aware?
+ E.g. getaddrinfo() is ansi-only; GetAddrInfoW is utf16-only. Can we get utf16 straight out of v8?
- Child processes
- Stdio (make TTY's / repl / readline work)
- Also verify writeError and isStdoutBlocking correctness
+ This will be hard: there is no ANSI escape code support in windows.
+ Select() doesn't work on TTYs -- use a dedicated `getchar()` thread
+ that relays everything to an internal socket?
+ Also verify writeError and isStdoutBlocking correctness.
- Make `make test` work, think about `make install`
|