GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/util/concurrency.cc
Date: 2025-06-29 02:35:41
Exec Total Coverage
Lines: 34 36 94.4%
Branches: 11 20 55.0%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5
6 #include "util/concurrency.h"
7
8 #include <pthread.h>
9 #include <unistd.h>
10
11 #include <cassert>
12 #include <cstddef>
13
14 #include "util/logging.h"
15 #include "util/mutex.h"
16
17 #ifdef CVMFS_NAMESPACE_GUARD
18 namespace CVMFS_NAMESPACE_GUARD {
19 #endif
20
21 1275 unsigned int GetNumberOfCpuCores() {
22 1275 const int numCPU = sysconf(_SC_NPROCESSORS_ONLN);
23
24
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1275 times.
1275 if (numCPU <= 0) {
25 LogCvmfs(kLogSpooler, kLogWarning,
26 "Unable to determine the available "
27 "number of processors in the system... "
28 "falling back to default '%d'",
29 kFallbackNumberOfCpus);
30 return kFallbackNumberOfCpus;
31 }
32
33 1275 return static_cast<unsigned int>(numCPU);
34 }
35
36 77440 Signal::Signal() : fired_(false) {
37 77440 int retval = pthread_mutex_init(&lock_, NULL);
38
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 77440 times.
77440 assert(retval == 0);
39 77440 retval = pthread_cond_init(&signal_, NULL);
40
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 77440 times.
77440 assert(retval == 0);
41 77440 }
42
43
44 77426 Signal::~Signal() {
45
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 77426 times.
77426 assert(IsSleeping());
46 77426 int res = pthread_cond_destroy(&signal_);
47
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 77440 times.
77440 assert(0 == res);
48 77440 res = pthread_mutex_destroy(&lock_);
49
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 77398 times.
77398 assert(0 == res);
50 77398 }
51
52
53 77664 void Signal::Wait() {
54 77664 const MutexLockGuard guard(lock_);
55
2/2
✓ Branch 0 taken 77392 times.
✓ Branch 1 taken 77664 times.
155056 while (!fired_) {
56
1/2
✓ Branch 1 taken 77392 times.
✗ Branch 2 not taken.
77392 const int retval = pthread_cond_wait(&signal_, &lock_);
57
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 77392 times.
77392 assert(retval == 0);
58 }
59 77664 fired_ = false;
60 77664 }
61
62
63 77664 void Signal::Wakeup() {
64 77664 const MutexLockGuard guard(lock_);
65 77664 fired_ = true;
66 77664 const int retval = pthread_cond_broadcast(&signal_);
67
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 77664 times.
77664 assert(retval == 0);
68 77664 }
69
70 77570 bool Signal::IsSleeping() {
71 77570 const MutexLockGuard guard(lock_);
72 155140 return fired_ == false;
73 77570 }
74
75 #ifdef CVMFS_NAMESPACE_GUARD
76 } // namespace CVMFS_NAMESPACE_GUARD
77 #endif
78