From c28a4be6035ac050446897c0e0b5d0de591a58ae Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Mon, 27 Jul 2009 16:13:02 +0200 Subject: [PATCH] rename HAVE_GPROF to TARGET_GPROF Use was not consistent, in Makefile was TARGET_GPROF and in *h HAVE_GPROF Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- bsd-user/syscall.c | 6 +++--- configure | 2 +- linux-user/syscall.c | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bsd-user/syscall.c b/bsd-user/syscall.c index 4f713f2..3cff357 100644 --- a/bsd-user/syscall.c +++ b/bsd-user/syscall.c @@ -66,7 +66,7 @@ abi_long do_freebsd_syscall(void *cpu_env, int num, abi_long arg1, switch(num) { case TARGET_FREEBSD_NR_exit: -#ifdef HAVE_GPROF +#ifdef TARGET_GPROF _mcleanup(); #endif gdb_exit(cpu_env, arg1); @@ -138,7 +138,7 @@ abi_long do_netbsd_syscall(void *cpu_env, int num, abi_long arg1, switch(num) { case TARGET_NETBSD_NR_exit: -#ifdef HAVE_GPROF +#ifdef TARGET_GPROF _mcleanup(); #endif gdb_exit(cpu_env, arg1); @@ -210,7 +210,7 @@ abi_long do_openbsd_syscall(void *cpu_env, int num, abi_long arg1, switch(num) { case TARGET_OPENBSD_NR_exit: -#ifdef HAVE_GPROF +#ifdef TARGET_GPROF _mcleanup(); #endif gdb_exit(cpu_env, arg1); diff --git a/configure b/configure index 61f4c78..ac8273e 100755 --- a/configure +++ b/configure @@ -1583,7 +1583,7 @@ if test -n "$sparc_cpu"; then fi if test "$gprof" = "yes" ; then echo "TARGET_GPROF=yes" >> $config_host_mak - echo "#define HAVE_GPROF 1" >> $config_host_h + echo "#define TARGET_GPROF 1" >> $config_host_h fi if test "$static" = "yes" ; then echo "CONFIG_STATIC=y" >> $config_host_mak diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 7b57323..4b230dd 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -57,7 +57,7 @@ #include #include #include -#ifdef HAVE_GPROF +#ifdef TARGET_GPROF #include #endif @@ -4162,7 +4162,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, pthread_exit(NULL); } #endif -#ifdef HAVE_GPROF +#ifdef TARGET_GPROF _mcleanup(); #endif gdb_exit(cpu_env, arg1); @@ -5676,7 +5676,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, #ifdef __NR_exit_group /* new thread calls */ case TARGET_NR_exit_group: -#ifdef HAVE_GPROF +#ifdef TARGET_GPROF _mcleanup(); #endif gdb_exit(cpu_env, arg1); -- 2.7.4