فهرست منبع

Update README.md

Anatoli Arkhipenko 5 سال پیش
والد
کامیت
07314ce0b9
1فایلهای تغییر یافته به همراه7 افزوده شده و 1 حذف شده
  1. 7 1
      README.md

+ 7 - 1
README.md

@@ -10,7 +10,13 @@
 ---
 
 ### OVERVIEW:
-A lightweight implementation of cooperative multitasking (task scheduling) supporting:
+A lightweight implementation of cooperative multitasking (task scheduling). An easier alternative to preemptive programming and frameworks like FreeRTOS. 
+
+**Why cooperative?**
+You mostly do not need to worry about pitfalls of concurrent processing (races, deadlocks, livelocks, resource sharing, etc.).  The fact of cooperative processing takes care of such issues by design. 
+_“Everybody who learns concurrency thinks they understand it, ends up finding mysterious races they thought weren’t possible, and discovers that they didn’t actually understand it yet after all.”_ **Herb Sutter, chair of the ISO C++ standards committee, Microsoft.**
+
+Main features:
 1. Periodic task execution, with dynamic execution period in `milliseconds` (default) or `microseconds` (if explicitly enabled) – frequency of execution
 2. Number of iterations (limited or infinite number of iterations)
 3. Execution of tasks in predefined sequence