eina: group eina_sched
authorTae-Hwan Kim <the81.kim@samsung.com>
Fri, 31 Oct 2014 08:26:47 +0000 (09:26 +0100)
committerCedric BAIL <cedric@osg.samsung.com>
Fri, 31 Oct 2014 08:26:49 +0000 (09:26 +0100)
Summary:
Schedule group is made for eina_sched_xxx.
It is grouped into Tools group.
Futher description is needed later.

Reviewers: raster, cedric

Reviewed By: cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D1623

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
src/lib/eina/eina_sched.h

index 43f32b9c7b83ff233ddb5fa3faf9b4474e4cf91e..13f35a4476515a903ce60e0b81972c38edfcf4fe 100644 (file)
  * if not, see <http://www.gnu.org/licenses/>.
  */
 
+/**
+ * @defgroup Schedule Schedule
+ * @ingroup Eina_Tools_Group
+ *
+ * @{
+ *
+ * TODO: description
+ *
+ */
+
 #ifndef EINA_SCHED_H_
 #define EINA_SCHED_H_
 
 
 
 /**
- * @brief Lower priority of current thread.
+ * @brief Lowers the priority of the current thread.
  *
- * It's used by worker threads so they use up background cpu and do not stall
- * the main thread If current thread is running with real-time priority, we
- * decrease our priority by @c RTNICENESS. This is done in a portable way.
+ * @details It's used by worker threads so that they use up the background CPU and do not stall
+ *          the main thread. If the current thread is running with real-time priority, we
+ *          decrease our priority by @c RTNICENESS. This is done in a portable way.
  *
- * Otherwise (we are running with SCHED_OTHER policy) there's no portable way to
- * set the nice level on current thread. In Linux, it does work and it's the
- * only one that is implemented as of now. In this case the nice level is
- * incremented on this thread by @c NICENESS.
+ *          Otherwise, (we are running with the SCHED_OTHER policy) there's no portable way to
+ *          set the nice level on the current thread. In Linux, it does work and it's the
+ *          only one that is implemented as of now. In this case, the nice level is
+ *          incremented on this thread by @c NICENESS.
  */
 EAPI void eina_sched_prio_drop(void);
 
+/**
+ * @}
+ */
+
 #endif /* EINA_SCHED_H_ */