1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#ifndef AWS_COMMON_ERROR_INL
#define AWS_COMMON_ERROR_INL
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/common/error.h>
AWS_EXTERN_C_BEGIN
/*
* Raises `err` to the installed callbacks, and sets the thread's error.
*/
AWS_STATIC_IMPL
int aws_raise_error(int err) {
/*
* Certain static analyzers can't see through the out-of-line call to aws_raise_error,
* and assume that this might return AWS_OP_SUCCESS. We'll put the return inline just
* to help with their assumptions.
*/
aws_raise_error_private(err);
return AWS_OP_ERR;
}
AWS_EXTERN_C_END
#endif /* AWS_COMMON_ERROR_INL */
|