<linux/module.h>에서.
글쓴이: moonhyunjin / 작성시간: 화, 2003/04/29 - 5:02오전
<linux/module.h>에 보면 아래와 같은 매크로가 있습니다.
#ifdef CONFIG_MODULES #define SET_MODULE_OWNER(some_struct) do { (some_struct)->owner = THIS_MODULE } while (0) #else #define SET_MODULE_OWNER(some_struct) do { } while (0) #endif
제가 보기에는 그냥
#ifdef CONFIG_MODULES #define SET_MODULE_OWNER(some_struct) (some_struct)->owner = THIS_MODULE #else #define SET_MODULE_OWNER(some_struct) #endif
이렇게만 해줘도 괜찮을거 같은데... 굳이 do while문을 쓰는 이유가 있는건가요?
Forums:
소스: http://www.kernelnewbies.org/faq/
소스: http://www.kernelnewbies.org/faq/
Why do a lot of #defines in the kernel use do { ... } while(0)?
There are a couple of reasons:
* (from Dave Miller) Empty statements give a warning from the compiler so this is why you see #define FOO do { } while(0).
* (from Dave Miller) It gives you a basic block in which to declare local variables.
* (from Ben Collins) It allows you to use more complex macros in conditional code. Imagine a macro of several lines of code like:
#define FOO(x) \
printf("arg is %s\n", x); \
do_something_useful(x);
Now imagine using it like:
if (blah == 2)
FOO(blah);
This interprets to:
if (blah == 2)
printf("arg is %s\n", blah);
do_something_useful(blah);;
As you can see, the if then only encompasses the printf(), and the do_something_useful() call is unconditional (not within the scope of the if), like you wanted it. So, by using a block like do{...}while(0), you would get this:
if (blah == 2)
do {
printf("arg is %s\n", blah);
do_something_useful(blah);
} while (0);
Which is exactly what you want.
* (from Per Persson) As both Miller and Collins point out, you want a block statement so you can have several lines of code and declare local variables. But then the natural thing would be to just use for example:
#define exch(x,y) { int tmp; tmp=x; x=y; y=tmp; }
However that wouldn't work in some cases. The following code is meant to be an if-statement with two branches:
if(x>y)
exch(x,y); // Branch 1
else
do_something(); // Branch 2
But it would be interpreted as an if-statement with only one branch:
if(x>y) { // Single-branch if-statement!!!
int tmp; // The one and only branch consists
tmp = x; // of the block.
x = y;
y = tmp;
}
; // empty statement
else // ERROR!!! "parse error before else"
do_something();
The problem is the semi-colon (;) coming directly after the block.
The solution for this is to sandwich the block between do and while(0). Then we have a single statement with the capabilities of a block, but not considered as being a block statement by the compiler.
Our if-statement now becomes:
if(x>y)
do {
int tmp;
tmp = x;
x = y;
y = tmp;
} while(0);
else
do_something();
오호~
저도 이것이 궁금했었는데..
:lol: 이런 심오한 뜻이 있는 줄은..
좋은 정보, 감사합니다..
* Art is long, life is short *
오~
책에서는 배울 수 없는 좋은 글입니다.
답변 감사합니다.
<- 이거면 안 되는 게 없어~
정품 소프트웨어 사용 캠패인
아, 처음에는 그냥 위에것만 읽어보고, Block 만 선언하면 해결되잖아
아, 처음에는 그냥 위에것만 읽어보고, Block 만 선언하면 해결되잖아 하고
외치다가, 밑에까지 읽어보니, 음... ; 문제가 생기네요 ^^.
모르고 있던것을 또 알게 되서 정말 고맙습니다. ^^ 고운 하루되세요.
=========================
CharSyam ^^ --- 고운 하루
=========================
오우..
짱..^^;; 잼있네요~
-----------
청하가 제안하는 소프트웨어 엔지니어로써 재미있게 사는 법
http://sozu.tistory.com
오옷.. 저도 궁금하던거 였는데..
좋은 정보 알려주셔서 감사.. ^^
호~~~정말 그렇군요...저도 항상 궁금해하고 있었는데..
호~~~
정말 그렇군요...
저도 항상 궁금해하고 있었는데..
우리 모두 리얼리스트가 되자. 그러나 가슴에는 불가능한 꿈을 갖자!!!
이건 과거에 논의된 얘기입니다.review도 하세요~http://
이건 과거에 논의된 얘기입니다.
review도 하세요~
http://bbs.kldp.org/viewtopic.php?t=45045
댓글 달기