~roguescholar/boost/+git/thread:feature/pr-354

Last commit made on 2021-10-26
Get this branch:
git clone -b feature/pr-354 https://git.launchpad.net/~roguescholar/boost/+git/thread

Branch merges

Branch information

Name:
feature/pr-354
Repository:
lp:~roguescholar/boost/+git/thread

Recent commits

660f293... by Peter Dimov <email address hidden>

Remove all Windows jobs from ci.yml; the timeouts aren't sufficient and adjusting them all is too much work

d4b81d8... by Peter Dimov <email address hidden>

Remove mingw job; it's hopeless

e4d16eb... by Peter Dimov <email address hidden>

Trim Windows jobs as they take too long

28a0a19... by Peter Dimov <email address hidden>

Switch g++-5 to C++11

fca97a8... by Peter Dimov <email address hidden>

Adjust warning suppression

48e639b... by Peter Dimov <email address hidden>

Add .github/workflows

51f3e16... by Peter Dimov <email address hidden>

Merge branch 'develop' of https://github.com/Romain-Geissler-1A/thread into feature/pr-354

6fca28b... by Peter Dimov <email address hidden>

Merge pull request #356 from Dani-Hub/Tolerable-delay-in-interruptible_wait-on-Win32-is-too-long-2

#348 Tolerable delay in interruptible_wait on Win32 is too long

636e4a8... by =?utf-8?q?Daniel_Kr=C3=BCgler?= <email address hidden>

#348 Tolerable delay in interruptible_wait on Win32 is too long
Ensure that SetWaitableTimerEx's TolerableDelay parameter is clamped between 32 and 1000 ms when computing the 5% deviation.

f9d0e59... by Romain Geissler

Fix -Wsign-compare warning with glibc 2.34 on Linux platforms.

In file included from /data/mwrep/res/osp/Boost/21-0-0-0/include/boost/thread/thread_only.hpp:17,
                 from /data/mwrep/res/osp/Boost/21-0-0-0/include/boost/thread/thread.hpp:12,
                 from src/GetTest.cpp:12:
/data/mwrep/res/osp/Boost/21-0-0-0/include/boost/thread/pthread/thread_data.hpp: In member function 'void boost::thread_attributes::set_stack_size(std::size_t)':
/data/mwrep/res/osp/Boost/21-0-0-0/include/boost/thread/pthread/thread_data.hpp:61:19: error: comparison of integer expressions of different signedness: 'std::size_t' {aka 'long unsigned int'} and 'long int' [-Werror=sign-compare]
   61 | if (size<PTHREAD_STACK_MIN) size=PTHREAD_STACK_MIN;
      | ^