# Copyright (C) 2013-2016 all contributors # License: GPL-3.0+ # workaround for older Rubies: https://bugs.ruby-lang.org/issues/8770 module DTAS::SpawnFix # :nodoc: def spawn(*args) super(*args) rescue Errno::EINTR retry end if RUBY_VERSION.to_f <= 2.1 end