/* example.h - Function prototypes for example applications. */ /* * RTXC Quadros Version 1.0 * Copyright (c) 1999-2003 * Quadros Systems, Inc. * ALL RIGHTS RESERVED * * THE INFORMATION HEREIN IS CONFIDENTIAL AND PROPRIETARY. * UNAUTHORIZED DISCLOSURE OR DISTRIBUTION IS PROHIBITED. * */ #ifndef _EXAMPLE_H /* { */ #define _EXAMPLE_H /* Example initialization */ void example_init(void); /* Example Null Task routine. */ void example_null_run(void); /* Example thread entry points */ void entry_point1(void *, void *); void entry_point2(void *, void *); void entry_point3(void *, void *); void entry_point4(void *, void *); void entry_point5(void *, void *); void entry_point6(void *, void *); /* Example exception entry points */ void uexcptn1(void); void uexcptn2(void); #endif /* } _EXAMPLE_H */ /* end of file - example.h */