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 9 : void NaClFileMappingForValgrind(size_t vma, size_t size, size_t file_offset) {
10 : UNREFERENCED_PARAMETER(vma);
11 : UNREFERENCED_PARAMETER(size);
12 : UNREFERENCED_PARAMETER(file_offset);
13 9 : }
14 :
15 12 : void NaClFileNameForValgrind(const char* name) {
16 : UNREFERENCED_PARAMETER(name);
17 12 : }
18 :
19 11 : void NaClSandboxMemoryStartForValgrind(uintptr_t mem_start) {
20 : UNREFERENCED_PARAMETER(mem_start);
21 11 : }
|