]> git.proxmox.com Git - qemu.git/blobdiff - linux-user/mmap.c
Merge remote-tracking branch 'stefanha/block' into staging
[qemu.git] / linux-user / mmap.c
index de2219768dc66fa7e8d80b7a2035a32cad70690a..a249f0ceb6ac190475858fc522edfb92222cacb0 100644 (file)
@@ -33,7 +33,6 @@
 
 //#define DEBUG_MMAP
 
-#if defined(CONFIG_USE_NPTL)
 static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER;
 static __thread int mmap_lock_count;
 
@@ -66,16 +65,6 @@ void mmap_fork_end(int child)
     else
         pthread_mutex_unlock(&mmap_mutex);
 }
-#else
-/* We aren't threadsafe to start with, so no need to worry about locking.  */
-void mmap_lock(void)
-{
-}
-
-void mmap_unlock(void)
-{
-}
-#endif
 
 /* NOTE: all the constants are the HOST ones, but addresses are target. */
 int target_mprotect(abi_ulong start, abi_ulong len, int prot)