Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/platforms/xulrunner/lib/os-platform.js
blob: 174e76e40feba6b7f1f4803b09c2a157599a559f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

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";
};