summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorAndrew Moss <1043609+amoss@users.noreply.github.com>2020-06-12 17:49:53 +0200
committerGitHub <noreply@github.com>2020-06-12 17:49:53 +0200
commit68f1888227bac1602d8777742995e0276bf05510 (patch)
treef249d428a9a1b92edd5fc1a29ee1264740f3dfd1 /daemon
parent777818f5b909aa982415968c55cf073e867e9950 (diff)
Change streaming terminology to parent-child in the code (#9323)
Diffstat (limited to 'daemon')
-rw-r--r--daemon/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/daemon/main.c b/daemon/main.c
index 2087d651ff..098c749d0b 100644
--- a/daemon/main.c
+++ b/daemon/main.c
@@ -36,7 +36,7 @@ void netdata_cleanup_and_exit(int ret) {
// exit cleanly
// stop everything
- info("EXIT: stopping master threads...");
+ info("EXIT: stopping static threads...");
cancel_main_threads();
// free the database
@@ -232,7 +232,7 @@ void cancel_main_threads() {
usec_t max = 5 * USEC_PER_SEC, step = 100000;
for (i = 0; static_threads[i].name != NULL ; i++) {
if(static_threads[i].enabled == NETDATA_MAIN_THREAD_RUNNING) {
- info("EXIT: Stopping master thread: %s", static_threads[i].name);
+ info("EXIT: Stopping main thread: %s", static_threads[i].name);
netdata_thread_cancel(*static_threads[i].thread);
found++;
}
@@ -254,7 +254,7 @@ void cancel_main_threads() {
if(found) {
for (i = 0; static_threads[i].name != NULL ; i++) {
if (static_threads[i].enabled != NETDATA_MAIN_THREAD_EXITED)
- error("Master thread %s takes too long to exit. Giving up...", static_threads[i].name);
+ error("Main thread %s takes too long to exit. Giving up...", static_threads[i].name);
}
}
else