]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/kernel/v2_0/tests/cnt_sem1.cxx
Initial revision
[karo-tx-redboot.git] / packages / kernel / v2_0 / tests / cnt_sem1.cxx
1 //==========================================================================
2 //
3 //        cnt_sem1.cxx
4 //
5 //        Counting semaphore 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 //
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-24
46 // Description:   Tests basic counting semaphore functionality.
47 //####DESCRIPTIONEND####
48
49 #include <pkgconf/kernel.h>
50
51 #include <cyg/kernel/thread.hxx>       // Cyg_Thread
52 #include <cyg/kernel/thread.inl>
53 #include <cyg/kernel/sched.hxx>        // Cyg_Scheduler::start()
54
55 #include <cyg/kernel/sema.hxx>
56
57 #include <cyg/infra/testcase.h>
58
59 #include <cyg/kernel/sched.inl>
60
61
62 #define NTHREADS 2
63 #include "testaux.hxx"
64
65 static Cyg_Counting_Semaphore s0(0), s1(2), s2;
66
67 static volatile cyg_ucount8 q = 0;
68
69 static void entry0( CYG_ADDRWORD data )
70 {
71     s0.wait();
72     CHECK( 1 == q++ );
73     s1.post();
74     s0.wait();
75     CHECK( 3 == q++ );
76     CHECK( 0 == s0.peek() );
77     CHECK( ! s0.trywait() );
78     s0.post();
79     CHECK( 4 == q++ );
80     CHECK( 1 == s0.peek() );
81     s0.post();
82     CHECK( 2 == s0.peek() );
83     s1.post();
84     CHECK( 0 == s2.peek() );
85     s2.wait();
86     CHECK( 6 == q++ );
87     CYG_TEST_PASS_FINISH("Counting Semaphore 1 OK");
88 }
89
90 static void entry1( CYG_ADDRWORD data )
91 {
92     CHECK( 2 == s1.peek() );
93     s1.wait();
94     CHECK( 1 == s1.peek() );
95     s1.wait();
96     CHECK( 0 == q++ );
97     CHECK( 0 == s0.peek() );
98     s0.post();
99     s1.wait();
100     CHECK( 2 == q++ );
101     s0.post();
102     s1.wait();
103     CHECK( 5 == q++ );
104     CHECK( 2 == s0.peek() );
105     CHECK( s0.trywait() );
106     CHECK( 1 == s0.peek() );
107     CHECK( s0.trywait() );
108     CHECK( 0 == s0.peek() );
109     s2.post();
110     s0.wait();
111     CYG_TEST_FAIL_FINISH("Not reached");
112 }
113
114 void cnt_sem1_main( void )
115 {
116     CYG_TEST_INIT();
117
118     new_thread(entry0, 0);
119     new_thread(entry1, 1);
120
121     Cyg_Scheduler::start();
122
123     CYG_TEST_FAIL_FINISH("Not reached");
124 }
125
126 externC void
127 cyg_start( void )
128
129 #ifdef CYGSEM_HAL_STOP_CONSTRUCTORS_ON_FLAG
130     cyg_hal_invoke_constructors();
131 #endif
132     cnt_sem1_main();
133 }
134
135 // EOF cnt_sem1.cxx