示例#1
0
void taskShowInit (void)

    {
    if (taskLibInit () == OK)
	{ classShowConnect (taskClassId, (FUNCPTR)taskShow);
#ifdef WV_INSTRUMENTATION
	classShowConnect (taskInstClassId, (FUNCPTR)taskShow);
#endif
	}
    }
示例#2
0
文件: classShow.c 项目: phoboz/vmx
STATUS classShowInit(
    void
    )
{
    return classShowConnect(rootClassId, (FUNCPTR) classShow);
}
示例#3
0
文件: msgQShow.c 项目: phoboz/vmx
STATUS msgQShowInit(
    void
    )
{
    return classShowConnect(msgQClassId, (FUNCPTR) msgQShow);
}
示例#4
0
文件: vmShow.c 项目: hermixy/vxworks5
void vmShowInit (void)
    {
    classShowConnect ((CLASS_ID) vmContextClassId, (FUNCPTR)vmContextShow);
    }
示例#5
0
STATUS mqPxShowInit (void)
    {
    classShowConnect (mqClassId, (FUNCPTR)mqPxShow);

    return (OK);
    }
示例#6
0
void rBuffShowInit (void)
    {
    classShowConnect (rBuffClassId, (FUNCPTR)rBuffShow);
    }