From 888e224e40ec3ed7a55cd845ec4c06fcac11bbe2 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 27 Feb 2017 14:20:24 -0800 Subject: examples: Replaced throw with exit() in sync_to_gps --- host/examples/sync_to_gps.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'host/examples') diff --git a/host/examples/sync_to_gps.cpp b/host/examples/sync_to_gps.cpp index f27c3eff5..3a9b5c7e4 100644 --- a/host/examples/sync_to_gps.cpp +++ b/host/examples/sync_to_gps.cpp @@ -99,7 +99,8 @@ int UHD_SAFE_MAIN(int argc, char *argv[]) std::cout << "LOCKED" << std::endl; } else { std::cout << "FAILED" << std::endl; - throw uhd::runtime_error("Failed to lock to GPSDO 10 MHz Reference"); + std::cout << "Failed to lock to GPSDO 10 MHz Reference. Exiting." << std::endl; + exit(EXIT_FAILURE); } } else -- cgit v1.2.3