summaryrefslogtreecommitdiffstats
path: root/js
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
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')
-rw-r--r--js/src/jsapi.cpp5
-rw-r--r--js/src/jsapi.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jsapi.cpp b/js/src/jsapi.cpp
index 3e0c63811..77124355c 100644
--- a/js/src/jsapi.cpp
+++ b/js/src/jsapi.cpp
@@ -483,6 +483,11 @@ JS_DestroyContext(JSContext* cx)
DestroyContext(cx);
}
+JS_PUBLIC_API(JSRuntime*)
+JS_GetRuntime(JSContext* cx) {
+ return cx->runtime();
+}
+
static JS_CurrentEmbedderTimeFunction currentEmbedderTimeFunction;
JS_PUBLIC_API(void)
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)();
/**