1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

Enlarge st1 and st2 arrays.

This commit is contained in:
Ulrich Drepper
2004-12-17 04:05:22 +00:00
parent b86d92c02b
commit e710e49f4a

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2001,02 Free Software Foundation, Inc.
/* Copyright (C) 2001,02, 2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -27,7 +27,7 @@ static ucontext_t ctx[3];
static int was_in_f1;
static int was_in_f2;
static char st2[8192];
static char st2[32768];
static void
f1 (long a0, long a1, long a2, long a3)
@ -126,7 +126,7 @@ volatile int global;
int
main (void)
{
char st1[8192];
char st1[32768];
puts ("making contexts");
if (getcontext (&ctx[1]) != 0)