4c0f559d23
git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@15 260f80e4-7a28-3924-810f-c04153c831b5
28 lines
722 B
C++
28 lines
722 B
C++
// Copyright (c) 2011, 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_ISOLATE_LINUX_H_
|
|
#define VM_ISOLATE_LINUX_H_
|
|
|
|
#if !defined(VM_ISOLATE_H_)
|
|
#error Do not include isolate_linux.h directly; use isolate.h instead.
|
|
#endif
|
|
|
|
#include <pthread.h>
|
|
|
|
namespace dart {
|
|
|
|
#define PTHREAD_KEY_UNSET static_cast<pthread_key_t>(-1)
|
|
extern pthread_key_t isolate_key;
|
|
|
|
|
|
inline Isolate* Isolate::Current() {
|
|
ASSERT(isolate_key != PTHREAD_KEY_UNSET);
|
|
return reinterpret_cast<Isolate*>(pthread_getspecific(isolate_key));
|
|
}
|
|
|
|
} // namespace dart
|
|
|
|
#endif // VM_ISOLATE_LINUX_H_
|