summaryrefslogtreecommitdiff
path: root/TAO/docs
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:37:15 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:37:15 +0100
commitfe0a8e3c6c8bf1d10a71d1eee6a956c3560bd562 (patch)
tree814922c24616e5db888b750a0ff692f2ce8368a8 /TAO/docs
parent5a0dbea7c881e97c5419d8584a45ed43d07ab8e9 (diff)
downloadATCD-fe0a8e3c6c8bf1d10a71d1eee6a956c3560bd562.tar.gz
bool changes
Diffstat (limited to 'TAO/docs')
-rw-r--r--TAO/docs/tutorials/Quoter/AMI/client.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/AMI/server.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/Event_Service/client.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/Event_Service/server.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/Naming_Service/server.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/On_Demand_Activation/client.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/On_Demand_Activation/server.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/RTCORBA/Broker.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/RTCORBA/Distributor.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/RT_Event_Service/client.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/RT_Event_Service/server.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/Simple/Impl-Repo/server.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/Simple/ImprovedServer/server.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/Simple/Persistent/server.cpp2
-rw-r--r--TAO/docs/tutorials/Quoter/Simple/Server/index.html2
-rw-r--r--TAO/docs/tutorials/Quoter/Simple/Server/server.cpp2
16 files changed, 16 insertions, 16 deletions
diff --git a/TAO/docs/tutorials/Quoter/AMI/client.cpp b/TAO/docs/tutorials/Quoter/AMI/client.cpp
index 0aa4ff85106..dcab40e0780 100644
--- a/TAO/docs/tutorials/Quoter/AMI/client.cpp
+++ b/TAO/docs/tutorials/Quoter/AMI/client.cpp
@@ -71,7 +71,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
}
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/AMI/server.cpp b/TAO/docs/tutorials/Quoter/AMI/server.cpp
index a751be49f3e..706b523ac2c 100644
--- a/TAO/docs/tutorials/Quoter/AMI/server.cpp
+++ b/TAO/docs/tutorials/Quoter/AMI/server.cpp
@@ -32,7 +32,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
orb->run ();
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/Event_Service/client.cpp b/TAO/docs/tutorials/Quoter/Event_Service/client.cpp
index 747b8b9a03f..858ac20a3f5 100644
--- a/TAO/docs/tutorials/Quoter/Event_Service/client.cpp
+++ b/TAO/docs/tutorials/Quoter/Event_Service/client.cpp
@@ -40,7 +40,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
stock_consumer_i.disconnect ();
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/Event_Service/server.cpp b/TAO/docs/tutorials/Quoter/Event_Service/server.cpp
index 686dce55dba..37642b63661 100644
--- a/TAO/docs/tutorials/Quoter/Event_Service/server.cpp
+++ b/TAO/docs/tutorials/Quoter/Event_Service/server.cpp
@@ -90,7 +90,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
stock_factory_i.destroy_stock_objects ();
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/Naming_Service/server.cpp b/TAO/docs/tutorials/Quoter/Naming_Service/server.cpp
index baab5b10738..bfd7e5c964a 100644
--- a/TAO/docs/tutorials/Quoter/Naming_Service/server.cpp
+++ b/TAO/docs/tutorials/Quoter/Naming_Service/server.cpp
@@ -41,7 +41,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
orb->run ();
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/On_Demand_Activation/client.cpp b/TAO/docs/tutorials/Quoter/On_Demand_Activation/client.cpp
index 0aa4ff85106..dcab40e0780 100644
--- a/TAO/docs/tutorials/Quoter/On_Demand_Activation/client.cpp
+++ b/TAO/docs/tutorials/Quoter/On_Demand_Activation/client.cpp
@@ -71,7 +71,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
}
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/On_Demand_Activation/server.cpp b/TAO/docs/tutorials/Quoter/On_Demand_Activation/server.cpp
index 09f2f8bb23d..18a59e1b81d 100644
--- a/TAO/docs/tutorials/Quoter/On_Demand_Activation/server.cpp
+++ b/TAO/docs/tutorials/Quoter/On_Demand_Activation/server.cpp
@@ -65,7 +65,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
orb->run ();
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/RTCORBA/Broker.cpp b/TAO/docs/tutorials/Quoter/RTCORBA/Broker.cpp
index 8a3dbc053f8..8c1b17ee70e 100644
--- a/TAO/docs/tutorials/Quoter/RTCORBA/Broker.cpp
+++ b/TAO/docs/tutorials/Quoter/RTCORBA/Broker.cpp
@@ -198,7 +198,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
orb->run ();
// Cleanup the POA and ORB.
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &ex)
diff --git a/TAO/docs/tutorials/Quoter/RTCORBA/Distributor.cpp b/TAO/docs/tutorials/Quoter/RTCORBA/Distributor.cpp
index a6c5d8b6b96..b323f8f2a5c 100644
--- a/TAO/docs/tutorials/Quoter/RTCORBA/Distributor.cpp
+++ b/TAO/docs/tutorials/Quoter/RTCORBA/Distributor.cpp
@@ -164,7 +164,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
orb->run ();
// Cleanup the POA and ORB.
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &ex)
diff --git a/TAO/docs/tutorials/Quoter/RT_Event_Service/client.cpp b/TAO/docs/tutorials/Quoter/RT_Event_Service/client.cpp
index 5b5f49fcd93..87207772bf9 100644
--- a/TAO/docs/tutorials/Quoter/RT_Event_Service/client.cpp
+++ b/TAO/docs/tutorials/Quoter/RT_Event_Service/client.cpp
@@ -59,7 +59,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
stock_consumer_i.disconnect ();
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &ex) {
diff --git a/TAO/docs/tutorials/Quoter/RT_Event_Service/server.cpp b/TAO/docs/tutorials/Quoter/RT_Event_Service/server.cpp
index d6844c4186d..331ec2bbfdd 100644
--- a/TAO/docs/tutorials/Quoter/RT_Event_Service/server.cpp
+++ b/TAO/docs/tutorials/Quoter/RT_Event_Service/server.cpp
@@ -90,7 +90,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
stock_factory_i.destroy_stock_objects ();
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/Simple/Impl-Repo/server.cpp b/TAO/docs/tutorials/Quoter/Simple/Impl-Repo/server.cpp
index 7744f30a7f6..590e83f26a5 100644
--- a/TAO/docs/tutorials/Quoter/Simple/Impl-Repo/server.cpp
+++ b/TAO/docs/tutorials/Quoter/Simple/Impl-Repo/server.cpp
@@ -94,7 +94,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
orb->run ();
// Destroy POA, waiting until the destruction terminates.
- root_poa->destroy (1, 1);
+ root_poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/Simple/ImprovedServer/server.cpp b/TAO/docs/tutorials/Quoter/Simple/ImprovedServer/server.cpp
index a2c32f89e4e..fa23e90490c 100644
--- a/TAO/docs/tutorials/Quoter/Simple/ImprovedServer/server.cpp
+++ b/TAO/docs/tutorials/Quoter/Simple/ImprovedServer/server.cpp
@@ -71,7 +71,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
orb->run ();
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/Simple/Persistent/server.cpp b/TAO/docs/tutorials/Quoter/Simple/Persistent/server.cpp
index 7f0166b5037..84f390bf6a5 100644
--- a/TAO/docs/tutorials/Quoter/Simple/Persistent/server.cpp
+++ b/TAO/docs/tutorials/Quoter/Simple/Persistent/server.cpp
@@ -85,7 +85,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
orb-> run ();
// Destroy POA, waiting until the destruction terminates.
- root_poa->destroy (1, 1);
+ root_poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {
diff --git a/TAO/docs/tutorials/Quoter/Simple/Server/index.html b/TAO/docs/tutorials/Quoter/Simple/Server/index.html
index 7f7c2bc31cf..2d1193b768c 100644
--- a/TAO/docs/tutorials/Quoter/Simple/Server/index.html
+++ b/TAO/docs/tutorials/Quoter/Simple/Server/index.html
@@ -259,7 +259,7 @@ int main (int argc, char* argv[])
// The application code goes here!
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &ex) {
diff --git a/TAO/docs/tutorials/Quoter/Simple/Server/server.cpp b/TAO/docs/tutorials/Quoter/Simple/Server/server.cpp
index 9fa80224011..743b9161fc5 100644
--- a/TAO/docs/tutorials/Quoter/Simple/Server/server.cpp
+++ b/TAO/docs/tutorials/Quoter/Simple/Server/server.cpp
@@ -31,7 +31,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
orb->run ();
// Destroy the POA, waiting until the destruction terminates
- poa->destroy (1, 1);
+ poa->destroy (true, true);
orb->destroy ();
}
catch (const CORBA::Exception &) {