commit: r605 - branches/spread_4_2_debug/examples
[email protected] Tue, 22 Oct 2013 15:55:10 -0400
| Newsgroups | gmane.network.spread.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: jschultz
Date: 2013-10-22 15:55:09 -0400 (Tue, 22 Oct 2013)
New Revision: 605
Modified:
branches/spread_4_2_debug/examples/flooder.c
Log:
Changed flooder from using RELIABLE/FIFO to AGREED msgs to get around groups bug
Modified: branches/spread_4_2_debug/examples/flooder.c
===================================================================
--- branches/spread_4_2_debug/examples/flooder.c 2013-10-22 18:52:50 UTC (rev 604)
+++ branches/spread_4_2_debug/examples/flooder.c 2013-10-22 19:55:09 UTC (rev 605)
@@ -176,10 +176,10 @@
{
if (Num_members)
{
- ret = SP_multicast( Mbox, FIFO_MESS, "flooder", 0, Num_bytes, mess );
+ ret = SP_multicast( Mbox, AGREED_MESS, "flooder", 0, Num_bytes, mess );
Send_Counter++;
} else {
- ret = SP_multicast( Mbox, RELIABLE_MESS, "flooder", 0, Num_bytes, mess );
+ ret = SP_multicast( Mbox, AGREED_MESS, "flooder", 0, Num_bytes, mess );
}
if( ret != Num_bytes )
{