blob: e506b172e8be5670571b864dce9a5b0e2271cff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//===-- tsan_placement_new.h ------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file is a part of ThreadSanitizer (TSan), a race detector.
//
// The file provides 'placement new'
// Do not include it into header files, only into source files.
//===----------------------------------------------------------------------===//
#ifndef TSAN_PLACEMENT_NEW_H
#define TSAN_PLACEMENT_NEW_H
#include "tsan_defs.h"
inline void *operator new(__sanitizer::uptr sz, void *p) {
return p;
}
#endif // TSAN_PLACEMENT_NEW_H
|