⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ttrace2.cxx

📁 基于ecos的redboot
💻 CXX
📖 第 1 页 / 共 2 页
字号:
//==========================================================================
//
//      ttrace2.cxx
//
//      Trace test case                                                                
//
//==========================================================================
//####COPYRIGHTBEGIN####
//                                                                          
// ----------------------------------------------------------------------------
// Copyright (C) 1999, 2000 Red Hat, Inc.
//
// This file is part of the eCos host tools.
//
// This program is free software; you can redistribute it and/or modify it 
// under the terms of the GNU General Public License as published by the Free 
// Software Foundation; either version 2 of the License, or (at your option) 
// any later version.
// 
// This program is distributed in the hope that it will be useful, but WITHOUT 
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for 
// more details.
// 
// You should have received a copy of the GNU General Public License along with
// this program; if not, write to the Free Software Foundation, Inc., 
// 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
//
// ----------------------------------------------------------------------------
//                                                                          
//####COPYRIGHTEND####
//==========================================================================
//#####DESCRIPTIONBEGIN####                                             
//
// Author(s):           bartv
// Contributors:        bartv
// Date:                1999-01-06
// Purpose:
// Description:         This file tests all the trace macros for the case
//                      where tracing and function reporting are enabled.
//
//####DESCRIPTIONEND####
//==========================================================================


#define CYGDBG_USE_TRACING
#define CYGDBG_INFRA_DEBUG_FUNCTION_REPORTS
#include <cyg/infra/testcase.h>
#include <cyg/infra/cyg_trac.h>
#include <cstdlib>

bool tracing_is_enabled(void);
bool reporting_is_enabled(void);

#define CYG_TRACE_USER_BOOL  (tracing_is_enabled())
#define CYG_REPORT_USER_BOOL (reporting_is_enabled())


void
fn1(void)
{
    CYG_REPORT_FUNCTION();
}

void
fn2(void)
{
    CYG_REPORT_FUNCTYPE("printf-style format string");
}

void
fn3(void)
{
    CYG_REPORT_FUNCNAME("fn3");
}

void
fn4(void)
{
    CYG_REPORT_FUNCNAMETYPE("fn4", "printf-style format string");
}

void
fn5(void)
{
    CYG_REPORT_FUNCTIONC();
}

void
fn6(void)
{
    CYG_REPORT_FUNCTYPEC("printf-style format string");
}

void
fn7(void)
{
    CYG_REPORT_FUNCNAMEC("fn7");
}

void
fn8(void)
{
    CYG_REPORT_FUNCNAMETYPEC("fn8", "printf-style format string");
}

void
fn9(void)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_RETURN();
}

void
fn10(void)
{
    CYG_REPORT_FUNCTYPE("result is %d");
    CYG_REPORT_RETVAL(42);
}

void
fn11(void)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARGVOID();
}

void
fn12(int glorious)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG1("%d", glorious);
}

void
fn13(int glorious, int summer)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG2("%d %d", glorious, summer);
}

void
fn14(int glorious, int summer, int by)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG3("%d %d %d", glorious, summer, by);
}

void
fn15(int glorious, int summer, int by, int thisse)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG4("%d %d %d %d", glorious, summer, by, thisse);
}

void
fn16(int glorious, int summer, int by, int thisse, int son)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG5("%d %d %d %d %d", glorious, summer, by, thisse, son);
}

void
fn17(int glorious, int summer, int by, int thisse, int son, int of)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG6("%d %d %d %d %d %d", glorious, summer, by, thisse, son, of);
}

void
fn18(int glorious, int summer, int by, int thisse, int son, int of, int york)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG7("%d %d %d %d %d %d %d", glorious, summer, by, thisse, son, of, york);
}

void
fn19(int glorious, int summer, int by, int thisse, int son, int of, int york, int stop)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG8("%d %d %d %d %d %d %d %d", glorious, summer, by, thisse, son, of, york, stop);
}

void
fn20(int glorious)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG1X(glorious);
}

void
fn21(int glorious, int summer)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG2X(glorious, summer);
}

void
fn22(int glorious, int summer, int by)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG3X(glorious, summer, by);
}

void
fn23(int glorious, int summer, int by, int thisse)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG4X(glorious, summer, by, thisse);
}

void
fn24(int glorious, int summer, int by, int thisse, int son)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG5X(glorious, summer, by, thisse, son);
}

void
fn25(int glorious, int summer, int by, int thisse, int son, int of)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG6X(glorious, summer, by, thisse, son, of);
}

void
fn26(int glorious, int summer, int by, int thisse, int son, int of, int york)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG7X(glorious, summer, by, thisse, son, of, york);
}

void
fn27(int glorious, int summer, int by, int thisse, int son, int of, int york, int stop)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG8X(glorious, summer, by, thisse, son, of, york, stop);
}

void
fn28(int glorious)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG1Y(glorious);
}

void
fn29(int glorious, int summer)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG2Y(glorious, summer);
}

void
fn30(int glorious, int summer, int by)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG3Y(glorious, summer, by);
}

void
fn31(int glorious, int summer, int by, int thisse)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG4Y(glorious, summer, by, thisse);
}

void
fn32(int glorious, int summer, int by, int thisse, int son)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG5Y(glorious, summer, by, thisse, son);
}

void
fn33(int glorious, int summer, int by, int thisse, int son, int of)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG6Y(glorious, summer, by, thisse, son, of);
}

void
fn34(int glorious, int summer, int by, int thisse, int son, int of, int york)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG7Y(glorious, summer, by, thisse, son, of, york);
}

void
fn35(int glorious, int summer, int by, int thisse, int son, int of, int york, int stop)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG8D(glorious, summer, by, thisse, son, of, york, stop);
}

void
fn36(int glorious)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG1D(glorious);
}

void
fn37(int glorious, int summer)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG2D(glorious, summer);
}

void
fn38(int glorious, int summer, int by)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG3D(glorious, summer, by);
}

void
fn39(int glorious, int summer, int by, int thisse)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG4D(glorious, summer, by, thisse);
}

void
fn40(int glorious, int summer, int by, int thisse, int son)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG5D(glorious, summer, by, thisse, son);
}

void
fn41(int glorious, int summer, int by, int thisse, int son, int of)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG6D(glorious, summer, by, thisse, son, of);
}

void
fn42(int glorious, int summer, int by, int thisse, int son, int of, int york)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG7D(glorious, summer, by, thisse, son, of, york);
}

void
fn43(int glorious, int summer, int by, int thisse, int son, int of, int york, int stop)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG8D(glorious, summer, by, thisse, son, of, york, stop);
}

void
fn44(int glorious)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG1XV(glorious);
}

void
fn45(int glorious, int summer)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG2XV(glorious, summer);
}

void
fn46(int glorious, int summer, int by)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG3XV(glorious, summer, by);
}

void
fn47(int glorious, int summer, int by, int thisse)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG4XV(glorious, summer, by, thisse);
}

void
fn48(int glorious, int summer, int by, int thisse, int son)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG5XV(glorious, summer, by, thisse, son);
}

void
fn49(int glorious, int summer, int by, int thisse, int son, int of)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG6XV(glorious, summer, by, thisse, son, of);
}

void
fn50(int glorious, int summer, int by, int thisse, int son, int of, int york)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG7XV(glorious, summer, by, thisse, son, of, york);
}

void
fn51(int glorious, int summer, int by, int thisse, int son, int of, int york, int stop)
{
    CYG_REPORT_FUNCTION();
    CYG_REPORT_FUNCARG8XV(glorious, summer, by, thisse, son, of, york, stop);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -