www.pudn.com > S3c2410bsp.zip > usrAppInit.c


/* usrAppInit.c - stub application initialization routine */ 
 
/* Copyright 1984-1998 Wind River Systems, Inc. */ 
 
/****************************************************************************** 
* 
* usrAppInit - initialize the users application 
*/  
 
void usrAppInit (void) 
    { 
#ifdef	USER_APPL_INIT 
	USER_APPL_INIT;		/* for backwards compatibility */ 
#endif 
	 if (usrTffsConfig (0, 0, "/tffs0/vxworks") == ERROR) 
        printf ("usrTffsConfig failed.\n");
	else
		printf ("done.\n"); 
 
    /* add application specific code here */ 
    }