Bug 934990 - Export CurrentThreadCanAccess functions properly. r=terrence

This commit is contained in:
Andrew McCreight 2013-11-05 08:55:28 -08:00
parent f40324c58b
commit 9402825392

View File

@ -18,8 +18,11 @@ namespace js {
// Whether the current thread is permitted access to any part of the specified
// runtime or zone.
extern bool CurrentThreadCanAccessRuntime(JSRuntime *rt);
extern bool CurrentThreadCanAccessZone(JS::Zone *zone);
JS_FRIEND_API(bool)
CurrentThreadCanAccessRuntime(JSRuntime *rt);
JS_FRIEND_API(bool)
CurrentThreadCanAccessZone(JS::Zone *zone);
namespace gc {