次のプログラムがあるとしましょう
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int * i;
if ((i = malloc(sizeof(int) * 100)) == NULL) {
printf("EROOR: unable to allocate memory \n");
return -1;
}
/* memory is allocated successfully */
/* memory is not free'ed but program terminates */
// free(i);
return 0;
}
上記のプログラムはmalloc
、メモリを割り当てるために呼び出しますが、割り当てを解除するために呼び出すことはありませんfree
。そして、プログラムはメモリの割り当てを解除せずに終了します。
Valgrindはメモリリークを明確に検出します。
<snap>
==14209== HEAP SUMMARY:
==14209== in use at exit: 400 bytes in 1 blocks
==14209== total heap usage: 1 allocs, 0 frees, 400 bytes allocated
==14209==
<sanp>
==14209== LEAK SUMMARY:
==14209== definitely lost: 400 bytes in 1 blocks
==14209== indirectly lost: 0 bytes in 0 blocks
==14209== possibly lost: 0 bytes in 0 blocks
==14209== still reachable: 0 bytes in 0 blocks
==14209== suppressed: 0 bytes in 0 blocks
==14209==
==14209== For counts of detected and suppressed errors, rerun with: -v
==14209== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
質問:
プログラムが終了すると、割り当てられたがfree
'dではないメモリはどうなりますか?
更新:このコードが別のオペレーティングシステム(Windows、Linux、Solarix、MacOSなど)で実行されていることを考慮してください。終了時のこのコードの動作に違いはありますか?