From: Ian Lance Taylor Date: Tue, 13 Jan 2009 18:24:06 +0000 (-0800) Subject: Add USED declarations for SysUnused parameters. X-Git-Tag: weekly.2009-11-06~2387 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1a0bde24ae765023278ce0b22328e871dbd1913c;p=gostls13.git Add USED declarations for SysUnused parameters. R=rsc DELTA=2 (2 added, 0 deleted, 0 changed) OCL=22640 CL=22642 --- diff --git a/src/runtime/malloc.c b/src/runtime/malloc.c index 52ae3b04c6..6a494eeafb 100644 --- a/src/runtime/malloc.c +++ b/src/runtime/malloc.c @@ -170,6 +170,8 @@ SysAlloc(uintptr n) void SysUnused(void *v, uintptr n) { + USED(v); + USED(n); // TODO(rsc): call madvise MADV_DONTNEED }