<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
  <title type="html">Superkkt Blog: 최근 댓글/트랙백 목록</title>
  <id>http://superkkt.com/</id>
  <link rel="alternate" type="text/html" hreflang="ko" href="http://superkkt.com/" />
  <subtitle type="html">프로그램 개발과 관련된 지식을 정리하는 공간입니다.</subtitle>
  <updated>2010-03-10T03:02:46+09:00</updated>
  <generator>Textcube 1.7.8 : Con moto</generator>
  <entry>
    <title type="html">CPU 64bit 지원 여부 확인 : 김기태님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/293#comment106" />
    <author>
      <name>(김기태)</name>
    </author>
    <id>http://superkkt.com/293#comment106</id>
    <published>2010-01-06T12:38:54+09:00</published>
    <summary type="html">리눅스 커널 소스 중 arch/x86/boot/cpucheck.c 파일에서 check_cpu() 함수를 보시면 아래와 같이 Long Mode 여부에 따라 CPU 레벨을 64비트로 결정하는 루틴이 있습니다. 

참고로 define 부분은 다른 헤더 파일에 있는것을 편의상 발췌해서 보여드립니다.

#define X86_FEATURE_LM (1*32+29) /* Long Mode (x86-64) */

if (test_bit(X86_FEATURE_LM, cpu.flag))
        cpu.level = 64;</summary>
  </entry>
  <entry>
    <title type="html">CPU 64bit 지원 여부 확인 : 화란4님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/293#comment105" />
    <author>
      <name>(화란4)</name>
    </author>
    <id>http://superkkt.com/293#comment105</id>
    <published>2010-01-04T10:00:37+09:00</published>
    <summary type="html">KLDP에서 보고선 들어왔는데요,
(&#039;숟가락 울트라맨&#039; 사진을 쓰시던데^^)

lm flag만 있으면, 다른것 체크 안해도

해당 CPU는 무조건 64비트 지원모델인가요?


초보라서 정말 잘 몰라서 여쭙는겁니다...^^


참고로, 아실수도 있으시겠지만,

http://www.flounder.com/cpuid_explorer2.htm#CPUID(0x80000001)

에 가보시믄 flags들에 대한 필드설명이 나와있어요^^</summary>
  </entry>
  <entry>
    <title type="html">Half-precision floating point : 김기태님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/369#comment103" />
    <author>
      <name>(김기태)</name>
    </author>
    <id>http://superkkt.com/369#comment103</id>
    <published>2009-12-15T20:50:32+09:00</published>
    <summary type="html">x86 CPU에서는 아직 half precision을 지원하지 않기 때문에 소프트웨어로 구현을 해야 한다. 그런데 첫번째 라이브러리를 써본 결과 변환 과정의 cost가 상당히 높아서 실제로 사용하지는 못했다.

AMD에서 2010년쯤에 새로 나온다는 CPU(이름이 불도져였나??)에서는 half precision 변환을 수행하는 기능이 들어간다고하니 그때쯤 사용해볼만하려나..

암튼 좀 오래된 글이지만 다시 생각나서 기록해둔다.</summary>
  </entry>
  <entry>
    <title type="html">솔라리스 메모리 관리 : 스왑~님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/21#comment93" />
    <author>
      <name>(스왑~)</name>
    </author>
    <id>http://superkkt.com/21#comment93</id>
    <published>2008-04-16T20:20:52+09:00</published>
    <summary type="html">감사합니다 많은 도움됐습니다. ^^</summary>
  </entry>
  <entry>
    <title type="html">OpenSSL을 사용한 파일 암호화 : 윈디하나님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/274#comment92" />
    <author>
      <name>(윈디하나)</name>
    </author>
    <id>http://superkkt.com/274#comment92</id>
    <published>2008-03-06T17:37:52+09:00</published>
    <summary type="html">ㅎㅁ~ 

전화번호는 그대로인데... ^^ 혹시 문자를 못 본건감... ^^

술한잔 해요~ 어디서 일하세요? 지난 회사 그대론가요?</summary>
  </entry>
  <entry>
    <title type="html">OpenSSL을 사용한 파일 암호화 : 김기태님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/274#comment91" />
    <author>
      <name>(김기태)</name>
    </author>
    <id>http://superkkt.com/274#comment91</id>
    <published>2008-03-05T09:28:46+09:00</published>
    <summary type="html">옷!! 호석씨~ 이게 얼마만인가요~ ^^;; 블로그를 통해 좋은 소식은 계속 접하고 있습니다. 전에 안부 문자를 보냈는데 혹시 전화번호가 바뀌신건가요? 답장이 없으시길래~^^;;

여기 코드는 라이브러리 형태로 사용하려고 만든거라서 main 함수는 빠졌어요.</summary>
  </entry>
  <entry>
    <title type="html">소켓으로의 파일 전송 : 윈디하나님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/265#comment90" />
    <author>
      <name>(윈디하나)</name>
    </author>
    <id>http://superkkt.com/265#comment90</id>
    <published>2008-03-04T18:25:04+09:00</published>
    <summary type="html">sendfilev 가 웹 서버에서 많이 쓰이던데(솔라리스에서 truss로 해보면 나옴) 어케 쓰는지는 당근 잘 모름 ^^</summary>
  </entry>
  <entry>
    <title type="html">OpenSSL을 사용한 파일 암호화 : 윈디하나님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/274#comment89" />
    <author>
      <name>(윈디하나)</name>
    </author>
    <id>http://superkkt.com/274#comment89</id>
    <published>2008-03-04T18:23:27+09:00</published>
    <summary type="html">어째 main() 함수가 없는거 같네요 ^^ 솔라리스에서 컴파일 해보는 중. 잘 지내시죠?

cc ciphermain.c -I/usr/local/ssl/include -L/usr/local/ssl/lib -lssl -lcrypto -lsocket -lnsl -ldl

하면 솔라리스에서도 경고 몇개 뜨지만 컴파일 되네요. openSSL은 /usr/local/ssl에 있습니다 ^^</summary>
  </entry>
  <entry>
    <title type="html">한국에서 개발자는 별볼일 없는건가... : 신철수님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/173#comment88" />
    <author>
      <name>(신철수)</name>
    </author>
    <id>http://superkkt.com/173#comment88</id>
    <published>2008-02-03T22:45:36+09:00</published>
    <summary type="html">아하 결론은 부동산;;;</summary>
  </entry>
  <entry>
    <title type="html">sscanf 사용 예제 : choco님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/225#comment86" />
    <author>
      <name>(choco)</name>
    </author>
    <id>http://superkkt.com/225#comment86</id>
    <published>2007-09-14T13:45:47+09:00</published>
    <summary type="html">우연히 넘기다 발견했습니다. 좀 오래된 포스트지만...

sscanf(str, &amp;quot;%4[0-9]%*[ -]%2[0-9]%*[- ]%2[0-9] %d:%d:%d&amp;quot;, year, month, day, &amp;amp;hour, &amp;amp;min, &amp;amp;sec);

와 같은 패턴매칭을 이용한 방법도 가능합니다.
</summary>
  </entry>
  <entry>
    <title type="html">매틀랩과 닷넷 C# 연결하기(Connect Matlab to .NET C#)</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/434#trackback11" />
    <author>
      <name>(행복한 프로그래머)</name>
    </author>
    <id>http://superkkt.com/434#trackback11</id>
    <published>2010-02-05T18:56:10+09:00</published>
    <summary type="html">매틀랩과 C 혹은 C++ 과 연결하는 방법에 대해서 이미 다른 블로거 분들이 올렸는데, 실질적으로 .NET 라이브러리화되어서 연동시켜서 매틀랩의 함수들을 사용하는 방식에 대해서는 안 나와 있어서 이렇게 올리게 되었습니다. 일단. 아래의 링크에 가셔서 기본적인 절차를 숙지 하셔야 합니다. Matlab에서 C++ DLL 만들어보세~ Matlab Builder NE를 이용하라!! ????.NET용 DLL을 만들어서 C#과 연결하기 위해서는 아래화면에서 M..</summary>
  </entry>
  <entry>
    <title type="html">How to use Shared memory and Semaphores.</title>
    <link rel="alternate" type="text/html" href="http://superkkt.com/91#trackback3" />
    <author>
      <name>(hurryon:hurryon)</name>
    </author>
    <id>http://superkkt.com/91#trackback3</id>
    <published>2006-05-18T15:42:01+09:00</published>
    <summary type="html">This code describes how to use Shared memory and Semaphores in Linux C programming. This code have come from http://superkkt.com
</summary>
  </entry>
</feed>
