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.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/utils/platforms/xulrunner/lib/os-platform.js b/utils/platforms/xulrunner/lib/os-platform.js
index e173def..174e76e 100755
--- a/utils/platforms/xulrunner/lib/os-platform.js
+++ b/utils/platforms/xulrunner/lib/os-platform.js
@@ -2,35 +2,43 @@
var io = require('io');
exports.exit = function (status) {
- // TODO
+ throw "NYI";
};
exports.sleep = function (seconds) {
- // TODO
+ 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";
};