blob: a39563f5ae5a07b450adeb44697c8b5b1ebb3d5c [file] [log] [blame]
Richard Barry60338bd2007-08-21 16:54:48 +00001/*
Richard Barrycc611262011-09-20 18:22:39 +00002 FreeRTOS V7.0.2 - Copyright (C) 2011 Real Time Engineers Ltd.
Richard Barry89bf1cf2011-04-08 18:30:58 +00003
Richard Barry60338bd2007-08-21 16:54:48 +00004
Richard Barry26bf0da2009-10-13 11:05:41 +00005 ***************************************************************************
Richard Barry89bf1cf2011-04-08 18:30:58 +00006 * *
7 * FreeRTOS tutorial books are available in pdf and paperback. *
8 * Complete, revised, and edited pdf reference manuals are also *
9 * available. *
10 * *
11 * Purchasing FreeRTOS documentation will not only help you, by *
12 * ensuring you get running as quickly as possible and with an *
13 * in-depth knowledge of how to use FreeRTOS, it will also help *
14 * the FreeRTOS project to continue with its mission of providing *
15 * professional grade, cross platform, de facto standard solutions *
16 * for microcontrollers - completely free of charge! *
17 * *
18 * >>> See http://www.FreeRTOS.org/Documentation for details. <<< *
19 * *
20 * Thank you for using FreeRTOS, and thank you for your support! *
21 * *
Richard Barry26bf0da2009-10-13 11:05:41 +000022 ***************************************************************************
23
Richard Barry89bf1cf2011-04-08 18:30:58 +000024
Richard Barry64c701a2009-10-05 10:23:06 +000025 This file is part of the FreeRTOS distribution.
Richard Barry60338bd2007-08-21 16:54:48 +000026
Richard Barry26bf0da2009-10-13 11:05:41 +000027 FreeRTOS is free software; you can redistribute it and/or modify it under
Richard Barry64c701a2009-10-05 10:23:06 +000028 the terms of the GNU General Public License (version 2) as published by the
Richard Barry26bf0da2009-10-13 11:05:41 +000029 Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
Richard Barry89bf1cf2011-04-08 18:30:58 +000030 >>>NOTE<<< The modification to the GPL is included to allow you to
31 distribute a combined work that includes FreeRTOS without being obliged to
32 provide the source code for proprietary components outside of the FreeRTOS
33 kernel. FreeRTOS is distributed in the hope that it will be useful, but
34 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
35 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
36 more details. You should have received a copy of the GNU General Public
37 License and the FreeRTOS license exception along with FreeRTOS; if not it
38 can be viewed here: http://www.freertos.org/a00114.html and also obtained
Richard Barry26bf0da2009-10-13 11:05:41 +000039 by writing to Richard Barry, contact details for whom are available on the
40 FreeRTOS WEB site.
Richard Barry2f40ad72009-03-14 19:20:12 +000041
Richard Barry64c701a2009-10-05 10:23:06 +000042 1 tab == 4 spaces!
Richard Barry60338bd2007-08-21 16:54:48 +000043
Richard Barry64c701a2009-10-05 10:23:06 +000044 http://www.FreeRTOS.org - Documentation, latest information, license and
45 contact details.
Richard Barryc86dcf72008-02-03 19:45:58 +000046
Richard Barry64c701a2009-10-05 10:23:06 +000047 http://www.SafeRTOS.com - A version that is certified for use in safety
48 critical systems.
Richard Barryc86dcf72008-02-03 19:45:58 +000049
Richard Barry64c701a2009-10-05 10:23:06 +000050 http://www.OpenRTOS.com - Commercial support, development, porting,
51 licensing and training services.
Richard Barry60338bd2007-08-21 16:54:48 +000052*/
53
54#ifndef GEN_Q_TEST_H
55#define GEN_Q_TEST_H
56
57void vStartGenericQueueTasks( unsigned portBASE_TYPE uxPriority );
58portBASE_TYPE xAreGenericQueueTasksStillRunning( void );
59
60#endif /* GEN_Q_TEST_H */
61
62
63