Files
Li, Xun d10cabebb5 Linux 2.5 Open Source Gold Release
Added new APIs in sgx_uae_service.h and sgx_ukey_exchange.h to support ECDSA quote based remote attestation.
  The set of legacy APIs supports EPID only and the set of new APIs supports ECDSA quotes.
Enhanced Edger8r with structure deep-copy feature.
Fixed bugs.

Signed-off-by: Li, Xun <xun.li@intel.com>
2019-04-02 13:26:58 +08:00

76 lines
3.1 KiB
C++

/*=============================================================================
Library: CppMicroServices
Copyright (c) The CppMicroServices developers. See the COPYRIGHT
file at the top-level directory of this distribution and at
https://github.com/CppMicroServices/CppMicroServices/COPYRIGHT .
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=============================================================================*/
#ifndef US_BUNDLE_NAME
# error Missing US_BUNDLE_NAME preprocessor define
#endif
#ifndef CPPMICROSERVICES_BUNDLEINITIALIZATION_H
# define CPPMICROSERVICES_BUNDLEINITIALIZATION_H
# include "cppmicroservices/GlobalConfig.h"
# include <atomic>
namespace cppmicroservices {
class BundleContextPrivate;
}
/**
* \ingroup MicroServices
* \ingroup gr_macros
*
* \brief Creates initialization code for a bundle.
*
* Each bundle which wants to register itself with the CppMicroServices library
* has to put a call to this macro in one of its source files. Further, the bundle's
* source files must be compiled with the \c US_BUNDLE_NAME pre-processor definition
* set to a bundle-unique identifier.
*
* Calling the #CPPMICROSERVICES_INITIALIZE_BUNDLE macro will initialize the bundle for use with
* the CppMicroServices library.
*
* \rststar
* .. hint::
*
* If you are using CMake, consider using the provided CMake macro
* :cmake:command:`usFunctionGenerateBundleInit`.
* \endrststar
*/
# define CPPMICROSERVICES_INITIALIZE_BUNDLE \
std::atomic<cppmicroservices::BundleContextPrivate*> US_CTX_INS( \
US_BUNDLE_NAME){}; \
\
extern "C" cppmicroservices::BundleContextPrivate* US_GET_CTX_FUNC( \
US_BUNDLE_NAME)() \
{ \
return US_CTX_INS(US_BUNDLE_NAME).load(); \
} \
\
extern "C" US_ABI_EXPORT void US_SET_CTX_FUNC(US_BUNDLE_NAME)( \
cppmicroservices::BundleContextPrivate * ctx) \
{ \
US_CTX_INS(US_BUNDLE_NAME).store(ctx); \
}
#endif // CPPMICROSERVICES_BUNDLEINITIALIZATION_H