remove private event loops, use uv_default_loop() directly
fs, fetch, and child_process each had their own uv_loop_t* variable
that was always set to uv_default_loop(). This caused a deadlock when
async fs operations (e.g. stream()) ran on a private loop that nobody
polled while the reactor blocked on the default loop.