|
0
|
1 #ifndef CYGONCE_KERNEL_KERNEL_HXX |
|
|
2 #define CYGONCE_KERNEL_KERNEL_HXX |
|
|
3 |
|
|
4 //========================================================================== |
|
|
5 // |
|
2
|
6 // kernel.hxx |
|
0
|
7 // |
|
2
|
8 // Kernel mega-include file |
|
0
|
9 // |
|
|
10 //========================================================================== |
|
|
11 //####COPYRIGHTBEGIN#### |
|
|
12 // |
|
|
13 // ------------------------------------------- |
|
|
14 // The contents of this file are subject to the Cygnus eCos Public License |
|
|
15 // Version 1.0 (the "License"); you may not use this file except in |
|
|
16 // compliance with the License. You may obtain a copy of the License at |
|
|
17 // http://sourceware.cygnus.com/ecos |
|
|
18 // |
|
|
19 // Software distributed under the License is distributed on an "AS IS" |
|
|
20 // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the |
|
|
21 // License for the specific language governing rights and limitations under |
|
|
22 // the License. |
|
|
23 // |
|
|
24 // The Original Code is eCos - Embedded Cygnus Operating System, released |
|
|
25 // September 30, 1998. |
|
|
26 // |
|
|
27 // The Initial Developer of the Original Code is Cygnus. Portions created |
|
2
|
28 // by Cygnus are Copyright (C) 1998,1999 Cygnus Solutions. All Rights Reserved. |
|
0
|
29 // ------------------------------------------- |
|
|
30 // |
|
|
31 //####COPYRIGHTEND#### |
|
|
32 //========================================================================== |
|
|
33 //#####DESCRIPTIONBEGIN#### |
|
|
34 // |
|
2
|
35 // Author(s): nickg |
|
|
36 // Contributors: nickg |
|
|
37 // Date: 1997-09-09 |
|
|
38 // Purpose: Include all kernel files |
|
|
39 // Description: This file contains includes for all the kernel |
|
0
|
40 // headers. This simplifys things in the sources. |
|
2
|
41 // Usage: #include <cyg/kernel/kernel.hxx> |
|
0
|
42 // |
|
|
43 //####DESCRIPTIONEND#### |
|
|
44 // |
|
|
45 //========================================================================== |
|
|
46 |
|
|
47 |
|
|
48 #include <pkgconf/kernel.h> |
|
|
49 |
|
|
50 #include <cyg/kernel/ktypes.h> |
|
|
51 |
|
|
52 #include <cyg/infra/cyg_ass.h> // assertion macros |
|
|
53 #include <cyg/infra/cyg_trac.h> // tracing macros |
|
|
54 |
|
|
55 #include <cyg/kernel/errors.h> |
|
|
56 |
|
|
57 #include <cyg/kernel/instrmnt.h> |
|
|
58 |
|
|
59 #include <cyg/kernel/diag.h> |
|
|
60 |
|
|
61 #include <cyg/kernel/sched.hxx> |
|
|
62 #include <cyg/kernel/thread.hxx> |
|
|
63 #include <cyg/kernel/thread.inl> |
|
|
64 #include <cyg/kernel/intr.hxx> |
|
|
65 #include <cyg/kernel/clock.hxx> |
|
|
66 |
|
|
67 #include <cyg/kernel/sema.hxx> |
|
|
68 #include <cyg/kernel/mutex.hxx> |
|
|
69 |
|
|
70 #include <cyg/kernel/sched.inl> |
|
|
71 #include <cyg/kernel/clock.inl> |
|
|
72 |
|
|
73 // ------------------------------------------------------------------------- |
|
|
74 #endif // #ifndef CYGONCE_KERNEL_KERNEL_HXX |
|
|
75 // EOF kernel.hxx |