| //===--- subzero/src/LinuxMallocProfiling.h - malloc/new tracing ---------===// |
| // The Subzero Code Generator |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| /// \brief malloc/new/...caller tracing. |
| //===----------------------------------------------------------------------===// |
| #ifndef SUBZERO_SRC_LINUXMALLOCPROFILING_H |
| #define SUBZERO_SRC_LINUXMALLOCPROFILING_H |
| class LinuxMallocProfiling { |
| LinuxMallocProfiling(const LinuxMallocProfiling &) = delete; |
| LinuxMallocProfiling &operator=(const LinuxMallocProfiling &) = delete; |
| #ifdef ALLOW_LINUX_MALLOC_PROFILE |
| #endif // ALLOW_LINUX_MALLOC_PROFILE |
| LinuxMallocProfiling(size_t NumThreads, Ostream *Ls); |
| } // end of namespace Ice |
| #endif // SUBZERO_SRC_LINUXMALLOCPROFILING_H |