mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
Add USED declarations for SysUnused parameters.
R=rsc DELTA=2 (2 added, 0 deleted, 0 changed) OCL=22640 CL=22642
This commit is contained in:
parent
9b8da82d72
commit
1a0bde24ae
1 changed files with 2 additions and 0 deletions
|
@ -170,6 +170,8 @@ SysAlloc(uintptr n)
|
|||
void
|
||||
SysUnused(void *v, uintptr n)
|
||||
{
|
||||
USED(v);
|
||||
USED(n);
|
||||
// TODO(rsc): call madvise MADV_DONTNEED
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue