summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwolff1 <wolff1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-02-26 23:27:50 +0000
committerwolff1 <wolff1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-02-26 23:27:50 +0000
commit82e6cf7c9e8d5ef84c7a47880f526d60e1efab1b (patch)
treee76b1e193994983e6650b7919015cc943317438c
parent9924407b5ebcbc839a188b985447dd598c5925da (diff)
downloadATCD-82e6cf7c9e8d5ef84c7a47880f526d60e1efab1b.tar.gz
ChangeLogTag: Thu Feb 26 23:27:15 UTC 2009 Friedhelm Wolf <fwolf@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/orbsvcs/orbsvcs/LWFT/FaultNotification.idl15
-rw-r--r--TAO/orbsvcs/orbsvcs/LWFT/LWFT.mpc7
3 files changed, 29 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 15f389f2704..a9333d5683d 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Thu Feb 26 23:27:15 UTC 2009 Friedhelm Wolf <fwolf@dre.vanderbilt.edu>
+
+ * orbsvcs/orbsvcs/LWFT/LWFT.mpc
+ * orbsvcs/orbsvcs/LWFT/FaultNotification.idl:
+
+ Added FaultNotification interface definition.
+
Thu Feb 26 04:24:02 UTC 2009 Friedhelm Wolf <fwolf@dre.vanderbilt.edu>
* MPC/config/lwft_server.mpb
diff --git a/TAO/orbsvcs/orbsvcs/LWFT/FaultNotification.idl b/TAO/orbsvcs/orbsvcs/LWFT/FaultNotification.idl
new file mode 100644
index 00000000000..b592c2a5247
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/LWFT/FaultNotification.idl
@@ -0,0 +1,15 @@
+// $Id$
+
+#ifndef FAULTNOTIFICATION_IDL
+#define FAULTNOTIFICATION_IDL
+
+module FLARE {
+
+ interface FaultNotification {
+ void proc_failure (in string host,
+ in string component_instance);
+ };
+
+};
+
+#endif /* FAULTNOTIFICATION_IDL */
diff --git a/TAO/orbsvcs/orbsvcs/LWFT/LWFT.mpc b/TAO/orbsvcs/orbsvcs/LWFT/LWFT.mpc
index e022df4937a..0c8208ceec4 100644
--- a/TAO/orbsvcs/orbsvcs/LWFT/LWFT.mpc
+++ b/TAO/orbsvcs/orbsvcs/LWFT/LWFT.mpc
@@ -168,22 +168,29 @@ project(*ReplicationManager) : portableserver, orbsvcs_output {
IDL_Files {
ReplicationManager.idl
+ FaultNotification.idl
}
Source_Files {
ReplicationManagerC.cpp
ReplicationManagerS.cpp
+ FaultNotificationC.cpp
+ FaultNotificationS.cpp
}
Header_Files {
ReplicationManagerC.h
ReplicationManagerS.h
+ FaultNotificationC.cpp
+ FaultNotificationS.cpp
rm_export.h
}
Inline_Files {
ReplicationManagerC.inl
ReplicationManagerS.inl
+ FaultNotificationC.inl
+ FaultNotificationS.inl
}
}