~ubuntu-branches/ubuntu/precise/nodejs/precise

« back to all changes in this revision

Viewing changes to src/node_child_process.h

  • Committer: Bazaar Package Importer
  • Author(s): Jérémy Lal
  • Date: 2010-08-20 11:49:04 UTC
  • mfrom: (7.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100820114904-lz22w6fkth7yh179
Tags: 0.2.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  // are readable.
43
43
  // The user of this class has responsibility to close these pipes after
44
44
  // the child process exits.
45
 
  int Spawn(const char *file, char *const argv[], char **env, int stdio_fds[3]);
 
45
  int Spawn(const char *file, char *const argv[], const char *cwd, char **env, int stdio_fds[3], int custom_fds[3]);
46
46
 
47
47
  // Simple syscall wrapper. Does not disable the watcher. onexit will be
48
48
  // called still.