From 8b540139e0d2bfbe2cb37ef307dc1d090e7d402c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 24 Jun 2015 12:25:33 -0700 Subject: [PATCH] API: tweak "waiting for lock" message that users see --- api/boinc_api.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/boinc_api.cpp b/api/boinc_api.cpp index 53dcd6e35b..9344557ec8 100644 --- a/api/boinc_api.cpp +++ b/api/boinc_api.cpp @@ -612,7 +612,9 @@ int boinc_init_options_general(BOINC_OPTIONS& opt) { // If we exit(0), the client will keep restarting us. // Instead, tell the client not to restart us for 10 min. // - boinc_temporary_exit(600, "Waiting to acquire lock"); + boinc_temporary_exit(600, + "Waiting to acquire slot directory lock. Another instance may be running." + ); } }