We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e21c05b + 80bcfdc commit fe5c6c7Copy full SHA for fe5c6c7
Cargo.toml
@@ -2,7 +2,7 @@
2
name = "mozjs_sys"
3
description = "System crate for the Mozilla SpiderMonkey JavaScript engine."
4
repository = "https://github.com/servo/mozjs/"
5
-version = "0.66.0"
+version = "0.66.1"
6
authors = ["Mozilla"]
7
links = "mozjs"
8
build = "build.rs"
mozjs/js/src/util/NativeStack.cpp
@@ -25,7 +25,7 @@
25
# include <sys/syscall.h>
26
# include <sys/types.h>
27
# include <unistd.h>
28
-static pid_t gettid() { return syscall(__NR_gettid); }
+# define gettid() static_cast<pid_t>(syscall(__NR_gettid))
29
# endif
30
#else
31
# error "Unsupported platform"
0 commit comments