summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-07-06 22:34:06 +0000
committerChris Lattner <sabre@nondot.org>2006-07-06 22:34:06 +0000
commit5418b0f39e8fe5b270cac32b3e0dda92865b8098 (patch)
tree3dcf43f1718d5d23d87686e175c7346c56e94642 /llvm/lib/Support
parentd0a7c2bc4256599e2afee64a485123039bcdf85d (diff)
downloadbcm5719-llvm-5418b0f39e8fe5b270cac32b3e0dda92865b8098.tar.gz
bcm5719-llvm-5418b0f39e8fe5b270cac32b3e0dda92865b8098.zip
Modify the SlowOperationInformer interface to not throw exceptions.
llvm-svn: 29028
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r--llvm/lib/Support/SlowOperationInformer.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Support/SlowOperationInformer.cpp b/llvm/lib/Support/SlowOperationInformer.cpp
index 4dafa2c5a1b..bfdfe8808f4 100644
--- a/llvm/lib/Support/SlowOperationInformer.cpp
+++ b/llvm/lib/Support/SlowOperationInformer.cpp
@@ -37,18 +37,18 @@ SlowOperationInformer::~SlowOperationInformer() {
/// an exception-safe state. The Amount variable should indicate how far
/// along the operation is, given in 1/10ths of a percent (in other words,
/// Amount should range from 0 to 1000).
-void SlowOperationInformer::progress(unsigned Amount) {
+bool SlowOperationInformer::progress(unsigned Amount) {
int status = sys::AlarmStatus();
if (status == -1) {
std::cout << "\n";
LastPrintAmount = 0;
- throw "While " + OperationName + ", operation cancelled.";
+ return true;
}
// If we haven't spent enough time in this operation to warrant displaying the
// progress bar, don't do so yet.
if (status == 0)
- return;
+ return false;
// Delete whatever we printed last time.
std::string ToPrint = std::string(LastPrintAmount, '\b');
@@ -62,4 +62,5 @@ void SlowOperationInformer::progress(unsigned Amount) {
LastPrintAmount = OS.str().size();
std::cout << ToPrint+OS.str() << std::flush;
+ return false;
}
OpenPOWER on IntegriCloud