summaryrefslogtreecommitdiffstats
path: root/src/server/threadpool.c
diff options
context:
space:
mode:
authorSimon Rettberg2019-08-28 13:07:13 +0200
committerSimon Rettberg2019-08-28 13:07:13 +0200
commitac1bf45ebdd630fbc9ad2c1fa3c0ea99f5206799 (patch)
tree951388f8267c0194a142bf13d99b947ee7f820e6 /src/server/threadpool.c
parent[SERVER] Remove old comments (diff)
downloaddnbd3-ac1bf45ebdd630fbc9ad2c1fa3c0ea99f5206799.tar.gz
dnbd3-ac1bf45ebdd630fbc9ad2c1fa3c0ea99f5206799.tar.xz
dnbd3-ac1bf45ebdd630fbc9ad2c1fa3c0ea99f5206799.zip
[SERVER] Make signal handling more POSIX
According to POSIX, a signal sent to a PID can be delivered to an arbitrary thread of that process that hasn't the signal blocked. This seens to never happen on Linux, but would mess things up since the code expected the main signal handler to only be executed by the main thread. This should now be fixed by examining the destination PID of the signal as well as the ID of the thread currently running the signal handler. If we notice the signal wasn't sent by our own PID and the handler is not currently run by the main thread, we re-send the signal to the main thread. Otherwise, if the signal was sent by our own PID but the handler is not run in the main thread, do nothing. This way we can use pthread_kill() to wake up threads that might be stuck in a blocking syscall when it's time to shut down.
Diffstat (limited to 'src/server/threadpool.c')
-rw-r--r--src/server/threadpool.c28
1 files changed, 22 insertions, 6 deletions
diff --git a/src/server/threadpool.c b/src/server/threadpool.c
index 3947677..0b46fd6 100644
--- a/src/server/threadpool.c
+++ b/src/server/threadpool.c
@@ -15,6 +15,7 @@ static void *threadpool_worker(void *entryPtr);
static pthread_attr_t threadAttrs;
static atomic_int maxIdleThreads = -1;
static _Atomic(entry_t *) *pool = NULL;
+static atomic_int activeThreads = 0;
bool threadpool_init(int maxIdle)
{
@@ -34,10 +35,9 @@ bool threadpool_init(int maxIdle)
void threadpool_close()
{
- _shutdown = true;
- int max = maxIdleThreads;
- maxIdleThreads = -1;
- if ( max <= 0 ) return;
+ int max = atomic_exchange( &maxIdleThreads, -1 );
+ if ( max <= 0 )
+ return;
for ( int i = 0; i < max; ++i ) {
entry_t *cur = pool[i];
if ( cur != NULL && atomic_compare_exchange_strong( &pool[i], &cur, NULL ) ) {
@@ -46,9 +46,23 @@ void threadpool_close()
}
}
+void threadpool_waitEmpty()
+{
+ if ( activeThreads == 0 )
+ return;
+ do {
+ sleep( 1 );
+ logadd( LOG_INFO, "Threadpool: %d threads still active", (int)activeThreads );
+ } while ( activeThreads != 0 );
+}
+
bool threadpool_run(void *(*startRoutine)(void *), void *arg)
{
- if ( startRoutine == NULL ) {
+ if ( unlikely( _shutdown ) ) {
+ logadd( LOG_MINOR, "Cannot submit work to threadpool while shutting down!" );
+ return false;
+ }
+ if ( unlikely( startRoutine == NULL ) ) {
logadd( LOG_ERROR, "Trying to queue work for thread pool with NULL startRoutine" );
return false; // Or bail out!?
}
@@ -60,7 +74,7 @@ bool threadpool_run(void *(*startRoutine)(void *), void *arg)
break;
}
}
- if ( entry == NULL ) {
+ if ( unlikely( entry == NULL ) ) {
entry = malloc( sizeof(entry_t) );
if ( entry == NULL ) {
logadd( LOG_WARNING, "Could not alloc entry_t for new thread\n" );
@@ -78,6 +92,7 @@ bool threadpool_run(void *(*startRoutine)(void *), void *arg)
free( entry );
return false;
}
+ activeThreads++;
}
entry->startRoutine = startRoutine;
entry->arg = arg;
@@ -130,6 +145,7 @@ keep_going:;
}
signal_close( entry->signal );
free( entry );
+ activeThreads--;
return NULL;
}