UDP shutdown fixed
This commit is contained in:
14
testApp/client/testStartStop.cpp
Normal file
14
testApp/client/testStartStop.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <iostream>
|
||||
#include <pv/clientFactory.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
std::cout << "to start pvAccess ClientFactory" << std::endl;
|
||||
::epics::pvAccess::ClientFactory::start();
|
||||
std::cout << "do nothing after starting pvAccess ClientFactory" << std::endl;
|
||||
|
||||
std::cout << "to stop pvAccess ClientFactory" << std::endl;
|
||||
::epics::pvAccess::ClientFactory::stop();
|
||||
std::cout << "finish test" << std::endl;
|
||||
return 0;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user