Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove child_process_legacy
  • Loading branch information
ry committed Oct 11, 2011
1 parent be0bb2d commit 96e423a
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 1,082 deletions.
File renamed without changes.
339 changes: 0 additions & 339 deletions lib/child_process_legacy.js

This file was deleted.

5 changes: 1 addition & 4 deletions node.gyp
Expand Up @@ -15,8 +15,7 @@
'lib/assert.js',
'lib/buffer.js',
'lib/buffer_ieee754.js',
'lib/child_process_legacy.js',
'lib/child_process_uv.js',
'lib/child_process.js',
'lib/console.js',
'lib/constants.js',
'lib/crypto.js',
Expand Down Expand Up @@ -102,7 +101,6 @@
'src/node.h',
'src/node_buffer.h',
'src/node_cares.h',
'src/node_child_process.h',
'src/node_constants.h',
'src/node_crypto.h',
'src/node_dtrace.h',
Expand Down Expand Up @@ -175,7 +173,6 @@
'src/node_stat_watcher.cc',
'src/node_io_watcher.cc',
'src/node_stdio.cc',
'src/node_child_process.cc',
]
}],
[ 'OS=="mac"', {
Expand Down
3 changes: 0 additions & 3 deletions src/node.cc
Expand Up @@ -84,9 +84,6 @@ extern "C" {
# include <node_signal_watcher.h>
# include <node_stat_watcher.h>
#endif
#if !defined(_MSC_VER)
#include <node_child_process.h>
#endif
#include <node_constants.h>
#include <node_stdio.h>
#include <node_javascript.h>
Expand Down
4 changes: 0 additions & 4 deletions src/node.js
Expand Up @@ -461,10 +461,6 @@
case 'tty':
return process.features.uv ? 'tty_uv' : 'tty_legacy';

case 'child_process':
return process.features.uv ? 'child_process_uv' :
'child_process_legacy';

case 'dgram':
return process.features.uv ? 'dgram_uv' : 'dgram_legacy';

Expand Down

0 comments on commit 96e423a

Please sign in to comment.