]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/kernel/v2_0/tests/thread0.cxx
Initial revision
[karo-tx-redboot.git] / packages / kernel / v2_0 / tests / thread0.cxx
1 //==========================================================================
2 //
3 //        thread0.cxx
4 //
5 //        Thread test 0
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):     dsm
44 // Contributors:    dsm
45 // Date:          1998-02-11
46 // Description:   Limited to checking constructors/destructors
47 // Omissions:
48 //     Thread constructors with 2 or 3 args are not supported at time
49 // of writing test.
50 //####DESCRIPTIONEND####
51
52 #include <pkgconf/kernel.h>
53
54 #include <cyg/kernel/thread.hxx>
55
56 #include <cyg/infra/testcase.h>
57
58 #include <cyg/kernel/thread.inl>
59
60 #include "testaux.hxx"
61
62 #define STACKSIZE CYGNUM_HAL_STACK_SIZE_TYPICAL
63
64 static char stack[STACKSIZE];
65
66 static cyg_thread_entry entry;
67
68 static void entry( CYG_ADDRWORD data )
69 {
70 }
71
72 static int *p;
73
74 static bool flash( void )
75 {
76 #if 0 // no facility to allocate stack exists yet.
77     Cyg_Thread t0( entry, 0x111 );
78
79     CYG_ASSERTCLASS(&t0, "error");
80
81     Cyg_Thread t1( entry, (CYG_ADDRWORD)&t0, STACKSIZE );
82
83     CYG_ASSERTCLASS(&t1, "error");
84 #endif
85     Cyg_Thread t2( CYG_SCHED_DEFAULT_INFO,
86                    entry, (CYG_ADDRWORD)p, 
87                    "thread t2",
88                    (CYG_ADDRESS)stack, STACKSIZE );
89
90     CYG_ASSERTCLASS(&t2, "error");
91
92     return true;
93 }
94
95 void thread0_main( void )
96 {
97     CYG_TEST_INIT();
98
99     CHECK(flash());
100     CHECK(flash());
101     
102     CYG_TEST_PASS_FINISH("Thread 0 OK");
103     
104 }
105
106 externC void
107 cyg_start( void )
108
109 #ifdef CYGSEM_HAL_STOP_CONSTRUCTORS_ON_FLAG
110     cyg_hal_invoke_constructors();
111 #endif
112     thread0_main();
113 }
114 // EOF thread0.cxx