목록도전 (1050)
도전2022
진흥재단 등재지, 등재후보지 리스트 등재지 등재후보지 http://www.nrf.go.kr/htm/business/14_valuation/01_summary/20090807_1_301.jsp?flashActive=011501 사업개요 홈 > 사업안내 > 학술지평가 > 사업개요 사업 목적 국내 학술지의 질적 수준 향상을 유도 재단의 각 연구비지원에 따른 학술연구업적 평가의 객관적 자료로 활용 평가 대상 연구자들간에 학술정보를 교류하기 위하여 정기적으로 발행되는 학술지 (소식지 성격의 간행물 등은 제외) 신청년도를 제외하고 1년에 1회 이상 3년간 발행한 실적이 있어야 함. 평가 대상 제출서류 (제출기간은 온라인 신청접수 이후 대상기관에 별도 공지) 자체평가서 및 증빙자료 양식, 투고논문대장, 임원명단, 학..
http://www.iccs-meeting.org/ ICCS 2010: "Celebrating 10 years of Advancing Computational Thinking"Computational Science University of Amsterdam The Netherlands May 31 - June 2, 2010 In 2010 ICCS celebrates its 10th anniversary in Amsterdam. For this great event we will have five world leading keynote speakers to give their vision on Computational Science now and in the future. To join in the cel..
http://www.iccsa.org/ Sections Home Committees Themes Sessions Electronic Submission System Registration Personal tools Log in You are here: Home Quick LinksRegistration and Payment Visa Request Form Proceedings Call for Papers Author's Instructions Important Dates Related LinksConference Venue Hotel accomodations Access to Fukuoka ICCSA 2009 ICCSA 2009 Special Issues Instructions The 2010 Inter..
qemu-i386 a.out execve("/usr/bin/qemu-i386", ["qemu-i386", "a.out"], [/* 40 vars */]) = 0 brk(0) = 0x4210e000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4212c000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY) = 3 fstat64(3, {..
구글이 좋네요.. Pro Linux Embedded System 데이터가 다 올라와 있네요. http://books.google.co.kr/books?id=z2H1p8-u6lgC&pg=PA60&lpg=PA60&dq=gnemul+download&source=bl&ots=m1MR6WeOUD&sig=QOub2Sk3dKDsAKk92uCBoD6GmoY&hl=ko&ei=EvaBS6baOYqOkQW_u-jqCA&sa=X&oi=book_result&ct=result&resnum=8&ved=0CDAQ6AEwBw#v=onepage&q=&f=true 판매가 74,000원 → 60,900원 18% 마일리지 1% 610원 발행일 2009-12-31 ISBN 1430272279 | 9781430272274 기타정보 원서 | 55..
테스트할 파일 (no-static compile) # readelf -l dir Elf file type is EXEC (Executable file) Entry point 0x8049ae0 There are 9 program headers, starting at offset 52 Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align PHDR 0x000034 0x08048034 0x08048034 0x00120 0x00120 R E 0x4 INTERP 0x000154 0x08048154 0x08048154 0x00013 0x00013 R 0x1 [Requesting program interpreter: /lib/ld-linux.s..
(x86) # cat /proc/self/maps 08048000-08054000 r-xp 00000000 08:01 1368116 /bin/cat 08054000-08055000 r--p 0000b000 08:01 1368116 /bin/cat 08055000-08056000 rw-p 0000c000 08:01 1368116 /bin/cat 08056000-08077000 rw-p 00000000 00:00 0 [heap] 40000000-4001b000 r-xp 00000000 08:01 409623 /lib/ld-2.10.1.so 4001b000-4001c000 r--p 0001a000 08:01 409623 /lib/ld-2.10.1.so 4001c000-4001d000 rw-p 0001b000 ..
라이브러리란? 응용프로그램이 링크해 사용할 수 있도록 미리 컴파일해놓은 코드의 모임이다. - static library : 이식성이 뛰어나다느 장점, 응용 프로그램 크기가 커진다는 단점, 라이브러리 수정시에는 다시 컴파일해야 한다는 단점 - shared library : 응용 프로그램은 컴파일될 때가 아니라 프로그램이 실행될 때에 라이브러리를 로드하여 링크한다. 응용 프로그램의 유지 보수가 쉬움, 시스템 디스크 공간 and 시스템 메모리 요구량 감소됨 다른 컴퓨터 시스템으로 옮기는 작업이 어려워 진다. 그리고 약간의 성능저하를 가져온다. 공유 라이브러리를 찾는 작업을 수행하는 시간을 최소화 하기 위해서 캐시(/etc/ld.so.cache)를 이용한다. 공유 라이브러리의 이름은 "lib" + 라이브러리 이..