levsa (Levon Saldamli)
- Login: levsa
- Email: levon.sa@gmail.com
- Registered on: 03/10/2011
- Last sign in: 03/10/2011
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
03/10/2011
-
03:53 PM Ruby Bug #4490 (Rejected): struct timespec declared without defining HAVE_STRUCT_TIMESPEC, clashes with pthreads.
- pthreads wants to declare struct timespec again since HAVE_STRUCT_TIMESPEC is not defined. After adding the following to ./include/ruby-1.9.1/ruby/missing.h problem is solved.
#if !defined(HAVE_STRUCT_TIMESPEC)
+ #define HAVE_STRUC... -
08:24 AM Ruby Bug #4488 (Third Party's Issue): Segmentation fault when calling new (or in rspec)
- =begin
def Session.instance(*args, &block)
@__instance__ ||= new(*args, &block) # this line seems to trigger a segfault
end
when called from:
it "should fail on an invalid application key" do
expect { Hal...