diff -urN file file_new >> xxx.patch
patch -p0 < xxx.patch
ex: /aaa/bbb/ccc.c
-p0代表去掉0層 ex: /aaa/bbb/ccc.c
-p1 則是去掉1層 ex: /bbb/ccc.c
...
以此類推
星期二, 3月 01, 2011
星期四, 6月 05, 2008
Bus error
今天寫程式跑出了Bus error,第一次寫程式看到這個錯誤訊息,
上網去查了一下才知道
In computing, a bus error is generally an attempt to access memory that the CPU cannot physically address.
也就是說我的指標 跑到了不該跑去的地方。可是程式看起來很正常。
後來發現我沒注意到一個重點。
也就是 char *str 與 char str[] 的不同之處。
在compiler會將其中的字串存到constant pool,而這個constant pool是唯讀的
str[]會將在pool裡的字元一個一個複製出來,
而*str會將指標指在第一個字元上面。
就這樣的現象來看也就是說,*str是唯讀的狀態。
所以使用 *str的地方錯誤的話,就有可能會產生bus error
星期三, 11月 15, 2006
編譯過的(或二元碼化的) html
這些軟體還有論文可以看看:
XML Sizing and Compression Study For Military Wireless Datahttp://www.idealliance.org/papers/xml02/dx_xml02/papers/06-02-04/06-02-04.html
Binary XML - Wikipediahttp://en.wikipedia.org/wiki/Binary_XML
XML Binary Characterization Working Group Public Pagehttp://www.w3.org/XML/Binary/
fi: Fast Infoset Projecthttps://fi.dev.java.net/
mozdev.org - maf: Mozilla Archive Formathttp://maf.mozdev.org/
HTML Compression Tool - Compress HTML Page Up to 80%http://www.antssoft.com/htmlcompact/index.htm
Compress HTML and speed up your site with Zap HTML - Free trial!http://www.moonlight-software.com/zap.htm
XML Sizing and Compression Study For Military Wireless Datahttp://www.idealliance.org/papers/xml02/dx_xml02/papers/06-02-04/06-02-04.html
Binary XML - Wikipediahttp://en.wikipedia.org/wiki/Binary_XML
XML Binary Characterization Working Group Public Pagehttp://www.w3.org/XML/Binary/
fi: Fast Infoset Projecthttps://fi.dev.java.net/
mozdev.org - maf: Mozilla Archive Formathttp://maf.mozdev.org/
HTML Compression Tool - Compress HTML Page Up to 80%http://www.antssoft.com/htmlcompact/index.htm
Compress HTML and speed up your site with Zap HTML - Free trial!http://www.moonlight-software.com/zap.htm
星期四, 11月 02, 2006
Linux link about device
Linux Device Drivers, Third Edition
http://lwn.net/Kernel/LDD3/
Linux USB
http://www.qbik.ch/usb/devices/
http://mxhaard.free.fr/SPCA5xx webcams Linux driver (支援多種 webcam, 包含 spcagui 等小工具)
http://lwn.net/Kernel/LDD3/
Linux USB
http://www.qbik.ch/usb/devices/
http://mxhaard.free.fr/SPCA5xx webcams Linux driver (支援多種 webcam, 包含 spcagui 等小工具)
訂閱:
文章 (Atom)