-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bind out cross-process lock with unit tests. (#519)
Co-authored-by: Nate Prewitt <[email protected]>
- Loading branch information
1 parent
fbf82f2
commit 16e6492
Showing
6 changed files
with
192 additions
and
1 deletion.
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
Submodule aws-c-common
updated
14 files
+19 −3 | .github/workflows/ci.yml | |
+23 −0 | include/aws/common/allocator.h | |
+35 −0 | include/aws/common/cross_process_lock.h | |
+24 −0 | include/aws/common/priority_queue.h | |
+64 −13 | source/allocator.c | |
+105 −0 | source/posix/cross_process_lock.c | |
+24 −0 | source/priority_queue.c | |
+2 −2 | source/task_scheduler.c | |
+93 −0 | source/windows/cross_process_lock.c | |
+10 −0 | tests/CMakeLists.txt | |
+39 −4 | tests/alloc_test.c | |
+116 −0 | tests/cross_process_lock_tests.c | |
+36 −0 | tests/priority_queue_test.c | |
+16 −1 | tests/system_resource_util_test.c |
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
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