2009-03-01から1ヶ月間の記事一覧

【ただの独り言】doxygen覚書〜その2〜

ページをいろいろ作って階層化してリンクを張りたいとき。 /*! \mainpage A simple manual Some general info. This manual is divided in the following sections: - \subpage intro - \subpage advanced "Advanced usage" */ //--------------------------…

【ただの独り言】HDDの速度計測 for Linux

HDD(はーどでぃすくどらいぶ)の速度計測のお話。 システムを組み上げるとき、特に組み込みのシステムの場合、HDDとかの速度が気になっちゃうときがあったり無かったりラジバンダリ。無論、HDDの仕様でも読めば理論値は書いているのですが、如何せん理論値。 …

【ただの独り言】doxygen覚書〜その1〜

ページをいろいろ作ってリンクを張りたいとき。 /*! \page page1 A documentation page Leading text. \section sec An example section This page contains the subsections \ref subsection1 and \ref subsection2. For more info see page \ref page2. \s…

【ただの独り言】write関数とかの覚書

C言語ではwrite関数という関数がある。fwriteという関数もある。両者の違いは、普段は意識する必要も無いだろうが、パフォーマンスや電源断によるデータ保障などが気になる場合は、違いを分かっていたほうがいいかもしれない。 write関数、read関数について…