'Debug'에 해당되는 글 4건

  1. 2013.01.04 [C#] 디버그 메세지 출력하기
  2. 2012.09.21 debug 매크로
  3. 2011.11.11 DEBUG macro
  4. 2008.09.01 Nemiver - gnome 환경에서의 gdb 디버거

[C#] 디버그 메세지 출력하기

System.Diagnostics.Debug.WriteLine("메시지");

Console.WriteLine( String msg );




'develop > C#' 카테고리의 다른 글

윈도우즈 폼 크기 조절 불가  (0) 2013.01.18
Open Source C# site  (0) 2013.01.05
[C#] SharpDevelop - open source C# IDE 툴  (0) 2013.01.05

debug 매크로

#define DEBUG(fmt, arg...)          fprintf(stderr, " [%s(), %s:%u] " fmt, __FUNCTION__, __FILE__, __LINE__, ## arg)



DEBUG macro

#ifdef DEBUG
    #define DEBUGF(fmt, args...)        printk(fmt, ##args)
#else
    #define DEBUG(fmt, args...)
#endif

'develop' 카테고리의 다른 글

ttf(truetype) 폰트로 bdf 폰트 만들기  (0) 2011.12.08
linux kernel thread  (0) 2011.11.16
[pastebin.com] 간단한 소스코드 공유 사이트  (0) 2011.10.12
bitmap header info  (0) 2011.10.11
[ffmpeg] ffmpeg and SDL tutorial site  (0) 2011.07.05

Nemiver - gnome 환경에서의 gdb 디버거

사용자 삽입 이미지

http://www.gnome.org/projects/nemiver/

gdb 기반의 그놈 환경 디버거
간단하게 구성되어 있다.
prev 1 next