Thread issues with ruby 1.8.0 on OpenBSD 3.3

R

Rick Nooner

I'm seeing problems with threading using ruby 1.8.0 on OpenBSD 3.3.

When I use threads, I get

longjump botch.
Illegal instruction (core dumped)

Following is a short script that reproduces the problem.
This script runs fine using ruby 1.8.0 on Solaris 8.

Are there known issues with ruby threading on OpenBSD?

Thanks,
Rick

--

require 'thread'
threads = []
q = Queue.new
threads << Thread.new { puts q.pop }
q.push("gronk")
threads.each { |t| t.join }
 
T

ts

R> I'm seeing problems with threading using ruby 1.8.0 on OpenBSD 3.3.
R> When I use threads, I get

Can you give a stack trace ?

Run your script under gdb and when it crash use the command `bt'


Guy Decoux
 
R

Rick Nooner

Guy,

Here is the gdb session after the crash:

(gdb) bt
#0 0x8f29ae8 in _longjmp ()
#1 0x8f29aec in _longjmp ()
#2 0x7 in ?? ()
(gdb) quit

This is on a Sparc 5 which I didn't mention earlier.

Rick
 
R

Rick Nooner

I don't think that it's a sparc issue since the same code runs fine
under Solaris. I have several other architecture/OS combinations
available that work fine as well. It is probably related to OpenBSD.

I'll dig into it further this afternoon.

Thanks for your thoughts.

Rick
 
T

ts

R> I don't think that it's a sparc issue since the same code runs fine
R> under Solaris. I have several other architecture/OS combinations
R> available that work fine as well. It is probably related to OpenBSD.

I'm agree with you

moulon% ruby -v
ruby 1.8.0 (2003-08-04) [sparc-solaris2.7]
moulon%

This is why I've said
^^^^^^^^^^^^^^^^^^^^


Guy Decoux
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,754
Messages
2,569,527
Members
44,997
Latest member
mileyka

Latest Threads

Top