Custom Query (257 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (46 - 48 of 257)

Ticket Resolution Summary Owner Reporter
#293 fixed pa_xfree() needs return getting fixed. ph3-der-loewe ph3-der-loewe
Description

pa_xfree() is of type void and should not return a value. This should be fixed.

The following patch will do this:

  • xmalloc.c

    diff -u -r1.5 xmalloc.c
     
    6363 
    6464/** Free allocated memory */ 
    6565void pa_xfree(void *p) { 
    66  return roar_mm_free(p); 
     66 roar_mm_free(p); 
    6767} 
    6868 
    6969/** Duplicate the specified string, allocating memory with pa_xmalloc() */ 
#292 fixed A watchdog like feature should be added ph3-der-loewe ph3-der-loewe
Description

A watchdog like feature should be added: It should terminate the process with optionally triggering an external command. This should be implemented using alarm().

#291 fixed A watchdog like feature should be added ph3-der-loewe ph3-der-loewe
Description

A watchdog like feature should be added: It should terminate the process with optionally triggering an external command. This should be implemented using alarm().

Note: See TracQuery for help on using queries.