* gdb.base/break.c (main): Call malloc.

This commit is contained in:
Nathan Sidwell 2006-11-28 16:04:00 +00:00
parent fcfcc2b53d
commit f556d5e59d
2 changed files with 7 additions and 1 deletions

View File

@ -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.

View File

@ -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;