Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 1630)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#1414 fixed The statistic profiler gets stuck LemonBoy
Description

take_profile_sample, which is called from within a signal handler, uses malloc to allocate new bins for its hash table. Doing so is frowned upon as the signal may be processed while the runtime owns the global malloc lock leading to an awful deadlock.

I can confirm that I've been able to do a profiled run by replacing the malloc with a simple arena allocator.

#1419 fixed `test` egg doesn't detect the terminal supports colors LemonBoy
Description

It doesn't recognize rxvt-unicode-256color nor tmux-256color.

#1425 fixed and-let* is not 100% compatible with SRFI-2 LemonBoy
Description

The case where the body is missing isn't handled according to the specification, eg:

(and-let* ()) => #<unspecified> but it should return #t (and-let* ((x 1))) => #<unspecified> but it should return 1

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.