Z
Ze Maria
Hi guys, I've made a simple program to test the Process.create:
require 'rubygems'
require 'win32/process'
pgname = "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe"
x = Process.create :app_name => pgname.to_s
sleep 5
Process.kill(1,x)
This works fine, but if a add at the begining
require_gem 'activerecord'
I get a
testBug.rb:8: [BUG] Segmentation fault
ruby 1.8.4 (2006-04-14) [i386-mswin32]
(i get the segfault at the "Process.kill" line....) any ideas ?
I'm on a Windows XP Pro Edition , Service Pack 2 using ruby 1.8.4
Tks in advance,
Ze Maria
require 'rubygems'
require 'win32/process'
pgname = "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe"
x = Process.create :app_name => pgname.to_s
sleep 5
Process.kill(1,x)
This works fine, but if a add at the begining
require_gem 'activerecord'
I get a
testBug.rb:8: [BUG] Segmentation fault
ruby 1.8.4 (2006-04-14) [i386-mswin32]
(i get the segfault at the "Process.kill" line....) any ideas ?
I'm on a Windows XP Pro Edition , Service Pack 2 using ruby 1.8.4
Tks in advance,
Ze Maria