6667833: Remove CacheTimeMillis

Remove -XX:+CacheTimeMillis option and associated functionality

Reviewed-by: acorn, never
This commit is contained in:
Steve Bohne 2008-03-19 09:58:01 -04:00
parent 387f42921b
commit bf559c6dce
11 changed files with 12 additions and 155 deletions

View file

@ -113,13 +113,3 @@ class PeriodicTask: public CHeapObj {
// The task to perform at each period
virtual void task() = 0;
};
class TimeMillisUpdateTask : public PeriodicTask {
private:
static TimeMillisUpdateTask* _task;
public:
TimeMillisUpdateTask(int interval) : PeriodicTask(interval) {}
void task();
static void engage();
static void disengage();
};