diff options
Diffstat (limited to 'bsd-user')
-rw-r--r-- | bsd-user/mmap.c | 2 | ||||
-rw-r--r-- | bsd-user/qemu.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bsd-user/mmap.c b/bsd-user/mmap.c index 26f981ab2..ff207cd55 100644 --- a/bsd-user/mmap.c +++ b/bsd-user/mmap.c @@ -30,7 +30,7 @@ //#define DEBUG_MMAP -#if defined(USE_NPTL) +#if defined(CONFIG_USE_NPTL) pthread_mutex_t mmap_mutex; static int __thread mmap_lock_count; diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h index d411bbbf4..822a21445 100644 --- a/bsd-user/qemu.h +++ b/bsd-user/qemu.h @@ -24,7 +24,7 @@ enum BSDType { #include "target_signal.h" #include "gdbstub.h" -#if defined(USE_NPTL) +#if defined(CONFIG_USE_NPTL) #define THREAD __thread #else #define THREAD @@ -188,7 +188,7 @@ void mmap_lock(void); void mmap_unlock(void); void cpu_list_lock(void); void cpu_list_unlock(void); -#if defined(USE_NPTL) +#if defined(CONFIG_USE_NPTL) void mmap_fork_start(void); void mmap_fork_end(int child); #endif @@ -382,7 +382,7 @@ static inline void *lock_user_string(abi_ulong guest_addr) #define unlock_user_struct(host_ptr, guest_addr, copy) \ unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0) -#if defined(USE_NPTL) +#if defined(CONFIG_USE_NPTL) #include <pthread.h> #endif |