From 9788c9cadf42e4814b0ed0c491734292a13a0b2d Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Mon, 27 Jul 2009 16:13:02 +0200 Subject: 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 --- linux-user/syscall.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'linux-user') 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); -- cgit v1.1