From 1bf46d1536f6401bffba88cb4a8c8a10cb9f358c Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 16 Feb 2010 09:32:25 -0800 Subject: [PATCH] Revert "Add process.startTime" Unnecessary This reverts commit 896cef23c4a9bb1e3e4eeaef8cf101ea4e43af74. --- doc/api.txt | 3 --- src/node.js | 1 - 2 files changed, 4 deletions(-) diff --git a/doc/api.txt b/doc/api.txt index 98fe9a4..b99670d 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -112,9 +112,6 @@ The PID of the process. +process.platform+ :: What platform you're running on. +"linux2"+, +"darwin"+, etc. -+process.startTime+ :: -When the process started. - +process.memoryUsage()+ :: Returns the memory usage of the Node process. It looks like this + diff --git a/src/node.js b/src/node.js index 026234b..af4856b 100644 --- a/src/node.js +++ b/src/node.js @@ -1,5 +1,4 @@ (function (process) { -process.startTime = new Date(); process.global.process = process; process.global.global = process.global; -- 2.7.4