# File lib/chef/expander/vnode_supervisor.rb, line 64
      def self.await_parent_death
        @awaiting_parent_death = EM.add_periodic_timer(1) do
          unless Process.ppid == @original_ppid
            @awaiting_parent_death.cancel
            stop_immediately("master process death")
          end
        end
      end