Fix indentation in scoped_mmap.h

gdb/ChangeLog:

	* common/scoped_mmap.h (class scoped_mmap): Fix indentation.
This commit is contained in:
Simon Marchi 2018-07-24 14:14:17 -04:00
parent 29d17e4773
commit 4b17aefe75
2 changed files with 24 additions and 19 deletions

View File

@ -1,3 +1,7 @@
2018-07-24 Simon Marchi <simon.marchi@ericsson.com>
* common/scoped_mmap.h (class scoped_mmap): Fix indentation.
2018-07-24 Tom Tromey <tom@tromey.com>
* utils.c (malloc, realloc, free): Don't declare.

View File

@ -35,34 +35,35 @@ public:
scoped_mmap () noexcept : m_mem (MAP_FAILED), m_length (0) {}
scoped_mmap (void *addr, size_t length, int prot, int flags, int fd,
off_t offset) noexcept : m_length (length)
{
m_mem = mmap (addr, m_length, prot, flags, fd, offset);
}
{
m_mem = mmap (addr, m_length, prot, flags, fd, offset);
}
~scoped_mmap ()
{
if (m_mem != MAP_FAILED)
munmap (m_mem, m_length);
}
{
if (m_mem != MAP_FAILED)
munmap (m_mem, m_length);
}
DISABLE_COPY_AND_ASSIGN (scoped_mmap);
void *release () noexcept
{
void *mem = m_mem;
m_mem = MAP_FAILED;
m_length = 0;
return mem;
}
{
void *mem = m_mem;
m_mem = MAP_FAILED;
m_length = 0;
return mem;
}
void reset (void *addr, size_t length, int prot, int flags, int fd,
off_t offset) noexcept
{
if (m_mem != MAP_FAILED)
munmap (m_mem, m_length);
{
if (m_mem != MAP_FAILED)
munmap (m_mem, m_length);
m_length = length;
m_mem = mmap (addr, m_length, prot, flags, fd, offset);
}
m_length = length;
m_mem = mmap (addr, m_length, prot, flags, fd, offset);
}
size_t size () const noexcept { return m_length; }
void *get () const noexcept { return m_mem; }