-
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
15 changed files
with
44 additions
and
40 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
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 2.0.4 | ||
VERSION 2.0.5 | ||
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 |
---|---|---|
|
@@ -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 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -36,7 +36,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
#ifndef LOCKFREE_HPP | ||
|
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 priority queue implementation written in standard | ||
* c++11 suitable for both low-end microcontrollers all the way | ||
* to HPC machines. Lock-free for all scenarios. | ||
* @version 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -36,7 +36,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 priority queue implementation written in standard | ||
* c++11 suitable for both low-end microcontrollers all the way | ||
* to HPC machines. Lock-free for all scenarios. | ||
* @version 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -36,7 +36,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 queue implementation written in standard c++11 | ||
* suitable for both low-end microcontrollers all the way | ||
* to HPC machines. Lock-free for all scenarios. | ||
* @version 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -36,7 +36,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 queue implementation written in standard c++11 | ||
* suitable for both low-end microcontrollers all the way | ||
* to HPC machines. Lock-free for all scenarios. | ||
* @version 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -36,7 +36,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
namespace lockfree { | ||
|
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 @@ | |
* standard c++11 suitable for all systems, from low-end | ||
* microcontrollers to HPC machines. | ||
* Lock-free for single consumer single producer scenarios. | ||
* @version 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
namespace lockfree { | ||
|
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 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
/************************** 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 2.0.4 | ||
* @date 10. August 2023 | ||
* @version 2.0.5 | ||
* @date 7. December 2023 | ||
* @author Djordje Nedic | ||
**************************************************************/ | ||
|
||
|
@@ -37,7 +37,7 @@ | |
* This file is part of lockfree | ||
* | ||
* Author: Djordje Nedic <[email protected]> | ||
* Version: v2.0.4 | ||
* Version: v2.0.5 | ||
**************************************************************/ | ||
|
||
namespace lockfree { | ||
|