#include <v8threads.h>
Public 型 | |
enum | List { FREE_LIST, IN_USE_LIST } |
Public メソッド | |
ThreadState * | Next () |
void | LinkInto (List list) |
void | Unlink () |
char * | data () |
Static Public メソッド | |
static ThreadState * | FirstInUse () |
static ThreadState * | GetFree () |
Private メソッド | |
ThreadState () | |
void | AllocateSpace () |
Private 変数 | |
char * | data_ |
ThreadState * | next_ |
ThreadState * | previous_ |
Static Private 変数 | |
static ThreadState * | free_anchor_ = new ThreadState() |
static ThreadState * | in_use_anchor_ = new ThreadState() |
v8threads.h の 34 行で定義されています。
v8threads.h の 41 行で定義されています。
v8::internal::ThreadState::ThreadState | ( | ) | [private] |
v8threads.cc の 160 行で定義されています。
参照元 GetFree().
void v8::internal::ThreadState::AllocateSpace | ( | ) | [private] |
char* v8::internal::ThreadState::data | ( | ) | [inline] |
v8threads.h の 49 行で定義されています。
参照先 data_.
参照元 v8::internal::ThreadManager::EagerlyArchiveThread(), と v8::internal::ThreadManager::RestoreThread().
ThreadState * v8::internal::ThreadState::FirstInUse | ( | ) | [static] |
ThreadState * v8::internal::ThreadState::GetFree | ( | ) | [static] |
v8threads.cc の 185 行で定義されています。
参照先 AllocateSpace(), free_anchor_, next_, と ThreadState().
void v8::internal::ThreadState::LinkInto | ( | List | list | ) |
v8threads.cc の 175 行で定義されています。
参照先 free_anchor_, FREE_LIST, in_use_anchor_, next_, と previous_.
参照元 v8::internal::ThreadManager::EagerlyArchiveThread(), と v8::internal::ThreadManager::RestoreThread().
ThreadState * v8::internal::ThreadState::Next | ( | ) |
void v8::internal::ThreadState::Unlink | ( | ) |
char* v8::internal::ThreadState::data_ [private] |
v8threads.h の 55 行で定義されています。
参照元 AllocateSpace(), と data().
ThreadState * v8::internal::ThreadState::free_anchor_ = new ThreadState() [static, private] |
v8threads.h の 62 行で定義されています。
参照元 GetFree(), と LinkInto().
ThreadState * v8::internal::ThreadState::in_use_anchor_ = new ThreadState() [static, private] |
v8threads.h の 64 行で定義されています。
参照元 FirstInUse(), LinkInto(), と Next().
ThreadState* v8::internal::ThreadState::next_ [private] |
v8threads.h の 56 行で定義されています。
参照元 GetFree(), LinkInto(), Next(), と Unlink().
ThreadState* v8::internal::ThreadState::previous_ [private] |
v8threads.h の 57 行で定義されています。
参照元 LinkInto(), と Unlink().