(void)ignore 가 뭘뜻하는지..

rokmn3309의 이미지

ftp 클라이언트 소스를 분석중에 시그날 호출부분에 다음과 같은게 있는데
(void)ignore; 이게 무엇을 하는것인지 모르겠네요.. 첨 보는거고요..
아시는분은 리플 부탁드립니다.

호출당하는 부분

void
intr(int ignore)
{
	(void)ignore;
	siglongjmp(toplevel, 1);
}

호출부분

(void) signal(SIGINT, intr);
최종호의 이미지

경고 메시지를 안 나오도록 할려고 한게 아닌가 생각됩니다.

좀 까다로운 컴파일러들은 (또는 주어진 경고 옵션에 따라)

함수의 파라메터가 함수 안에서 사용이 되지 않으면 경고를 출력합니다.

이 경고를 피하기 위해서

void 
intr(int ignore) 
{ 
   ignore; 
   siglongjmp(toplevel, 1); 
} 

와 같이 해당 파라메터를 사용을 하면

해당 문장이 아무런 효과가 없다는 경고 메시지를 출력하기도 합니다.

void 
intr(int ignore) 
{ 
   (void)ignore; 
   siglongjmp(toplevel, 1); 
} 

ignore 앞에다가 (void)를 붙여주면 컴파일러에 따라 사용자의 의도를 헤아려서 해당 경고메시지를 안 내보내주기도 합니다.

gcc 홈페이지에서 가져왔습니다.
http://gcc.gnu.org/onlinedocs/gcc-3.2.2/gcc/Warning-Options.html#Warning%20Options

Quote:
-Wunused-value
Warn whenever a statement computes a result that is explicitly not used.
To suppress this warning cast the expression to void.

-Wunused
All all the above -Wunused options combined.
In order to get a warning about an unused function parameter, you must either specify -W -Wunused or separately specify -Wunused-parameter.

gcc 메뉴얼에 따르면 -Wall 이면 parameter를 사용하지 않아도 경고를 내야할 것 같은데, -Wall 만으로는 경고가 발생하지 않는 것 같습니다.

샘플 코드를

% gcc -Wall -Wunused-parameter a.c

정도로 컴파일해서 (void)ignore; 줄을 빼 보고 컴파일 해 보시고,
(void)를 빼고 ignore; 만 넣고 컴파일을 해 보시면 경고메시지를
보실 수 있을 것입니다.

흠,, 근데 또 다른 컴파일러에서는 (void)ignore; 도 경고를 낼 수 있지 않을까 생각이 드는데요, 표준에는 이에 관련된 내용이 있는지, 있으면 어떻게 해석하도록 되어있는지 모르겠습니다.

pynoos의 이미지

윗분 설명에 동감합니다.

signal handler의 format

void func( int )

은 맞추어야하겠고, 인자로 받는 signal은 사용안할 것이고,

그리고 -W 에서 확인되는 warning은 해결해주어야하겠고....

gcc의 경우 __attribute__ 설정을 다음과 같이 하는 방법으로 문제의 경고를 없앨 수 있습니다.

void func( int __attribute__((unused)) sig )

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.