2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-17 14:12:08 +00:00

Compare commits

..

6 Commits

Author SHA1 Message Date
Peter Dimov
30dcb6dcbc Update ci.yml 2023-09-11 15:58:17 +03:00
Peter Dimov
52b62ee7b0 Update ci.yml 2023-01-01 03:23:17 +02:00
Peter Dimov
78af23ca14 Remove tabs 2022-12-31 20:01:31 +02:00
Peter Dimov
743d19d7d3 Update ci.yml 2022-07-05 21:47:52 +03:00
Peter Dimov
7f7faf234d Merge branch 'develop' of https://github.com/mbs-c/thread into feature/pr-324 2022-07-05 20:50:14 +03:00
Moritz Baumann
4bc126fc37 Update calling convention macros in thread_primitives.cpp 2020-08-11 10:07:39 +02:00
5 changed files with 44 additions and 21 deletions

View File

@@ -18,35 +18,58 @@ jobs:
matrix: matrix:
include: include:
- toolset: gcc-4.8 - toolset: gcc-4.8
os: ubuntu-18.04 os: ubuntu-latest
container: ubuntu:18.04
cxxstd: 11
install: g++-4.8 install: g++-4.8
- toolset: gcc-5 - toolset: gcc-5
cxxstd: 11 cxxstd: 11
os: ubuntu-18.04 os: ubuntu-latest
container: ubuntu:18.04
install: g++-5 install: g++-5
- toolset: gcc-7 - toolset: gcc-7
os: ubuntu-18.04 os: ubuntu-20.04
install: g++-7
- toolset: gcc-9 - toolset: gcc-9
os: ubuntu-20.04 os: ubuntu-20.04
- toolset: gcc-11 - toolset: gcc-11
os: ubuntu-20.04 os: ubuntu-22.04
install: g++-11
- toolset: clang - toolset: clang
compiler: clang++-12 compiler: clang++-15
cxxstd: 20 cxxstd: 20
os: ubuntu-20.04 os: ubuntu-22.04
install: clang-12 install: clang-15
- toolset: clang - toolset: clang
os: macos-10.15 os: macos-11
cxxstd: 11
- toolset: clang
os: macos-12
cxxstd: 14
- toolset: clang
os: macos-13
cxxstd: 17
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
container: ${{matrix.container}}
defaults:
run:
shell: bash
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Setup container environment
if: matrix.container
run: |
apt-get update
apt-get -y install sudo python3 git g++
- name: Install packages - name: Install packages
if: matrix.install if: matrix.install
run: sudo apt install ${{matrix.install}} run: |
sudo apt-get update
sudo apt-get -y install ${{matrix.install}}
- name: Setup Boost - name: Setup Boost
run: | run: |
@@ -66,7 +89,7 @@ jobs:
cd boost-root cd boost-root
cp -r $GITHUB_WORKSPACE/* libs/$LIBRARY cp -r $GITHUB_WORKSPACE/* libs/$LIBRARY
git submodule update --init tools/boostdep git submodule update --init tools/boostdep
python tools/boostdep/depinst/depinst.py --git_args "--jobs 3" $LIBRARY python3 tools/boostdep/depinst/depinst.py --git_args "--jobs 3" $LIBRARY
./bootstrap.sh ./bootstrap.sh
./b2 -d0 headers ./b2 -d0 headers

View File

@@ -52,7 +52,7 @@ struct get_tick_count64_state
BOOST_ALIGNMENT(64) static get_tick_count64_state g_state; BOOST_ALIGNMENT(64) static get_tick_count64_state g_state;
//! Artifical implementation of GetTickCount64 //! Artifical implementation of GetTickCount64
ticks_type WINAPI get_tick_count64() ticks_type BOOST_WINAPI_WINAPI_CC get_tick_count64()
{ {
uint64_t old_state = g_state.ticks.load(boost::memory_order_acquire); uint64_t old_state = g_state.ticks.load(boost::memory_order_acquire);
@@ -67,7 +67,7 @@ ticks_type WINAPI get_tick_count64()
} }
//! The function is called periodically in the system thread pool to make sure g_state.ticks is timely updated //! The function is called periodically in the system thread pool to make sure g_state.ticks is timely updated
void NTAPI refresh_get_tick_count64(boost::winapi::PVOID_, boost::winapi::BOOLEAN_) void BOOST_WINAPI_NTAPI_CC refresh_get_tick_count64(boost::winapi::PVOID_, boost::winapi::BOOLEAN_)
{ {
get_tick_count64(); get_tick_count64();
} }
@@ -88,7 +88,7 @@ void cleanup_get_tick_count64()
} }
} }
ticks_type WINAPI get_tick_count_init() ticks_type BOOST_WINAPI_WINAPI_CC get_tick_count_init()
{ {
boost::winapi::HMODULE_ hKernel32 = boost::winapi::GetModuleHandleW(L"kernel32.dll"); boost::winapi::HMODULE_ hKernel32 = boost::winapi::GetModuleHandleW(L"kernel32.dll");
if (hKernel32) if (hKernel32)

View File

@@ -27,11 +27,11 @@ static void double_interrupt()
int main() int main()
{ {
BOOST_TEST( true ); // perform lwt initialization BOOST_TEST( true ); // perform lwt initialization
std::cout << "Start" << std::endl; std::cout << "Start" << std::endl;
double_interrupt(); double_interrupt();
std::cout << "End" << std::endl; std::cout << "End" << std::endl;
return boost::report_errors(); return boost::report_errors();
} }

View File

@@ -25,11 +25,11 @@ static void double_interrupt()
int main() int main()
{ {
BOOST_TEST( true ); // perform lwt initialization BOOST_TEST( true ); // perform lwt initialization
std::cout << "Start" << std::endl; std::cout << "Start" << std::endl;
double_interrupt(); double_interrupt();
std::cout << "End" << std::endl; std::cout << "End" << std::endl;
return boost::report_errors(); return boost::report_errors();
} }

View File

@@ -25,11 +25,11 @@ static void double_interrupt()
int main() int main()
{ {
BOOST_TEST( true ); // perform lwt initialization BOOST_TEST( true ); // perform lwt initialization
std::cout << "Start" << std::endl; std::cout << "Start" << std::endl;
double_interrupt(); double_interrupt();
std::cout << "End" << std::endl; std::cout << "End" << std::endl;
return boost::report_errors(); return boost::report_errors();
} }