OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.base/] [break.c] - Diff between revs 107 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 107 Rev 1765
#ifdef vxworks
#ifdef vxworks
 
 
#  include <stdio.h>
#  include <stdio.h>
 
 
/* VxWorks does not supply atoi.  */
/* VxWorks does not supply atoi.  */
static int
static int
atoi (z)
atoi (z)
     char *z;
     char *z;
{
{
  int i = 0;
  int i = 0;
 
 
  while (*z >= '0' && *z <= '9')
  while (*z >= '0' && *z <= '9')
    i = i * 10 + (*z++ - '0');
    i = i * 10 + (*z++ - '0');
  return i;
  return i;
}
}
 
 
/* I don't know of any way to pass an array to VxWorks.  This function
/* I don't know of any way to pass an array to VxWorks.  This function
   can be called directly from gdb.  */
   can be called directly from gdb.  */
 
 
vxmain (arg)
vxmain (arg)
char *arg;
char *arg;
{
{
  char *argv[2];
  char *argv[2];
 
 
  argv[0] = "";
  argv[0] = "";
  argv[1] = arg;
  argv[1] = arg;
  main (2, argv, (char **) 0);
  main (2, argv, (char **) 0);
}
}
 
 
#else /* ! vxworks */
#else /* ! vxworks */
#  include <stdio.h>
#  include <stdio.h>
#  include <stdlib.h>
#  include <stdlib.h>
#endif /* ! vxworks */
#endif /* ! vxworks */
 
 
/*
/*
 * The following functions do nothing useful.  They are included simply
 * The following functions do nothing useful.  They are included simply
 * as places to try setting breakpoints at.  They are explicitly
 * as places to try setting breakpoints at.  They are explicitly
 * "one-line functions" to verify that this case works (some versions
 * "one-line functions" to verify that this case works (some versions
 * of gcc have or have had problems with this).
 * of gcc have or have had problems with this).
 */
 */
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int marker1 (void) { return (0); }
int marker1 (void) { return (0); }
int marker2 (int a) { return (1); }
int marker2 (int a) { return (1); }
void marker3 (char *a, char *b) {}
void marker3 (char *a, char *b) {}
void marker4 (long d) {}
void marker4 (long d) {}
#else
#else
int marker1 () { return (0); }
int marker1 () { return (0); }
int marker2 (a) int a; { return (1); }
int marker2 (a) int a; { return (1); }
void marker3 (a, b) char *a, *b; {}
void marker3 (a, b) char *a, *b; {}
void marker4 (d) long d; {}
void marker4 (d) long d; {}
#endif
#endif
 
 
/*
/*
 *      This simple classical example of recursion is useful for
 *      This simple classical example of recursion is useful for
 *      testing stack backtraces and such.
 *      testing stack backtraces and such.
 */
 */
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int factorial(int);
int factorial(int);
 
 
int
int
main (int argc, char **argv, char **envp)
main (int argc, char **argv, char **envp)
#else
#else
int
int
main (argc, argv, envp)
main (argc, argv, envp)
int argc;
int argc;
char *argv[], **envp;
char *argv[], **envp;
#endif
#endif
{
{
#ifdef usestubs
#ifdef usestubs
    set_debug_traps();
    set_debug_traps();
    breakpoint();
    breakpoint();
#endif
#endif
    if (argc == 12345) {  /* an unlikely value < 2^16, in case uninited */
    if (argc == 12345) {  /* an unlikely value < 2^16, in case uninited */
        fprintf (stderr, "usage:  factorial <number>\n");
        fprintf (stderr, "usage:  factorial <number>\n");
        return 1;
        return 1;
    }
    }
    printf ("%d\n", factorial (atoi ("6")));
    printf ("%d\n", factorial (atoi ("6")));
 
 
    marker1 ();
    marker1 ();
    marker2 (43);
    marker2 (43);
    marker3 ("stack", "trace");
    marker3 ("stack", "trace");
    marker4 (177601976L);
    marker4 (177601976L);
    argc = (argc == 12345); /* This is silly, but we can step off of it */
    argc = (argc == 12345); /* This is silly, but we can step off of it */
    return argc;
    return argc;
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int factorial (int value)
int factorial (int value)
#else
#else
int factorial (value)
int factorial (value)
int value;
int value;
#endif
#endif
{
{
    if (value > 1) {
    if (value > 1) {
        value *= factorial (value - 1);
        value *= factorial (value - 1);
    }
    }
    return (value);
    return (value);
}
}
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.