1 /* Test that gettext() in multithreaded applications works correctly if
2 different threads operate in different locales with the same encoding.
3 Copyright (C) 2005 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Bruno Haible <bruno@clisp.org>, 2005.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
29 /* Set to 1 if the program is not behaving correctly. */
32 /* Denotes which thread should run next. */
34 /* Lock and wait queue used to switch between the threads. */
36 pthread_cond_t waitqueue
;
38 /* Waits until the flipflop has a given value.
39 Before the call, the lock is unlocked. After the call, it is locked. */
43 if (pthread_mutex_lock (&lock
))
45 while (flipflop
!= value
)
46 if (pthread_cond_wait (&waitqueue
, &lock
))
50 /* Sets the flipflop to a given value.
51 Before the call, the lock is locked. After the call, it is unlocked. */
56 if (pthread_cond_signal (&waitqueue
))
58 if (pthread_mutex_unlock (&lock
))
63 thread1_execution (void *arg
)
68 uselocale (newlocale (LC_ALL_MASK
, "de_DE.ISO-8859-1", NULL
));
72 s
= gettext ("beauty");
74 if (strcmp (s
, "Sch\366nheit"))
76 fprintf (stderr
, "thread 1 call 1 returned: %s\n", s
);
82 s
= gettext ("beauty");
84 if (strcmp (s
, "Sch\366nheit"))
86 fprintf (stderr
, "thread 1 call 2 returned: %s\n", s
);
95 thread2_execution (void *arg
)
100 uselocale (newlocale (LC_ALL_MASK
, "fr_FR.ISO-8859-1", NULL
));
104 s
= gettext ("beauty");
106 if (strcmp (s
, "beaut\351"))
108 fprintf (stderr
, "thread 2 call 1 returned: %s\n", s
);
114 s
= gettext ("beauty");
116 if (strcmp (s
, "beaut\351"))
118 fprintf (stderr
, "thread 2 call 2 returned: %s\n", s
);
132 unsetenv ("LANGUAGE");
133 unsetenv ("OUTPUT_CHARSET");
134 textdomain ("multithread");
135 bindtextdomain ("multithread", OBJPFX
"domaindir");
139 if (pthread_mutex_init (&lock
, NULL
))
141 if (pthread_cond_init (&waitqueue
, NULL
))
143 if (pthread_create (&thread1
, NULL
, &thread1_execution
, NULL
))
145 if (pthread_create (&thread2
, NULL
, &thread2_execution
, NULL
))
147 if (pthread_join (thread2
, NULL
))