mssf-core 0.8.0

Rust for Azure Service Fabric. Rust safe APIs.
Documentation
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------

#[cfg(target_os = "windows")]
pub fn wait_for_debugger() {
    loop {
        if unsafe { windows::Win32::System::Diagnostics::Debug::IsDebuggerPresent().as_bool() } {
            #[cfg(feature = "tracing")]
            tracing::info!("Debugger found.");
            break;
        } else {
            #[cfg(feature = "tracing")]
            tracing::info!("Waiting for debugger.");
            std::thread::sleep(std::time::Duration::from_secs(5));
        }
    }
}

#[cfg(target_os = "linux")]
pub fn wait_for_debugger() {}

/// macOS is not supported. This is merely to make this library to compile on macOS.
#[cfg(target_os = "macos")]
pub fn wait_for_debugger() {}