diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-05-05 11:37:43 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-05-05 11:37:43 +0100 |
commit | aedcdfe854c351c7d441487a30d931acabc1ce82 (patch) | |
tree | 286d878204ec8a9d5455634577699d921b86d6b5 /src/lua/lua_thread_pool.h | |
parent | 1df88256728426cf64f6a3e5f1a0219d1342e7df (diff) | |
download | rspamd-aedcdfe854c351c7d441487a30d931acabc1ce82.tar.gz rspamd-aedcdfe854c351c7d441487a30d931acabc1ce82.zip |
[Minor] Allow forced termination of the suspended threads
Diffstat (limited to 'src/lua/lua_thread_pool.h')
-rw-r--r-- | src/lua/lua_thread_pool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/lua_thread_pool.h b/src/lua/lua_thread_pool.h index 66c8b991c..2845d2f67 100644 --- a/src/lua/lua_thread_pool.h +++ b/src/lua/lua_thread_pool.h @@ -192,9 +192,9 @@ lua_thread_resume_full (struct thread_entry *thread_entry, void lua_thread_pool_terminate_entry_full (struct lua_thread_pool *pool, struct thread_entry *thread_entry, - const gchar *loc); + const gchar *loc, bool enforce); #define lua_thread_pool_terminate_entry(pool, thread_entry) \ - lua_thread_pool_terminate_entry_full (pool, thread_entry, G_STRLOC) + lua_thread_pool_terminate_entry_full (pool, thread_entry, G_STRLOC, false) #ifdef __cplusplus } |