summaryrefslogtreecommitdiffstats
path: root/js/src/jsapi.h
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-08-06 18:27:32 +0000
committerMoonchild <moonchild@palemoon.org>2020-08-06 18:28:54 +0000
commitc349f04f9501c5035667f8064782d06e298cb52a (patch)
tree2897b8c4fa5b1dfe4de1ad4f61a173532b2afa96 /js/src/jsapi.h
parent1c342a57ee39df04da71d62b80e245810c32fb42 (diff)
downloadUXP-c349f04f9501c5035667f8064782d06e298cb52a.tar
UXP-c349f04f9501c5035667f8064782d06e298cb52a.tar.gz
UXP-c349f04f9501c5035667f8064782d06e298cb52a.tar.lz
UXP-c349f04f9501c5035667f8064782d06e298cb52a.tar.xz
UXP-c349f04f9501c5035667f8064782d06e298cb52a.zip
[js] Add some utility functions to get the current JS runtime.
Diffstat (limited to 'js/src/jsapi.h')
-rw-r--r--js/src/jsapi.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/src/jsapi.h b/js/src/jsapi.h
index 76781cf06..c6299e3f5 100644
--- a/js/src/jsapi.h
+++ b/js/src/jsapi.h
@@ -995,6 +995,9 @@ JS_NewContext(uint32_t maxbytes,
extern JS_PUBLIC_API(void)
JS_DestroyContext(JSContext* cx);
+extern JS_PUBLIC_API(JSRuntime*)
+JS_GetRuntime(JSContext* cx);
+
typedef double (*JS_CurrentEmbedderTimeFunction)();
/**