-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added bytewise_atomic_memcpy, updated seqlock_object accordingly
- Loading branch information
1 parent
bedcf27
commit ad82785
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// crill - the Cross-platform Real-time, I/O, and Low-Latency Library | ||
// Copyright (c) 2022 - Timur Doumler and Fabian Renn-Giles | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) | ||
|
||
#ifndef CRILL_ATOMIC_MEMCPY_H | ||
#define CRILL_ATOMIC_MEMCPY_H | ||
|
||
#include <atomic> | ||
|
||
namespace crill { | ||
|
||
} | ||
|
||
#endif //CRILL_ATOMIC_MEMCPY_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// | ||
// Created by Timur Doumler on 12/11/2024. | ||
// | ||
|
||
#ifndef CRILL_CONTRACTS_H | ||
#define CRILL_CONTRACTS_H | ||
|
||
#endif //CRILL_CONTRACTS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// crill - the Cross-platform Real-time, I/O, and Low-Latency Library | ||
// Copyright (c) 2022 - Timur Doumler and Fabian Renn-Giles | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) | ||
|
||
#include <crill/atomic_memcpy.h> | ||
#include <doctest/doctest.h> | ||
|
||
TEST_CASE("") | ||
{ | ||
|
||
} |