Displaying 2 results from an estimated 2 matches for "terminal_serv".
Did you mean:
  terminal_server
  
2005 Aug 11
4
win32-process + ruby-breakpoint = strangebehavior
...;m getting really strange behavior with win32/process.  
> Here''s the code:
> 
> -----
>   require ''win32/process''
>   require_gem ''ruby-breakpoint''
> 
>   x = Process.create :app_name => "ruby bin/run_device.rb 
> devices/terminal_server.rb"
> 
>   puts "done"
>   puts "done"
> 
>   Process.kill 9, x
> 
>   puts "done"
> ------
> 
> Running this code gives me a segfault
> 
> ----
>   C:\development\simulation>ruby ptest.rb
>   done
>   done
>...
2005 Aug 11
0
win32-process + ruby-breakpoint = strange behavior
I''m getting really strange behavior with win32/process.  Here''s the code:
-----
  require ''win32/process''
  require_gem ''ruby-breakpoint''
  x = Process.create :app_name => "ruby bin/run_device.rb
devices/terminal_server.rb"
  puts "done"
  puts "done"
  Process.kill 9, x
  puts "done"
------
Running this code gives me a segfault
----
  C:\development\simulation>ruby ptest.rb
  done
  done
  ptest.rb:9: [BUG] Segmentation fault
  ruby 1.8.2 (2004-12-25) [i386-mswin32]...