-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove weak ref and replace with intrusive linked list of incomplete …
…operations
- Loading branch information
1 parent
8fa8c20
commit 84bd2bd
Showing
5 changed files
with
171 additions
and
218 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
include/aws/mqtt/private/request-response/request_response_client.h
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef AWS_MQTT_PRIVATE_REQUEST_RESPONSE_REQUEST_RESPONSE_CLIENT_H | ||
#define AWS_MQTT_PRIVATE_REQUEST_RESPONSE_REQUEST_RESPONSE_CLIENT_H | ||
|
||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#include <aws/mqtt/mqtt.h> | ||
|
||
struct aws_mqtt_request_response_client; | ||
|
||
AWS_EXTERN_C_BEGIN | ||
|
||
struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_acquire_internal( | ||
struct aws_mqtt_request_response_client *client); | ||
|
||
struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_release_internal( | ||
struct aws_mqtt_request_response_client *client); | ||
|
||
AWS_EXTERN_C_END | ||
|
||
#endif /* AWS_MQTT_PRIVATE_REQUEST_RESPONSE_REQUEST_RESPONSE_CLIENT_H */ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.