Displaying 1 result from an estimated 1 matches for "tst_process".
Did you mean:
test_process
2004 Feb 20
0
RE: BUG report: win32-process
...}"
> puts "Hit the ENTER key now >"
> gets
> }
> end
>
> # Back in the parent
> 4.times{ |i|
> puts "Parent: #{i}"
> sleep 1
> }
>
> Process.wait
> puts ''Done''
>
> __END__
>
> $ tst_process.rb
> ruby 1.8.1 (2003-12-25) [i386-cygwin]
> Parent: 0
> Child: 0
> Hit the ENTER key now >
> Parent: 1
> Parent: 2
> Parent: 3
>
> Child: 1
> Hit the ENTER key now >
>
> Child: 2
> Hit the ENTER key now >
>
> Child: 3
> Hit the ENTER key...