Custom Query (257 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (13 - 15 of 257)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Resolution Summary Owner Reporter
#339 fixed roarfish should be removed ph3-der-loewe
Description

The roarfish binary should be removed. It also fails to build on win32.

This should be done no later than 1.1beta0.

#338 fixed Make it possible to disable debugging output. ph3-der-loewe
Description

the new RABS supports a Makefile var DEBUG_g. It should be possible to set to an empty value to avoid generation of debugging infos.

This can be helpful for binary releases on win32 as it will significantly reduce the size of the binaries and is of little usefulness at the end user.

#337 fixed +fork support for win32 ph3-der-loewe ph3-der-loewe
Description

"+fork" support works by using two key features of a modern OS: fork and Unix Sockets. Both is not available on win32. A workaround to this should be created. Here is how the workaround could work:

  1. Find a unused port.
  2. Start a server in background listening on that port (--tcp --port $PORT --bind localhost)[0]
  3. Set future address of server in server_name.
  4. Wait for server to start up.
  5. Connect to server_name.
  6. Use the connection.
  7. Send TERMINATE on disconnect (only starting connection) before QUIT.

Not that every step is subject to multiple race condition which are out of our control on win32.

Just for the understanding here is how the normal "+fork" mode works:

  1. Fork and start the server using --no-listen and --client-fh.
  2. Use the connection as with other server types.

[0] http://msdn.microsoft.com/en-us/library/20y988d2.aspx

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