URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems/] [c/] [src/] [tests/] [psxtests/] [psxcancel/] [init.c] - Rev 158
Go to most recent revision | Compare with Previous | Blame | View Log
/* * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.OARcorp.com/rtems/license.html. * * $Id: init.c,v 1.1.1.1 2001-07-10 10:03:44 chris Exp $ */ #define CONFIGURE_INIT #include "system.h" #include <sched.h> void *POSIX_Init( void *argument ) { puts( "\n\n*** POSIX CANCEL TEST ***" ); puts( "*** END OF POSIX CANCEL TEST ***" ); exit( 0 ); return NULL; /* just so the compiler thinks we returned something */ }
Go to most recent revision | Compare with Previous | Blame | View Log