You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
276 B

#include "node.h"
#include "platform.h"
namespace node {
int OS::GetMemory(size_t *rss, size_t *vsize) {
// Not implemented
*rss = 0;
*vsize = 0;
return 0;
}
int OS::GetExecutablePath(char *buffer, size_t* size) {
*size = 0;
return 0;
}
} // namespace node