remove unnecessary extern "C"
Signed-off-by: songxiaoli4790 <songxiaoli4790@liuxiuhai.cn>
This commit is contained in:
parent
ae692bfbc4
commit
0af2577498
|
@ -41,12 +41,6 @@
|
||||||
#include "los_debug.h"
|
#include "los_debug.h"
|
||||||
#include "los_mux.h"
|
#include "los_mux.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#if (LOSCFG_DYNLINK == 1)
|
#if (LOSCFG_DYNLINK == 1)
|
||||||
|
|
||||||
#if defined(__ICCARM__) || defined(__CC_ARM)
|
#if defined(__ICCARM__) || defined(__CC_ARM)
|
||||||
|
@ -929,10 +923,3 @@ INT32 LOS_DynlinkInit(VOID)
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* LOSCFG_DYNLINK */
|
#endif /* LOSCFG_DYNLINK */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
|
@ -39,12 +39,6 @@
|
||||||
#include "los_swtmr.h"
|
#include "los_swtmr.h"
|
||||||
#include "los_hook.h"
|
#include "los_hook.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
STATIC VOID LOS_TraceMemInit(VOID *pool, UINT32 size)
|
STATIC VOID LOS_TraceMemInit(VOID *pool, UINT32 size)
|
||||||
{
|
{
|
||||||
LOS_TRACE(MEM_INFO_REQ, pool);
|
LOS_TRACE(MEM_INFO_REQ, pool);
|
||||||
|
@ -264,9 +258,3 @@ VOID OsTraceCnvInit(VOID)
|
||||||
LOS_HookReg(LOS_HOOK_TYPE_SWTMR_START, LOS_TraceSwtmrStart);
|
LOS_HookReg(LOS_HOOK_TYPE_SWTMR_START, LOS_TraceSwtmrStart);
|
||||||
LOS_HookReg(LOS_HOOK_TYPE_SWTMR_STOP, LOS_TraceSwtmrStop);
|
LOS_HookReg(LOS_HOOK_TYPE_SWTMR_STOP, LOS_TraceSwtmrStop);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -45,12 +45,6 @@
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#if (LOSCFG_KERNEL_TRACE == 1)
|
#if (LOSCFG_KERNEL_TRACE == 1)
|
||||||
LITE_OS_SEC_BSS STATIC UINT32 g_traceEventCount;
|
LITE_OS_SEC_BSS STATIC UINT32 g_traceEventCount;
|
||||||
LITE_OS_SEC_BSS STATIC volatile enum TraceState g_traceState = TRACE_UNINIT;
|
LITE_OS_SEC_BSS STATIC volatile enum TraceState g_traceState = TRACE_UNINIT;
|
||||||
|
@ -426,9 +420,3 @@ SHELLCMD_ENTRY(tracedump_shellcmd, CMD_TYPE_EX, "trace_dump", 1, (CmdCallBack
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* LOSCFG_KERNEL_TRACE == 1 */
|
#endif /* LOSCFG_KERNEL_TRACE == 1 */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
#include "trace_pipeline_serial.h"
|
#include "trace_pipeline_serial.h"
|
||||||
#include "trace_pipeline.h"
|
#include "trace_pipeline.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#if (LOSCFG_TRACE_CONTROL_AGENT == 1)
|
#if (LOSCFG_TRACE_CONTROL_AGENT == 1)
|
||||||
UINT32 SerialPipelineInit(VOID)
|
UINT32 SerialPipelineInit(VOID)
|
||||||
{
|
{
|
||||||
|
@ -93,9 +87,3 @@ UINT32 OsTracePipelineInit(VOID)
|
||||||
OsTracePipelineReg(&g_serialOps);
|
OsTracePipelineReg(&g_serialOps);
|
||||||
return g_serialOps.init();
|
return g_serialOps.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -33,12 +33,6 @@
|
||||||
#include "trace_tlv.h"
|
#include "trace_tlv.h"
|
||||||
#include "los_trace_pri.h"
|
#include "los_trace_pri.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#if (LOSCFG_KERNEL_SMP == 1)
|
#if (LOSCFG_KERNEL_SMP == 1)
|
||||||
LITE_OS_SEC_BSS SPIN_LOCK_INIT(g_pipeSpin);
|
LITE_OS_SEC_BSS SPIN_LOCK_INIT(g_pipeSpin);
|
||||||
#define PIPE_LOCK(state) LOS_SpinLockSave(&g_pipeSpin, &(state))
|
#define PIPE_LOCK(state) LOS_SpinLockSave(&g_pipeSpin, &(state))
|
||||||
|
@ -154,9 +148,3 @@ UINT32 OsTraceDataWait(VOID)
|
||||||
{
|
{
|
||||||
return g_tracePipelineOps->wait();
|
return g_tracePipelineOps->wait();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
#include "trace_tlv.h"
|
#include "trace_tlv.h"
|
||||||
#include "securec.h"
|
#include "securec.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#define CRC_WIDTH 8
|
#define CRC_WIDTH 8
|
||||||
#define CRC_POLY 0x1021
|
#define CRC_POLY 0x1021
|
||||||
#define CRC_TOPBIT 0x8000
|
#define CRC_TOPBIT 0x8000
|
||||||
|
@ -114,9 +108,3 @@ UINT32 OsTraceDataEncode(UINT8 type, const TlvTable *table, UINT8 *src, UINT8 *d
|
||||||
head->crc = crc;
|
head->crc = crc;
|
||||||
return len + sizeof(TraceMsgTlvHead);
|
return len + sizeof(TraceMsgTlvHead);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
#include "los_trace_pri.h"
|
#include "los_trace_pri.h"
|
||||||
#include "trace_pipeline.h"
|
#include "trace_pipeline.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#if (LOSCFG_RECORDER_MODE_OFFLINE == 1)
|
#if (LOSCFG_RECORDER_MODE_OFFLINE == 1)
|
||||||
#define BITS_NUM_FOR_TASK_ID 16
|
#define BITS_NUM_FOR_TASK_ID 16
|
||||||
|
|
||||||
|
@ -257,9 +251,3 @@ OfflineHead *OsTraceRecordGet(VOID)
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* LOSCFG_RECORDER_MODE_OFFLINE == 1 */
|
#endif /* LOSCFG_RECORDER_MODE_OFFLINE == 1 */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
#include "los_trace_pri.h"
|
#include "los_trace_pri.h"
|
||||||
#include "trace_pipeline.h"
|
#include "trace_pipeline.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#if (LOSCFG_RECORDER_MODE_ONLINE == 1)
|
#if (LOSCFG_RECORDER_MODE_ONLINE == 1)
|
||||||
UINT32 OsTraceGetMaskTid(UINT32 taskId)
|
UINT32 OsTraceGetMaskTid(UINT32 taskId)
|
||||||
{
|
{
|
||||||
|
@ -105,9 +99,3 @@ OfflineHead *OsTraceRecordGet(VOID)
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* LOSCFG_RECORDER_MODE_ONLINE == 1 */
|
#endif /* LOSCFG_RECORDER_MODE_ONLINE == 1 */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -42,12 +42,6 @@
|
||||||
#include "los_debugtools.h"
|
#include "los_debugtools.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#define OS_PRIORITY_QUEUE_NUM 32
|
#define OS_PRIORITY_QUEUE_NUM 32
|
||||||
#define PRIQUEUE_PRIOR0_BIT 0x80000000U
|
#define PRIQUEUE_PRIOR0_BIT 0x80000000U
|
||||||
#define OS_TICK_RESPONSE_TIME_MAX LOSCFG_BASE_CORE_TICK_RESPONSE_MAX
|
#define OS_TICK_RESPONSE_TIME_MAX LOSCFG_BASE_CORE_TICK_RESPONSE_MAX
|
||||||
|
@ -628,9 +622,3 @@ VOID LOS_Schedule(VOID)
|
||||||
ArchTaskSchedule();
|
ArchTaskSchedule();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -33,12 +33,6 @@
|
||||||
#include "los_sched.h"
|
#include "los_sched.h"
|
||||||
#include "los_debug.h"
|
#include "los_debug.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
SortLinkAttribute g_taskSortLink;
|
SortLinkAttribute g_taskSortLink;
|
||||||
|
|
||||||
#if (LOSCFG_BASE_CORE_SWTMR == 1)
|
#if (LOSCFG_BASE_CORE_SWTMR == 1)
|
||||||
|
@ -175,9 +169,3 @@ UINT64 OsSortLinkGetNextExpireTime(const SortLinkAttribute *sortLinkHead)
|
||||||
SortLinkList *listSorted = LOS_DL_LIST_ENTRY(head->pstNext, SortLinkList, sortLinkNode);
|
SortLinkList *listSorted = LOS_DL_LIST_ENTRY(head->pstNext, SortLinkList, sortLinkNode);
|
||||||
return OsSortLinkGetTargetExpireTime(OsGetCurrSchedTimeCycle(), listSorted);
|
return OsSortLinkGetTargetExpireTime(OsGetCurrSchedTimeCycle(), listSorted);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
Atomic g_testAtomicID03 = 0;
|
Atomic g_testAtomicID03 = 0;
|
||||||
Atomic64 g_testAtomicID05 = 0;
|
Atomic64 g_testAtomicID05 = 0;
|
||||||
|
|
||||||
|
@ -55,9 +49,3 @@ VOID ItSuiteLosAtomic(VOID)
|
||||||
ItLosAtomic010();
|
ItLosAtomic010();
|
||||||
ItLosAtomic011();
|
ItLosAtomic011();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static UINT32 TestCase(VOID)
|
static UINT32 TestCase(VOID)
|
||||||
{
|
{
|
||||||
volatile INT32 value = 0;
|
volatile INT32 value = 0;
|
||||||
|
@ -100,9 +94,3 @@ VOID ItLosAtomic001(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic001", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic001", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static UINT32 TestCase(VOID)
|
static UINT32 TestCase(VOID)
|
||||||
{
|
{
|
||||||
volatile INT32 value = 0;
|
volatile INT32 value = 0;
|
||||||
|
@ -92,9 +86,3 @@ VOID ItLosAtomic002(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic002", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic002", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static UINT32 TestCase(VOID)
|
static UINT32 TestCase(VOID)
|
||||||
{
|
{
|
||||||
volatile INT32 value = 0;
|
volatile INT32 value = 0;
|
||||||
|
@ -106,9 +100,3 @@ VOID ItLosAtomic003(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic003", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic003", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static VOID TaskF01(VOID)
|
static VOID TaskF01(VOID)
|
||||||
{
|
{
|
||||||
INT32 i;
|
INT32 i;
|
||||||
|
@ -104,9 +98,3 @@ VOID ItLosAtomic004(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic004", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic004", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static UINT32 TestCase(VOID)
|
static UINT32 TestCase(VOID)
|
||||||
{
|
{
|
||||||
volatile INT64 value = 0;
|
volatile INT64 value = 0;
|
||||||
|
@ -102,9 +96,3 @@ VOID ItLosAtomic005(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic005", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic005", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static UINT32 TestCase(VOID)
|
static UINT32 TestCase(VOID)
|
||||||
{
|
{
|
||||||
volatile INT64 value = 0;
|
volatile INT64 value = 0;
|
||||||
|
@ -126,9 +120,3 @@ VOID ItLosAtomic006(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic006", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic006", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static VOID TaskF01(VOID)
|
static VOID TaskF01(VOID)
|
||||||
{
|
{
|
||||||
INT64 i;
|
INT64 i;
|
||||||
|
@ -110,9 +104,3 @@ VOID ItLosAtomic007(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic007", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic007", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static VOID TaskF01(VOID)
|
static VOID TaskF01(VOID)
|
||||||
{
|
{
|
||||||
INT64 i;
|
INT64 i;
|
||||||
|
@ -113,9 +107,3 @@ VOID ItLosAtomic008(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic008", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic008", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#define DB_ATOMIC_MUTI_TASK_NUM (ATOMIC_MUTI_TASK_NUM * 2) // 2 is coefficients
|
#define DB_ATOMIC_MUTI_TASK_NUM (ATOMIC_MUTI_TASK_NUM * 2) // 2 is coefficients
|
||||||
|
|
||||||
static VOID TaskF01(VOID)
|
static VOID TaskF01(VOID)
|
||||||
|
@ -132,9 +126,3 @@ VOID ItLosAtomic009(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic009", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic009", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#define TEST_LOOP 10
|
#define TEST_LOOP 10
|
||||||
|
|
||||||
static VOID TaskF01(VOID)
|
static VOID TaskF01(VOID)
|
||||||
|
@ -78,10 +72,3 @@ VOID ItLosAtomic010(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic010", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic010", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
|
|
||||||
#include "it_los_atomic.h"
|
#include "it_los_atomic.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
static VOID TaskF01(VOID)
|
static VOID TaskF01(VOID)
|
||||||
{
|
{
|
||||||
Atomic atomicTestCounter = 0;
|
Atomic atomicTestCounter = 0;
|
||||||
|
@ -247,10 +241,3 @@ VOID ItLosAtomic011(VOID)
|
||||||
{
|
{
|
||||||
TEST_ADD_CASE("ItLosAtomic011", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
TEST_ADD_CASE("ItLosAtomic011", TestCase, TEST_LOS, TEST_ATO, TEST_LEVEL0, TEST_FUNCTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue