]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
DARWIN sync: UInt -> Int.
authorNicholas Nethercote <njn@valgrind.org>
Wed, 20 May 2009 03:20:05 +0000 (03:20 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Wed, 20 May 2009 03:20:05 +0000 (03:20 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10006

coregrind/m_aspacemgr/aspacemgr-common.c
coregrind/pub_core_aspacemgr.h

index f6f04888700340ec8bcbaf5d9819b9aad7b83734..62c21dab61904953f57605e2d1953fed1f1cffb4 100644 (file)
@@ -147,7 +147,7 @@ UInt ML_(am_sprintf) ( HChar* buf, const HChar *format, ... )
 
 /* Note: this is VG_, not ML_. */
 SysRes VG_(am_do_mmap_NO_NOTIFY)( Addr start, SizeT length, UInt prot, 
-                                  UInt flags, UInt fd, Off64T offset)
+                                  UInt flags, Int fd, Off64T offset)
 {
    SysRes res;
    aspacem_assert(VG_IS_PAGE_ALIGNED(offset));
index 066d1cfc641100cda5a8d6fd37eec82b22656dbf..c47120fc71b572ec6844e4e13da50c337a70e883 100644 (file)
@@ -190,7 +190,7 @@ extern Bool VG_(am_notify_munmap)( Addr start, SizeT len );
    USE IT UNLESS YOU UNDERSTAND the request-notify model used by
    aspacem.  In short, DO NOT USE THIS FUNCTION. */
 extern SysRes VG_(am_do_mmap_NO_NOTIFY)
-   ( Addr start, SizeT length, UInt prot, UInt flags, UInt fd, Off64T offset);
+   ( Addr start, SizeT length, UInt prot, UInt flags, Int fd, Off64T offset);
 
 
 //--------------------------------------------------------------