diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-27 16:13:02 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-27 14:09:21 -0500 |
commit | 9788c9cadf42e4814b0ed0c491734292a13a0b2d (patch) | |
tree | 81ab789dac4750e64fedd45ce2acecacdc894152 | |
parent | 5735147e5ff5b389ef131effd367c64b45a4c2ad (diff) |
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 <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | bsd-user/syscall.c | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | 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 4f713f2e8f..3cff35765a 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); @@ -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 7b57323886..4b230ddfc9 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -57,7 +57,7 @@ #include <netinet/ip.h> #include <netinet/tcp.h> #include <qemu-common.h> -#ifdef HAVE_GPROF +#ifdef TARGET_GPROF #include <sys/gmon.h> #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); |