aboutsummaryrefslogtreecommitdiffstats
path: root/mjit.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-26 09:32:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-26 09:32:42 +0000
commit05316c40ac6872eb2b91b9d08b4b9e36cbac488d (patch)
treed4d8b088d5a21160d9166ca323cfba44d78ae438 /mjit.c
parent97538e813f8d41d7091aa6d1ffd15466117b26b1 (diff)
downloadruby-05316c40ac6872eb2b91b9d08b4b9e36cbac488d.tar.gz
fork() is deprecated on Solaris
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64063 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'mjit.c')
-rw-r--r--mjit.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/mjit.c b/mjit.c
index 36ffae4bf2..43449851ec 100644
--- a/mjit.c
+++ b/mjit.c
@@ -381,7 +381,14 @@ start_process(const char *path, char *const *argv)
}
dev_null = rb_cloexec_open(ruby_null_device, O_WRONLY, 0);
+#ifdef __GNUC__
+# pragma GCC diagnostic push
+# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+#endif
if ((pid = vfork()) == 0) {
+#ifdef __GNUC__
+# pragma GCC diagnostic pop
+#endif
umask(0077);
if (mjit_opts.verbose == 0) {
/* CC can be started in a thread using a file which has been