Skip to content

Commit

Permalink
fix shared libs (#762)
Browse files Browse the repository at this point in the history
`aws_thread_set_managed_join_timeout_ns()` and `aws_thread_join_all_managed()` are declared in `thread.h` and implemented in `thread_shared.c`. But since `thread_shared.c` did not include `thread.h`, it was not seen as the implementation by the linker.
  • Loading branch information
graebm authored Feb 22, 2021
1 parent 4f4a300 commit 6b2bdb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/aws/common/private/thread_shared.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: Apache-2.0.
*/

#include <aws/common/common.h>
#include <aws/common/thread.h>

struct aws_linked_list;
struct aws_linked_list_node;
Expand Down

0 comments on commit 6b2bdb8

Please sign in to comment.