1 /* Copyright (C) 2003-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
29 #define GUARD_PATTERN 0xdeadbeafdeadbeaf
31 #define GUARD_PATTERN 0xdeadbeaf
36 unsigned long guard
[3];
39 static char stacks
[N
][2 * PTHREAD_STACK_MIN
];
40 static tst_context_t ctx
[N
][2];
41 static volatile int failures
;
49 /* Just to use the thread local descriptor. */
50 printf ("%ld: in %s now, on_stack = %p\n", n
, __FUNCTION__
, on_stack
);
53 if (ctx
[n
][1].uctx
.uc_link
!= &ctx
[n
][0].uctx
)
55 printf ("context[%ld][1] uc_link damaged, = %p\n", n
,
56 ctx
[n
][1].uctx
.uc_link
);
60 if ((ctx
[n
][0].guard
[0] != GUARD_PATTERN
)
61 || (ctx
[n
][0].guard
[1] != GUARD_PATTERN
)
62 || (ctx
[n
][0].guard
[2] != GUARD_PATTERN
))
64 printf ("%ld: %s context[0] overflow detected!\n", n
, __FUNCTION__
);
68 if ((ctx
[n
][1].guard
[0] != GUARD_PATTERN
)
69 || (ctx
[n
][1].guard
[1] != GUARD_PATTERN
)
70 || (ctx
[n
][1].guard
[2] != GUARD_PATTERN
))
72 printf ("%ld: %s context[1] overflow detected!\n", n
, __FUNCTION__
);
78 printf ("%ld out of range\n", n
);
82 if (on_stack
< stacks
[n
] || on_stack
>= stacks
[n
] + sizeof (stacks
[0]))
84 printf ("%ld: on_stack not on appropriate stack\n", n
);
93 int n
= (int) (long int) arg
;
95 ctx
[n
][0].guard
[0] = GUARD_PATTERN
;
96 ctx
[n
][0].guard
[1] = GUARD_PATTERN
;
97 ctx
[n
][0].guard
[2] = GUARD_PATTERN
;
99 ctx
[n
][1].guard
[0] = GUARD_PATTERN
;
100 ctx
[n
][1].guard
[1] = GUARD_PATTERN
;
101 ctx
[n
][1].guard
[2] = GUARD_PATTERN
;
103 if (getcontext (&ctx
[n
][1].uctx
) != 0)
105 printf ("%d: cannot get context: %m\n", n
);
109 printf ("%d: %s: before makecontext\n", n
, __FUNCTION__
);
111 ctx
[n
][1].uctx
.uc_stack
.ss_sp
= stacks
[n
];
112 ctx
[n
][1].uctx
.uc_stack
.ss_size
= sizeof (stacks
[n
]);
113 ctx
[n
][1].uctx
.uc_link
= &ctx
[n
][0].uctx
;
114 makecontext (&ctx
[n
][1].uctx
, (void (*) (void)) fct
, 1, (long int) n
);
116 printf ("%d: %s: before swapcontext\n", n
, __FUNCTION__
);
118 if (swapcontext (&ctx
[n
][0].uctx
, &ctx
[n
][1].uctx
) != 0)
121 printf ("%d: %s: swapcontext failed\n", n
, __FUNCTION__
);
124 printf ("%d: back in %s\n", n
, __FUNCTION__
);
130 static volatile int global
;
140 puts ("making contexts");
141 if (getcontext (&mctx
) != 0)
145 puts ("context handling not supported");
149 printf ("%s: getcontext: %m\n", __FUNCTION__
);
153 /* Play some tricks with this context. */
155 if (setcontext (&mctx
) != 0)
157 puts ("setcontext failed");
162 puts ("global not incremented twice");
169 if (pthread_attr_init (&at
) != 0)
171 puts ("attr_init failed");
175 if (pthread_attr_setstacksize (&at
, 1 * 1024 * 1024) != 0)
177 puts ("attr_setstacksize failed");
181 for (n
= 0; n
< N
; ++n
)
182 if (pthread_create (&th
[n
], &at
, tf
, (void *) (long int) n
) != 0)
184 puts ("create failed");
188 if (pthread_attr_destroy (&at
) != 0)
190 puts ("attr_destroy failed");
194 for (n
= 0; n
< N
; ++n
)
195 if (pthread_join (th
[n
], NULL
) != 0)
197 puts ("join failed");
204 #define TEST_FUNCTION do_test ()
205 #include "../test-skeleton.c"