]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/kernel/v2_0/tests/mbox1.cxx
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / kernel / v2_0 / tests / mbox1.cxx
1 //==========================================================================
2 //
3 //        mbox1.cxx
4 //
5 //        Mbox test 1
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 // Copyright (C) 2006 eCosCentric Ltd.
13 //
14 // eCos is free software; you can redistribute it and/or modify it under
15 // the terms of the GNU General Public License as published by the Free
16 // Software Foundation; either version 2 or (at your option) any later version.
17 //
18 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
19 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
21 // for more details.
22 //
23 // You should have received a copy of the GNU General Public License along
24 // with eCos; if not, write to the Free Software Foundation, Inc.,
25 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 //
27 // As a special exception, if other files instantiate templates or use macros
28 // or inline functions from this file, or you compile this file and link it
29 // with other works to produce a work based on this file, this file does not
30 // by itself cause the resulting work to be covered by the GNU General Public
31 // License. However the source code for this file must still be made available
32 // in accordance with section (3) of the GNU General Public License.
33 //
34 // This exception does not invalidate any other reasons why a work based on
35 // this file might be covered by the GNU General Public License.
36 // -------------------------------------------
37 //####ECOSGPLCOPYRIGHTEND####
38 //==========================================================================
39 //#####DESCRIPTIONBEGIN####
40 //
41 // Author:        dsm
42 // Contributors:    dsm
43 // Date:          1998-05-19
44 // Description:   Tests basic mbox functionality.
45 //####DESCRIPTIONEND####
46
47 #include <pkgconf/kernel.h>
48
49 #include <cyg/kernel/thread.hxx>        // Cyg_Thread
50 #include <cyg/kernel/thread.inl>
51 #include <cyg/kernel/sched.hxx>         // Cyg_Scheduler::start()
52
53 #include <cyg/kernel/mbox.hxx>
54
55 #include <cyg/infra/testcase.h>
56
57 #include <cyg/kernel/sched.inl>
58
59 #include <cyg/kernel/timer.hxx>         // Cyg_Timer
60 #include <cyg/kernel/clock.inl>         // Cyg_Clock
61
62 #define NTHREADS 2
63 #include "testaux.hxx"
64
65 static Cyg_Mbox m0, m1, m2;
66
67 static volatile cyg_atomic q = 0;
68
69 #ifndef CYGMTH_MBOX_PUT_CAN_WAIT
70 #define PUT tryput
71 #endif
72
73 static void entry0( CYG_ADDRWORD data )
74 {
75     cyg_count8 u,i;
76
77     Cyg_Thread::self()->set_priority(4);
78     
79     CYG_TEST_INFO("Testing put() and tryput() without wakeup");
80     CYG_TEST_CHECK(!m0.waiting_to_get(), "mbox not initialized properly");
81     CYG_TEST_CHECK(0==m0.peek(), "mbox not initialized properly");
82     CYG_TEST_CHECK(NULL==m0.peek_item(), "mbox not initialized properly");
83     m0.PUT((void *)55);
84     CYG_TEST_CHECK(1==m0.peek(), "peek() wrong");
85     CYG_TEST_CHECK(55==(cyg_count8)m0.peek_item(), "peek_item() wrong");
86     for(u=1; m0.tryput((void*)u); u++) {
87         CYG_TEST_CHECK(55==(cyg_count8)m0.peek_item(), "peek_item() wrong");
88         CYG_TEST_CHECK(u+1==m0.peek(), "peek() wrong");
89     }
90     CYG_TEST_CHECK(u == CYGNUM_KERNEL_SYNCH_MBOX_QUEUE_SIZE, "mbox not configured size");
91
92     // m0 now contains ( 55 1 2 .. u-1 )
93     CYG_TEST_CHECK(u==m0.peek(), "peek() wrong");
94     CYG_TEST_CHECK(55==(cyg_count8)m0.peek_item(), "peek_item() wrong");
95
96     CYG_TEST_INFO("Testing get(), tryget()");
97     
98     i = (cyg_count8)m0.tryget();
99     CYG_TEST_CHECK( 55 == i, "Got wrong message" );
100     for(cyg_count8 j=1; j<u;j++) {
101         CYG_TEST_CHECK( j == (cyg_count8)m0.peek_item(), "peek_item()" );
102         CYG_TEST_CHECK( m0.peek() == u - j, "peek() wrong" );
103         i = (cyg_count8)m0.get();
104         CYG_TEST_CHECK( j == i, "Got wrong message" );
105     }
106     
107     CYG_TEST_CHECK( NULL == m0.peek_item(), "peek_item()" );
108     CYG_TEST_CHECK( 0 == m0.peek(), "peek()");
109     
110     // m0 now empty
111
112     CYG_TEST_CHECK(!m0.waiting_to_put(), "waiting_to_put()");
113     CYG_TEST_CHECK(!m0.waiting_to_get(), "waiting_to_get()");
114
115     CYG_TEST_INFO("Testing get(), blocking");
116     
117     CYG_TEST_CHECK(0==q++, "bad synchronization");
118     m1.PUT((void*)99);                  // wakes t1
119     i = (cyg_count8)m0.get();          // sent by t1
120     CYG_TEST_CHECK(3==i, "Recieved wrong message");
121     CYG_TEST_CHECK(2==q++, "bad synchronization");
122
123 #ifdef CYGFUN_KERNEL_THREADS_TIMER
124     CYG_TEST_CHECK(NULL==m0.get(
125         Cyg_Clock::real_time_clock->current_value() + 10),
126                    "unexpectedly found message");
127     CYG_TEST_CHECK(3==q++, "bad synchronization");
128     // Allow t1 to run as this get times out
129     // t1 must not be waiting...
130     CYG_TEST_CHECK(m0.waiting_to_get(), "waiting_to_get()");
131
132     m0.PUT((void*)7);                   // wake t1 from timed get
133 #ifdef CYGMTH_MBOX_PUT_CAN_WAIT
134     q=10;
135     while(m0.tryput((void*)6))          // fill m0's queue
136         ;
137     // m0 now contains ( 6 ... 6 )
138     CYG_TEST_CHECK(10==q++, "bad synchronization");
139     m1.put((void*)4);                   // wake t1
140     CYG_TEST_CHECK(!m0.put((void*)8, 2), "timed put() unexpectedly worked");
141     CYG_TEST_CHECK(12==q++, "bad synchronization");
142     // m0 still contains ( 6 ... 6 )
143     m0.put((void*)9);
144     CYG_TEST_CHECK(13==q++, "bad synchronization");
145 #endif
146 #endif
147     i=(cyg_count8)m2.get();
148     CYG_TEST_FAIL_FINISH("Not reached");
149 }
150
151 static void entry1( CYG_ADDRWORD data )
152 {
153     cyg_count8 i;
154
155     Cyg_Thread::self()->set_priority(5);
156     
157     i = (cyg_count8)m1.get();
158     CYG_TEST_CHECK(1==q++, "bad synchronization");
159     m0.PUT((void *)3);                  // wake t0
160
161 #ifdef CYGFUN_KERNEL_THREADS_TIMER
162     CYG_TEST_INFO("Testing timed functions");
163     CYG_TEST_CHECK(7==(cyg_count8)m0.get(
164         Cyg_Clock::real_time_clock->current_value() + 20), "timed get()");
165     CYG_TEST_CHECK(4==q++, "bad synchronization");
166 #ifdef CYGMTH_MBOX_PUT_CAN_WAIT
167     CYG_TEST_CHECK(4==(cyg_count8)m1.get());
168
169     CYG_TEST_CHECK(11==q++, "bad synchronization");
170     thread[0]->delay(20);    // allow t0 to reach put on m1
171     CYG_TEST_CHECK(14==q++, "bad synchronization");
172     CYG_TEST_CHECK(m0.waiting_to_put(), "waiting_to_put()");
173     do {
174         // after first get m0 contains ( 6 .. 6 9 )
175         i=(cyg_count8)m0.tryget();
176     } while(6==i);
177     CYG_TEST_CHECK(9==i,"put gone awry");
178 #endif
179 #endif
180     CYG_TEST_PASS_FINISH("Mbox 1 OK");
181 }
182
183 void mbox1_main( void )
184 {
185     CYG_TEST_INIT();
186
187     new_thread(entry0, 0);
188     new_thread(entry1, 1);
189
190     Cyg_Scheduler::start();
191
192     CYG_TEST_FAIL_FINISH("Not reached");
193 }
194
195 externC void
196 cyg_start( void )
197
198 #ifdef CYGSEM_HAL_STOP_CONSTRUCTORS_ON_FLAG
199     cyg_hal_invoke_constructors();
200 #endif
201     mbox1_main();
202 }
203
204 // EOF mbox1.cxx