# HG changeset patch # User Oleksandr Gavenko # Date 1253545854 -10800 # Node ID 96548f3bae03355a00beb0e18448a68d7c55e8cb # Parent a433d60096411007e591c8bd964a4975babf3e25# Parent 439623dac038c87e79a5a60f88bab60a731273bf merged diff -r a433d6009641 -r 96548f3bae03 embedded.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/embedded.rst Mon Sep 21 18:10:54 2009 +0300 @@ -0,0 +1,5 @@ +-*- mode: outline; coding: utf-8 -*- + +* Embedded OS. + +bertos/contiki/tnkernel/nut/rtems/threadx/mantis/rtt/smx/scmrtos/xmkrtos/freertos/tinyos diff -r a433d6009641 -r 96548f3bae03 fs.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fs.rst Mon Sep 21 18:10:54 2009 +0300 @@ -0,0 +1,12 @@ +-*- mode:outline; coding: utf-8 -*- + +* Make label on FAT32 volume. + +The volume name can be up to 11 characters long. + + $ sudo mlabel -i /dev/ ::my-label + +or when create FAT32 file system: + + $ sudo mkdosfs -n /dev/ + diff -r a433d6009641 -r 96548f3bae03 gcc.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gcc.rst Mon Sep 21 18:10:54 2009 +0300 @@ -0,0 +1,38 @@ +-*- mode: outline; coding: utf-8 -*- + +* Remove dead code. + + STRIP_DEAD_CODE = -Wl,-static -fvtable-gc -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-s + + -Wl,-static + Link against static libraries. Required for dead-code + elimination. + + -fvtable-gc + C++ virtual method table instrumented with garbage collection + information for the linker. + + -fdata-sections + Keeps data in separate data sections, so they can be discarded + if unused. + + -ffunction-sections + Keeps funcitons in separate data sections, so they can be + discarded if unused. + + -Wl,--gc-sections + Tell the linker to garbage collect and discard unused + sections. + + -s + Strip the debug information, so as to make the code as small + as possible. (I presume that you'd want to do this in a + dead-code removal build.) + +* Map file. + + $ ld -Map=file.map + +or + + $ gcc -Wl,-Map=file.map diff -r a433d6009641 -r 96548f3bae03 html.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/html.rst Mon Sep 21 18:10:54 2009 +0300 @@ -0,0 +1,12 @@ +-*- mode: outline; coding: utf-8 -*- + +* Page encoding. + +Place in HEAD tag (CHARSET is one among of defined by +http://www.iana.org/assignments/character-sets): + + + +See + + http://www.w3.org/TR/REC-html40/charset.html#h-5.2.2 diff -r a433d6009641 -r 96548f3bae03 ntp.rst --- a/ntp.rst Thu Sep 03 23:42:53 2009 +0300 +++ b/ntp.rst Mon Sep 21 18:10:54 2009 +0300 @@ -32,3 +32,8 @@ http://support.microsoft.com/kb/q216734/ http://support.microsoft.com/kb/q223184/ + http://support.microsoft.com/kb/307897/ + How to synchronize the time with the Windows Time service in Windows XP. + http://support.microsoft.com/kb/216734/ + How to configure an authoritative time server in Windows 2000. + diff -r a433d6009641 -r 96548f3bae03 stat.rst --- a/stat.rst Thu Sep 03 23:42:53 2009 +0300 +++ b/stat.rst Mon Sep 21 18:10:54 2009 +0300 @@ -29,6 +29,16 @@ http://developers.sun.com/solaris/articles/prstat.html Topping top in Solaris 8 with prstat. +*** Interactive. + + $ perfmeter + +*** Static. + + $ prstat + + $ mpstat + * Memory consumption. ** Linux. @@ -64,6 +74,14 @@ $ vmstat +** Solaris. + + $ sar -g + + $ vmstat + + $ prstat -s size + ** Windows. cmd> taskmgr