fee26a9bbb
BUG= Review URL: https://codereview.chromium.org//901303005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43605 260f80e4-7a28-3924-810f-c04153c831b5
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef VM_THREAD_H_
|
|
#define VM_THREAD_H_
|
|
|
|
#include "vm/isolate.h"
|
|
|
|
namespace dart {
|
|
|
|
// A VM thread; may be executing Dart code or performing helper tasks like
|
|
// garbage collection.
|
|
class Thread {
|
|
public:
|
|
static Thread* Current() {
|
|
// For now, there is still just one thread per isolate, and the Thread
|
|
// class just aliases the Isolate*. Once all interfaces and uses have been
|
|
// updated to distinguish between isolates and threads, Thread will get its
|
|
// own thread-local storage key.
|
|
return reinterpret_cast<Thread*>(Isolate::Current());
|
|
}
|
|
|
|
// The topmost zone used for allocation in this thread.
|
|
Zone* zone() {
|
|
return reinterpret_cast<BaseIsolate*>(this)->current_zone();
|
|
}
|
|
|
|
// The isolate that this thread is operating on.
|
|
Isolate* isolate() {
|
|
return reinterpret_cast<Isolate*>(this);
|
|
}
|
|
|
|
// The log for this thread.
|
|
class Log* Log() {
|
|
return reinterpret_cast<Isolate*>(this)->Log();
|
|
}
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(Thread);
|
|
};
|
|
|
|
} // namespace dart
|
|
|
|
#endif // VM_THREAD_H_
|