-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
27 additions
and
20 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 |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# Changelog | ||
|
||
## 1.0.1 | ||
|
||
- Added static asserts to verify the template type arguments are trivial types | ||
- Added static asserts to verify the minimum size | ||
- Moved all the `relaxed` atomic loads before the `acquire` loads, potentially increasing performance, there was no need for these to be inside fences. | ||
- Updated the documentation in various places | ||
|
||
## 1.0.0 | ||
|
||
- Initial release |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
cmake_minimum_required(VERSION 3.16) | ||
|
||
project(lockfree | ||
VERSION 1.0.0 | ||
VERSION 1.0.1 | ||
LANGUAGES CXX | ||
) | ||
|
||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* microcontrollers to HPC machines. | ||
* Lock-free for single consumer single producer scenarios. | ||
* @version 1.2.0 | ||
* @date 9. May 2023 | ||
* @date 11. May 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v1.0.0 | ||
* Version: v1.0.1 | ||
**************************************************************/ | ||
|
||
/************************** INCLUDE ***************************/ | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* to HPC machines. Lock-free for single consumer single | ||
* producer scenarios. | ||
* @version 1.2.0 | ||
* @date 9. May 2023 | ||
* @date 11. May 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v1.0.0 | ||
* Version: v1.0.1 | ||
**************************************************************/ | ||
|
||
/************************** INCLUDE ***************************/ | ||
|
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 |
---|---|---|
|
@@ -3,8 +3,8 @@ | |
* @brief A collection of lock free data structures written in | ||
* standard c++11 suitable for all systems, from low-end | ||
* microcontrollers to HPC machines. | ||
* @version 1.0.0 | ||
* @date 9. May 2023 | ||
* @version 1.0.1 | ||
* @date 11. May 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -36,7 +36,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v1.0.0 | ||
* Version: v1.0.1 | ||
**************************************************************/ | ||
|
||
/************************** DEFINE ****************************/ | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
* suitable for both low-end microcontrollers all the way | ||
* to HPC machines. Lock-free for single consumer single | ||
* producer scenarios. | ||
* @version 1.0.0 | ||
* @date 9. May 2023 | ||
* @version 1.0.1 | ||
* @date 11. May 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v1.0.0 | ||
* Version: v1.0.1 | ||
**************************************************************/ | ||
|
||
/************************** INCLUDE ***************************/ | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
* suitable for both low-end microcontrollers all the way | ||
* to HPC machines. Lock-free for single consumer single | ||
* producer scenarios. | ||
* @version 1.0.0 | ||
* @date 9. May 2023 | ||
* @version 1.0.1 | ||
* @date 11. May 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v1.0.0 | ||
* Version: v1.0.1 | ||
**************************************************************/ | ||
|
||
/********************** PUBLIC METHODS ************************/ | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
* c++11 suitable for both low-end microcontrollers all the way | ||
* to HPC machines. Lock-free for single consumer single | ||
* producer scenarios. | ||
* @version 1.0.0 | ||
* @date 9. May 2023 | ||
* @version 1.0.1 | ||
* @date 11. May 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v1.0.0 | ||
* Version: v1.0.1 | ||
**************************************************************/ | ||
|
||
/************************** INCLUDE ***************************/ | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
* c++11 suitable for both low-end microcontrollers all the way | ||
* to HPC machines. Lock-free for single consumer single | ||
* producer scenarios. | ||
* @version 1.0.0 | ||
* @date 9. May 2023 | ||
* @version 1.0.1 | ||
* @date 11. May 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v1.0.0 | ||
* Version: v1.0.1 | ||
**************************************************************/ | ||
|
||
/********************** PUBLIC METHODS ************************/ | ||
|