mirror of https://github.com/lukechilds/node.git
Ryan Dahl
15 years ago
1 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||
|
#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; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
} // namespace node
|
Loading…
Reference in new issue