Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/platforms/xulrunner/lib/os-platform.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/platforms/xulrunner/lib/os-platform.js')
-rwxr-xr-xutils/platforms/xulrunner/lib/os-platform.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/utils/platforms/xulrunner/lib/os-platform.js b/utils/platforms/xulrunner/lib/os-platform.js
deleted file mode 100755
index 174e76e..0000000
--- a/utils/platforms/xulrunner/lib/os-platform.js
+++ /dev/null
@@ -1,44 +0,0 @@
-
-var io = require('io');
-
-exports.exit = function (status) {
- throw "NYI";
-};
-
-exports.sleep = function (seconds) {
- throw "NYI";
-};
-
-exports.fork = function () {
- throw "NYI";
-};
-
-exports.exec = function () {
- throw "NYI";
-};
-
-exports.dup = function () {
- throw "NYI";
-};
-
-exports.dup2 = function () {
- throw "NYI";
-};
-
-exports.setsid = function () {
- throw "NYI";
-};
-
-exports.getpid = function () {
- throw "NYI";
-};
-
-
-exports.popen = function (command, options) {
- throw "NYI";
-};
-
-exports.system = function (command) {
- throw "NYI";
-};
-