Richard Barry | 60338bd | 2007-08-21 16:54:48 +0000 | [diff] [blame] | 1 | /*
|
Richard Barry | cc61126 | 2011-09-20 18:22:39 +0000 | [diff] [blame] | 2 | FreeRTOS V7.0.2 - Copyright (C) 2011 Real Time Engineers Ltd.
|
Richard Barry | 89bf1cf | 2011-04-08 18:30:58 +0000 | [diff] [blame] | 3 |
|
Richard Barry | 60338bd | 2007-08-21 16:54:48 +0000 | [diff] [blame] | 4 |
|
Richard Barry | 26bf0da | 2009-10-13 11:05:41 +0000 | [diff] [blame] | 5 | ***************************************************************************
|
Richard Barry | 89bf1cf | 2011-04-08 18:30:58 +0000 | [diff] [blame] | 6 | * *
|
| 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 Barry | 26bf0da | 2009-10-13 11:05:41 +0000 | [diff] [blame] | 22 | ***************************************************************************
|
| 23 |
|
Richard Barry | 89bf1cf | 2011-04-08 18:30:58 +0000 | [diff] [blame] | 24 |
|
Richard Barry | 64c701a | 2009-10-05 10:23:06 +0000 | [diff] [blame] | 25 | This file is part of the FreeRTOS distribution.
|
Richard Barry | 60338bd | 2007-08-21 16:54:48 +0000 | [diff] [blame] | 26 |
|
Richard Barry | 26bf0da | 2009-10-13 11:05:41 +0000 | [diff] [blame] | 27 | FreeRTOS is free software; you can redistribute it and/or modify it under
|
Richard Barry | 64c701a | 2009-10-05 10:23:06 +0000 | [diff] [blame] | 28 | the terms of the GNU General Public License (version 2) as published by the
|
Richard Barry | 26bf0da | 2009-10-13 11:05:41 +0000 | [diff] [blame] | 29 | Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
|
Richard Barry | 89bf1cf | 2011-04-08 18:30:58 +0000 | [diff] [blame] | 30 | >>>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 Barry | 26bf0da | 2009-10-13 11:05:41 +0000 | [diff] [blame] | 39 | by writing to Richard Barry, contact details for whom are available on the
|
| 40 | FreeRTOS WEB site.
|
Richard Barry | 2f40ad7 | 2009-03-14 19:20:12 +0000 | [diff] [blame] | 41 |
|
Richard Barry | 64c701a | 2009-10-05 10:23:06 +0000 | [diff] [blame] | 42 | 1 tab == 4 spaces!
|
Richard Barry | 60338bd | 2007-08-21 16:54:48 +0000 | [diff] [blame] | 43 |
|
Richard Barry | 64c701a | 2009-10-05 10:23:06 +0000 | [diff] [blame] | 44 | http://www.FreeRTOS.org - Documentation, latest information, license and
|
| 45 | contact details.
|
Richard Barry | c86dcf7 | 2008-02-03 19:45:58 +0000 | [diff] [blame] | 46 |
|
Richard Barry | 64c701a | 2009-10-05 10:23:06 +0000 | [diff] [blame] | 47 | http://www.SafeRTOS.com - A version that is certified for use in safety
|
| 48 | critical systems.
|
Richard Barry | c86dcf7 | 2008-02-03 19:45:58 +0000 | [diff] [blame] | 49 |
|
Richard Barry | 64c701a | 2009-10-05 10:23:06 +0000 | [diff] [blame] | 50 | http://www.OpenRTOS.com - Commercial support, development, porting,
|
| 51 | licensing and training services.
|
Richard Barry | 60338bd | 2007-08-21 16:54:48 +0000 | [diff] [blame] | 52 | */
|
| 53 |
|
| 54 | #ifndef GEN_Q_TEST_H
|
| 55 | #define GEN_Q_TEST_H
|
| 56 |
|
| 57 | void vStartGenericQueueTasks( unsigned portBASE_TYPE uxPriority );
|
| 58 | portBASE_TYPE xAreGenericQueueTasksStillRunning( void );
|
| 59 |
|
| 60 | #endif /* GEN_Q_TEST_H */
|
| 61 |
|
| 62 |
|
| 63 |
|