C++ 특정 포인터 주소에 대해 메모리 할당여부 파악하는 방법이 있나요?

richjaff의 이미지

예를 들어서,

char* ptr = 메모리주소값;

일때,

위의 메모리 주소값에 대해 할당이 이루어진 메모리인지, 사용가능한 메모리인지
이를 파악하는 방법이 C/C++에 존재하나요?

너무 궁금했던 사항이라...

혹시 이와관련해서 아시는 분 계시면, 답변좀 부탁드립니다.

메모리 관리 모듈이나, 누수를 체크해주는 디버깅 툴, 또는 메모리 관리 툴에
메모리 주소를 조회해서 할당된 메모리인지 아닌지 파악하는 방법이 있을 것 같기도 한데,
이쪽은 잘 몰라서 어느 쪽을 알아봐야할지 막연하네요.

leboum의 이미지

malloc 할때 그 주소와 사이즈, 소스 라인 정보정도를 가지고 있고,
free 할때 그 주소를 체크합니다.
free 할때 그 주소가 free 되었다는것을 체크해주고,
(나중에 또 free된 주소가 또 free되는거 방지, free 안된 녀석 찾기)

대략, 이 처리를 파일로 저장...-_-;;
나중에 저 저장 파일을 까서 체크하는거죠..

프로젝트 중에 메모리 관련 문제가 발생했는데,,
어떤 한분이 저렇게 처리하는 루틴만드셔서 다 잡아드시더군요.

결론은 디버깅 메세지로 찾는 방법이네요..

아니면,,,,,
밑에 단에서 알려달라고 메일을 쓰는 수뿐이..;;ㅎㅎ

kaeri17의 이미지

OS차원에서 찾아야 할겁니다. 원래 OS에서 Vitrual Memory관리할때 메모리 주소마다 다 Read Write Execute bit설정하고 하기 때문에... OS환경마다 다르긴 하겠죠..

simpid의 이미지

malloc 는 런타임 라이브러리 부분입니다.

OS와는 관련성이 적습니다.
(최초 한번 큰덩어리 할당만 OS 와 관련이 있고.. 큰덩어리를 프로그램의 요청에 따라 할당해 주는 부분은 런타임 라이브러리 구현입니다)

thyoo의 이미지

MFC에서 쓰는 방법입니다.

http://wyw.dcweb.cn/leakage.htm

new된 주소와 길이를 list나 map 같은 데에 기억해 둡니다.

___________________________________
Less is More (Robert Browning)

___________________________________
Less is More (Robert Browning)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.