aboutsummaryrefslogtreecommitdiff
path: root/guix-build-coordinator/utils.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2023-05-02 22:15:39 +0200
committerChristopher Baines <mail@cbaines.net>2023-05-02 22:15:39 +0200
commit6f9b3b28ba220ac0287f93b97604bc4cdc7fd8bb (patch)
treec3999a2fd31293df184435ce5085a9a22f82304c /guix-build-coordinator/utils.scm
parent58035075378b66972e203de609b400173658f15f (diff)
downloadbuild-coordinator-6f9b3b28ba220ac0287f93b97604bc4cdc7fd8bb.tar
build-coordinator-6f9b3b28ba220ac0287f93b97604bc4cdc7fd8bb.tar.gz
Remove the gbc prefix from the thread names
As this shouldn't be needed to help identify them.
Diffstat (limited to 'guix-build-coordinator/utils.scm')
-rw-r--r--guix-build-coordinator/utils.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-build-coordinator/utils.scm b/guix-build-coordinator/utils.scm
index 363bc27..e840ba7 100644
--- a/guix-build-coordinator/utils.scm
+++ b/guix-build-coordinator/utils.scm
@@ -985,7 +985,7 @@ References: ~a~%"
(catch 'system-error
(lambda ()
(set-thread-name
- (string-append "gbc " name " q t "
+ (string-append name " q t "
(number->string thread-index))))
(const #t))
@@ -1147,7 +1147,7 @@ References: ~a~%"
(catch 'system-error
(lambda ()
(set-thread-name
- (string-append "gbc " name " p t "
+ (string-append name " p t "
(number->string thread-index))))
(const #t))