-
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.
- Loading branch information
1 parent
5d28330
commit f46d7e5
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule aws-c-common
updated
21 files
+1 −1 | cmake/AwsCFlags.cmake | |
+1 −1 | include/aws/common/priority_queue.h | |
+6 −0 | include/aws/common/private/dlloads.h | |
+24 −0 | include/aws/common/system_info.h | |
+6 −1 | include/aws/common/task_scheduler.h | |
+60 −0 | include/aws/common/thread_scheduler.h | |
+49 −4 | source/allocator.c | |
+43 −0 | source/common.c | |
+1 −1 | source/memtrace.c | |
+69 −0 | source/posix/system_info.c | |
+1 −0 | source/posix/thread.c | |
+4 −1 | source/task_scheduler.c | |
+220 −0 | source/thread_scheduler.c | |
+5 −2 | source/windows/mutex.c | |
+29 −2 | source/windows/system_info.c | |
+8 −0 | tests/CMakeLists.txt | |
+22 −0 | tests/mutex_test.c | |
+52 −0 | tests/system_info_tests.c | |
+31 −0 | tests/task_scheduler_test.c | |
+225 −0 | tests/thread_scheduler_test.c | |
+3 −13 | tests/thread_test.c |