• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン65c9dfdcb9aacf837e495c55e4db53d2fb176c68 (tree)
日時2016-04-17 19:24:47
作者Yoshinori Sato <ysato@user...>
コミッターYoshinori Sato

ログメッセージ

malloc_simple: Add debug print.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

変更サマリ

差分

--- a/common/malloc_simple.c
+++ b/common/malloc_simple.c
@@ -38,11 +38,14 @@ void *memalign_simple(size_t align, size_t bytes)
3838 void *ptr;
3939
4040 addr = ALIGN(gd->malloc_base + gd->malloc_ptr, align);
41+ debug("%s: size=%zx, addr=%lx, limit=%lx: ", __func__, bytes, addr,
42+ gd->malloc_limit);
4143 new_ptr = addr + bytes - gd->malloc_base;
4244 if (new_ptr > gd->malloc_limit)
4345 return NULL;
4446 ptr = map_sysmem(addr, bytes);
4547 gd->malloc_ptr = ALIGN(new_ptr, sizeof(new_ptr));
48+ debug("%lx\n", (ulong)ptr);
4649
4750 return ptr;
4851 }