* stdlib/mbtowc.c (__no_r_state): Remove.
[glibc.git] / stdlib / tst-makecontext.c
blob1451efa56e2056e0833207746119cc3d7fc7eea0
1 /* Copyright (C) 2006, 2007 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <errno.h>
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <ucontext.h>
24 ucontext_t ucp;
25 char st1[8192];
26 __thread int thr;
28 void
29 cf (int i)
31 if (i != 78 || thr != 94)
33 printf ("i %d thr %d\n", i, thr);
34 exit (1);
36 exit (0);
39 int
40 do_test (void)
42 if (getcontext (&ucp) != 0)
44 if (errno == ENOSYS)
46 puts ("context handling not supported");
47 return 0;
50 puts ("getcontext failed");
51 return 1;
53 thr = 94;
54 ucp.uc_link = NULL;
55 ucp.uc_stack.ss_sp = st1;
56 ucp.uc_stack.ss_size = sizeof st1;
57 makecontext (&ucp, (void (*) (void)) cf, 1, 78);
58 if (setcontext (&ucp) != 0)
60 puts ("setcontext failed");
61 return 1;
63 return 2;
66 #define TEST_FUNCTION do_test ()
67 #include "../test-skeleton.c"