mirror of git://sourceware.org/git/glibc.git
Enlarge st1 and st2 arrays.
This commit is contained in:
parent
b86d92c02b
commit
e710e49f4a
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue