Lesson 35 - Get Compute Auth Token Working

This commit is contained in:
Norman Lansing
2026-02-28 12:32:28 -05:00
parent 1d477ee42a
commit 4fde462bce
7743 changed files with 1397833 additions and 18 deletions

View File

@@ -0,0 +1,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 */