오류

pchero on August 15th, 2010

 오늘 C++ 책에서 나온 소스코드를 컴파일하다 이상한 에러를 발견했다. 17-2.cpp:84: error: expected unqualified-id before numeric constant17-2.cpp:84: error: expected initializer before numeric constant  다음의 링크에서 해답을 찾을 수 있었다. http://bytes.com/topic/c/answers/752247-what-does-expected-unqualified-id-before-numeric-constant-mean All uppercase names are often used for preprocessor macros, which doesn’t respect namespace scopes. Therefore such names should generally be avoided for everything else.  즉 어디에선가 […]

Continue reading about error: expected unqualified-id before numeric constant

pchero on October 30th, 2008

 이상한 일이었다.  과제를 위해 네트워크의 트래픽 사용량을 찍어내던 중….이상한 현상을 발견하였다.  나의 노트북에서 계속해서 ARP 메시지를 보내고 있었던 것이다.  다른 일반적인 TCP나 UDP 패킷과는 달리, ARP메시지는 브로드 캐스트로 뿌려주는 메시지이기 때문에 이 메시지가 계속해서 네트워크에 뿌려지게 된다면 부하가 심할것이었다.  원인을 계속 찾아보았지만 알수가 없었다.  심지어는 KLDP에 이 문제를 올려보기도 했다.  http://kldp.org/node/99349  하지만 아무도 답을 달아주지 […]

Continue reading about 계속되는 ARP 메시지…

pchero on February 12th, 2008

 가끔 아래의 메시지와 같은 에러가 발생하면서 프로그램 실행이 안돼는 경우가 있다.  대표적으로 make를 실행할 때 가끔씩 발생한다.  /bin/sh: Syntax error: Bad fd number  우분투에서는 다음과 같은 명령어 커맨드로 해결할 수 있다. sudo rm /bin/shsudo ln -s /bin/bash /bin/sh  자료출처 : http://ubuntuforums.org/showthread.php?t=382548

Continue reading about /bin/sh: Syntax error: Bad fd number