CI updates

This commit is contained in:
Markus F.X.J. Oberhumer
2025-04-10 20:04:34 +02:00
parent d23484b9db
commit c4bfebeceb
6 changed files with 49 additions and 17 deletions
+1 -1
View File
@@ -29,7 +29,7 @@
static Options global_options;
// also see class PackMaster for per-file local options
upx_thread_local Options *opt = &global_options;
Options *opt = &global_options;
#if WITH_THREADS
std::mutex opt_lock_mutex; // for locking "opt"
+1 -1
View File
@@ -31,7 +31,7 @@ struct Options;
#define options_t Options // old name
// global options, see class PackMaster for per-file local options
extern upx_thread_local Options *opt;
extern Options *opt;
#if WITH_THREADS
extern std::mutex opt_lock_mutex; // for locking "opt"