HP

사내 HP-UX 서버에서 컴파일을 하다, 아래의 Warning 이 나왔다. Warning (suggestion) 887: “SharedMemory.cpp”, line 711 # Type ‘int’ is smaller than type ‘unsigned long’, unwanted widening in value may result.        memset(szTotalHexData, 0x00, (iSize * 3) + 1);                                      ^^^^^^^^^^^^^^   이유인즉, unsigned long type 이 와야 하는데, int type 이 왔다는 것. 이상할 것이 없어서 memset […]

Continue reading about size_t warning. int’ is smaller than type ‘unsigned long

pchero on July 12th, 2013

HP-UX에서 CPU 정보 확인 * HP-UX 11.11 에서  – #sam 실행 후    Performance Monitors > System Properties > Processor   – #getconf KERNEL_BITS                 ; Kernel 비트수 확인 -> 예) 64bit * HP-UX 11.31 에서   – #machinfo 출처 : http://blog.daum.net/comoffi/8517003

Continue reading about How to check HP-UX CPU info