first cut at multi-threading version

This commit is contained in:
Jeff Hill
2000-03-11 01:27:54 +00:00
parent 63c647198c
commit a266d0e586
37 changed files with 10127 additions and 10961 deletions

35
src/ca/caRepeater.cpp Normal file
View File

@@ -0,0 +1,35 @@
/*
* $Id$
*
* CA UDP repeater standalone executable
*
* Author: Jeff Hill
* Date: 3-27-90
*
* PURPOSE:
* Broadcasts fan out over the LAN, but old IP kernels do not allow
* two processes on the same machine to get the same broadcast
* (and modern IP kernels do not allow two processes on the same machine
* to receive the same unicast).
*
* This code fans out UDP messages sent to the CA repeater port
* to all CA client processes that have subscribed.
*
* NOTES:
*
* see repeater.c
*
*/
#include "epicsAssert.h"
#include "shareLib.h"
epicsShareFunc void epicsShareAPI ca_repeater (void);
int main()
{
ca_repeater ();
assert (0);
return (0);
}