1 : /* Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 : * Use of this source code is governed by a BSD-style license that can be
3 : * found in the LICENSE file.
4 : */
5 :
6 : #include "native_client/src/include/nacl_compiler_annotations.h"
7 : #include "native_client/src/trusted/service_runtime/nacl_valgrind_hooks.h"
8 :
9 780 : void NaClFileMappingForValgrind(size_t vma, size_t size, size_t file_offset) {
10 1560 : UNREFERENCED_PARAMETER(vma);
11 1560 : UNREFERENCED_PARAMETER(size);
12 1560 : UNREFERENCED_PARAMETER(file_offset);
13 780 : }
14 :
15 268 : void NaClFileNameForValgrind(const char* name) {
16 536 : UNREFERENCED_PARAMETER(name);
17 268 : }
18 :
19 267 : void NaClSandboxMemoryStartForValgrind(uintptr_t mem_start) {
20 534 : UNREFERENCED_PARAMETER(mem_start);
21 267 : }
|