@section haMTCompatibility Multi-Threading Compatibility
-The High Availability hooks library currently reports it is not
-compatible with multi-threading. This will be revisited as there is
-no essential reason for such incompatibility.
+The High Availability hooks library currently it is compatible with
+multi-threading.
*/
/// @brief This function is called to retrieve the multi-threading compatibility.
///
-/// @note: this should be revisited as the library is not essentially
-/// incompatible.
-///
-/// @return 0 which means not compatible with multi-threading.
+/// @return 1 which means compatible with multi-threading.
int multi_threading_compatible() {
- return (0);
+ return (1);
}
} // end extern "C"