diff options
author | Bert Belder <bertbelder@gmail.com> | 2010-11-26 18:40:23 +0100 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2010-12-20 23:51:23 +0100 |
commit | 6d266219cc8603ea7034685e6f5afffae2a6ff2f (patch) | |
tree | 00e8299674a645702979470043535fef4c559d05 /TODO.win32 | |
parent | e047ec340dc2bfa0cc0dec40a19b14f36462c7ee (diff) | |
download | nodejs-6d266219cc8603ea7034685e6f5afffae2a6ff2f.tar.gz nodejs-6d266219cc8603ea7034685e6f5afffae2a6ff2f.tar.bz2 nodejs-6d266219cc8603ea7034685e6f5afffae2a6ff2f.zip |
Add more stuff to TODO.win32
Diffstat (limited to 'TODO.win32')
-rw-r--r-- | TODO.win32 | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/TODO.win32 b/TODO.win32 index 3f8015225..35acaeb64 100644 --- a/TODO.win32 +++ b/TODO.win32 @@ -1,13 +1,17 @@ - Implement setenv / unsetenv
- Implement other stuff missing in node.cc/process
- Like setuid, setgid, kill etc.
+ Like getuid, getgid, setgid, kill etc.
- 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?
+ Are unix sockets similar to windows named pipes? If so, should they be supported? -> currently: no. Complication: they block.
- Child processes
+ Should not be too hard using CreatePipe, CreateProcessW and GetExitCodeProcess.
+ When customFds are specified, should we support hooking up to a socket fd?
+ How can we distinguish between the exit code and exception number after calling GetExitCodeProcess?
- Stdio (make TTY's / repl / readline work)
This will be hard: there is no ANSI escape code support in windows.
@@ -32,7 +36,7 @@ If _open_osfhandle fails but socket doesn't, a stray handle is left open. It should be fixed.
- Check error number mappings.
- Winsock errnos are different.
+ Winsock errnos are sometimes different.
- Think about `make install`
@@ -41,6 +45,10 @@ - Link pthreads-w32 statically by default
+- Link Mingw libraries statically by default
+ Like libstdc++.dll, more maybe.
+ Microsoft libs are always there, no static linkage required (e.g. msvcrt, winsock2).
+
- Make (open?)SSL work
- Support using shared libs (libeio, v8, c-ares)
|