llvm/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp

//===-- sanitizer_procmaps_linux.cpp --------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// Information about the process mappings (Linux-specific parts).
//===----------------------------------------------------------------------===//

#include "sanitizer_platform.h"
#if SANITIZER_LINUX
#include "sanitizer_common.h"
#include "sanitizer_procmaps.h"

namespace __sanitizer {

void ReadProcMaps(ProcSelfMapsBuff *proc_maps) {}

static bool IsOneOf(char c, char c1, char c2) {}

bool MemoryMappingLayout::Next(MemoryMappedSegment *segment) {}

}  // namespace __sanitizer

#endif  // SANITIZER_LINUX