Custom Query (257 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (82 - 84 of 257)

Ticket Resolution Summary Owner Reporter
#248 fixed Flow control should be added ph3-der-loewe ph3-der-loewe
Description

The select loop should not include clients with a full input buffer. This may lead in the select to return early and wast CPU time.

#247 fixed Do not include listen sockets in select when no client slot is free ph3-der-loewe
Description

When no client slot is free the listen sockets should not be included in select because this will make select return without any delay if there are waiting clients. This can result in a very fast loop and wasting CPU time if no streams are running to slow down.

#246 invalid Debian init script missquotes strings ph3-der-loewe
Description

The Debian init script currently misquotes strings with spaces. The following strings are mainly affected:

  • ROARD_LOCATION
  • ROARD_DESCRIPTION
  • ROARD_CONTACT
  • ROARD_SERIAL
  • ROARD_UIURL

This is because of how the shell evaluates stings. Here in an example to clarify this problem:

$ a="pre 'te st' post"
$ a="pre 'te st' post"

This outputs:

pre
'te
st'
post

While this is expected:

pre
te st
post

The (correct!) usage of eval my help in this case.

Note: See TracQuery for help on using queries.