]> git.ipfire.org Git - thirdparty/glibc.git/blob - stdlib/tst-makecontext.c
Include errno.h. Change main() to do_test(). Define TEST_FUNCTION. Include test...
[thirdparty/glibc.git] / stdlib / tst-makecontext.c
1 /* Copyright (C) 2006, 2007 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
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.
8
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.
13
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. */
18
19 #include <errno.h>
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <ucontext.h>
23
24 ucontext_t ucp;
25 char st1[8192];
26 __thread int thr;
27
28 void
29 cf (int i)
30 {
31 if (i != 78 || thr != 94)
32 {
33 printf ("i %d thr %d\n", i, thr);
34 exit (1);
35 }
36 exit (0);
37 }
38
39 int
40 do_test (void)
41 {
42 if (getcontext (&ucp) != 0)
43 {
44 if (errno == ENOSYS)
45 {
46 puts ("context handling not supported");
47 return 0;
48 }
49
50 puts ("getcontext failed");
51 return 1;
52 }
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)
59 {
60 puts ("setcontext failed");
61 return 1;
62 }
63 return 2;
64 }
65
66 #define TEST_FUNCTION do_test ()
67 #include "../test-skeleton.c"