mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
* gdb.base/break.c (main): Call malloc.
This commit is contained in:
parent
fcfcc2b53d
commit
f556d5e59d
@ -1,4 +1,6 @@
|
||||
2006-11-28 Nathan Sidwell <nathan@codesourcery.com>
|
||||
2006-11-27 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* gdb.base/break.c (main): Call malloc.
|
||||
|
||||
* gdb.threads/linux-dp.exp: Read thread table before and after
|
||||
creating each philosopher and verify it.
|
||||
|
@ -87,6 +87,10 @@ char *argv[], **envp;
|
||||
set_debug_traps(); /* set breakpoint 5 here */
|
||||
breakpoint();
|
||||
#endif
|
||||
/* We're used by a test that requires malloc, so make sure it is
|
||||
in the executable. */
|
||||
(void)malloc (1);
|
||||
|
||||
if (argc == 12345) { /* an unlikely value < 2^16, in case uninited */ /* set breakpoint 6 here */
|
||||
fprintf (stderr, "usage: factorial <number>\n");
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user