Boost 1.40 is released.
2009/08/28
2009/08/16
MscGen
MscGen is a Message Sequence Chart Generator, which is supported by Doxygen.
Doxygen has @msc and @endmsc tags, and mscgen's code can be written between the tags.
Example is here:
/** Request a fandango on core. * Sending this signal to the Iberian dance task will cause it to create a * wild pointer which is then used to corrupt the malloc arena leading to * mysterious failures later on in the program execution. * *\msc * T,"Iberian Dance Task"; * * T->"Iberian Dance Task" [label="IbFandangoReq", URL="\ref IbFandangoReq"]; * T<<"Iberian Dance Task" [label="IbFandangoCnf", URL="\ref IbFandangoCnf", ID="1"]; *\endmsc * **
*/ typedef struct IbFandangoReqTag { TaskId reqTaskId; } IbFandangoReq;- In some cases, the system may have failed before this signal is sent * or received, in which case the confirm maybe lost. *
2009/08/02
C++0x Concept Has Overridden.
Concept in C++0x has overridden by C++ Standardization Community in July 2009.
C++0x Concept Has Denied.
Concept in C++0x has denied by the C++ standards committee in July 13th 2009.(My news source)
Subscribe to:
Comments (Atom)
How to set parameters to debugging program on Visual Studio 2019 with CMake
Solution: MSDN Sometimes the "Debug and Launch Settings for CMake" bottun is disabled. In this case, change to the target view. ...
-
Enterprise Architect(EA) is a UML tool by SSJ, which supports UML 2.1 since EA version 6.5. Now, I use the tool for UML 2.0 and does not che...
-
sc create svnserve binPath= "\"C:\Program Files\subversion\bin\svnserve.exe\" --service --listen-host=0.0.0.0 --root c:\svnro...
-
Multicharacter Literal is defined at 2.13.2 Character Literals of ISO/IEC14882:2003. The multicharacter literal contains more than one c-ch...