OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [compat/] [posix/] [v2_0/] [tests/] [pthread2.c] - Blame information for rev 313

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//        pthread2.cxx
4
//
5
//        POSIX pthread test 2 - per-thread data
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):     nickg
44
// Contributors:  nickg
45
// Date:          2000-04-10
46
// Description:   Tests POSIX per-thread data.
47
//
48
//####DESCRIPTIONEND####
49
//==========================================================================
50
 
51
#include <cyg/infra/testcase.h>
52
#include <pkgconf/posix.h>
53
 
54
#ifndef CYGPKG_POSIX_PTHREAD
55
#define NA_MSG "POSIX threads not enabled"
56
#endif
57
 
58
#ifdef NA_MSG
59
void
60
cyg_start(void)
61
{
62
    CYG_TEST_INIT();
63
    CYG_TEST_NA(NA_MSG);
64
}
65
#else
66
 
67
#include <sys/types.h>
68
#include <pthread.h>
69
 
70
//--------------------------------------------------------------------------
71
// Thread stack.
72
 
73
char thread_stack[2][PTHREAD_STACK_MIN*2];
74
 
75
pthread_t thread[2];
76
 
77
pthread_key_t key;
78
 
79
//--------------------------------------------------------------------------
80
 
81
void key_destructor( void *val )
82
{
83
    int ret;
84
 
85
    CYG_TEST_INFO( "key destructor called" );
86
 
87
    if( (long)val == 0xAAAAAAAA )
88
    {
89
        ret = pthread_setspecific( key, NULL );
90
        CYG_TEST_CHECK( ret == 0, "pthread_setspecific() returned error");
91
    }
92
    else
93
    {
94
        ret = pthread_setspecific( key, (void *)0xAAAAAAAA );
95
        CYG_TEST_CHECK( ret == 0, "pthread_setspecific() returned error");
96
    }
97
}
98
 
99
//--------------------------------------------------------------------------
100
 
101
void *pthread_entry( void *arg)
102
{
103
    int ret;
104
    int retval = 1;
105
    void *val;
106
 
107
    CYG_TEST_INFO( "Thread running" );
108
 
109
    ret = pthread_setspecific( key, arg );
110
    CYG_TEST_CHECK( ret == 0, "pthread_setspecific() returned error");
111
 
112
    val = pthread_getspecific( key );
113
    CYG_TEST_CHECK( val == arg, "pthread_getspecific() did not return expected value");
114
    if( val != arg ) retval = 0;
115
 
116
    sched_yield();
117
 
118
    val = pthread_getspecific( key );
119
    CYG_TEST_CHECK( val == arg, "pthread_getspecific() did not return expected value");
120
    if( val != arg ) retval = 0;
121
 
122
    pthread_exit( (void *)retval );
123
}
124
 
125
//--------------------------------------------------------------------------
126
 
127
int main(int argc, char **argv)
128
{
129
    int i;
130
    int ret;
131
    void *retval[2];
132
 
133
    CYG_TEST_INIT();
134
 
135
    // allocate data key
136
    ret = pthread_key_create( &key, key_destructor );
137
    CYG_TEST_CHECK( ret == 0, "pthread_key_create() returned error");
138
 
139
    // Create test threads
140
    for( i = 0; i < 2; i++ )
141
    {
142
        pthread_attr_t attr;
143
        pthread_attr_init( &attr );
144
 
145
        pthread_attr_setstackaddr( &attr, (void *)&thread_stack[i][sizeof(thread_stack[i])] );
146
        pthread_attr_setstacksize( &attr, sizeof(thread_stack[i]) );
147
 
148
        ret = pthread_create( &thread[i],
149
                              &attr,
150
                              pthread_entry,
151
                              (void *)(0x12340000+i));
152
        CYG_TEST_CHECK( ret == 0, "pthread_create() returned error");
153
    }
154
 
155
    // Now join with threads
156
    for( i = 0; i < 2; i++ )
157
        pthread_join( thread[i], &retval[i] );
158
 
159
 
160
    ret = pthread_key_delete( key );
161
    CYG_TEST_CHECK( ret == 0, "pthread_key_delete() returned error");
162
 
163
    // check retvals
164
 
165
    for( i = 0; i < 2; i++ )
166
        if( !(long)retval[0] )
167
            CYG_TEST_FAIL_FINISH( "pthread2" );
168
 
169
    CYG_TEST_PASS_FINISH( "pthread2" );
170
 
171
}
172
 
173
#endif
174
 
175
//--------------------------------------------------------------------------
176
// end of pthread2.c

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.