change log for rtems (2010-06-15)
rtems-vc at rtems.org
rtems-vc at rtems.org
Tue Jun 15 16:11:57 UTC 2010
*joel*:
2010-06-15 Joel Sherrill <joel.sherrill at oarcorp.com>
* posix/include/rtems/posix/pthread.h: Improve comments.
M 1.2393 cpukit/ChangeLog
M 1.31 cpukit/posix/include/rtems/posix/pthread.h
diff -u rtems/cpukit/ChangeLog:1.2392 rtems/cpukit/ChangeLog:1.2393
--- rtems/cpukit/ChangeLog:1.2392 Tue Jun 15 10:17:34 2010
+++ rtems/cpukit/ChangeLog Tue Jun 15 10:52:29 2010
@@ -1,3 +1,7 @@
+2010-06-15 Joel Sherrill <joel.sherrill at oarcorp.com>
+
+ * posix/include/rtems/posix/pthread.h: Improve comments.
+
2010-06-15 Ralf Corsépius <ralf.corsepius at rtems.org>
* libfs/src/rfs/rtems-rfs-file-system.h: Remove bogus typecast.
diff -u rtems/cpukit/posix/include/rtems/posix/pthread.h:1.30 rtems/cpukit/posix/include/rtems/posix/pthread.h:1.31
--- rtems/cpukit/posix/include/rtems/posix/pthread.h:1.30 Tue Jun 15 08:26:31 2010
+++ rtems/cpukit/posix/include/rtems/posix/pthread.h Tue Jun 15 10:52:29 2010
@@ -128,10 +128,17 @@
/**
* _POSIX_Threads_Sporadic_budget_TSR
*
- * This routine supports the sporadic scheduling algorithm.
+ * This routine supports the sporadic scheduling algorithm. It
+ * is scheduled to be executed at the end of each replenishment
+ * period. In sporadic scheduling a thread will execute at a
+ * high priority for a user specified amount of CPU time. When
+ * it exceeds that amount of CPU time, its priority is automatically
+ * lowered. This TSR is executed when it is time to replenish
+ * the thread's processor budget and raise its priority.
*
- * @param[in] id
- * @param[in] argument
+ * @param[in] id is ignored
+ * @param[in] argument is a pointer to the Thread_Control structure
+ * for the thread being replenished.
*/
void _POSIX_Threads_Sporadic_budget_TSR(
Objects_Id id,
*ralf* (on branch rtems-4-10-branch):
2010-06-15 Ralf Corsépius <ralf.corsepius at rtems.org>
* libfs/src/rfs/rtems-rfs-file-system.h: Remove bogus typecast.
M 1.2392 cpukit/ChangeLog
M 1.2346.2.17 cpukit/ChangeLog
M 1.4 cpukit/libfs/src/rfs/rtems-rfs-file-system.h
M 1.3.2.1 cpukit/libfs/src/rfs/rtems-rfs-file-system.h
diff -u rtems/cpukit/ChangeLog:1.2391 rtems/cpukit/ChangeLog:1.2392
--- rtems/cpukit/ChangeLog:1.2391 Tue Jun 15 08:35:26 2010
+++ rtems/cpukit/ChangeLog Tue Jun 15 10:17:34 2010
@@ -1,5 +1,6 @@
2010-06-15 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * libfs/src/rfs/rtems-rfs-file-system.h: Remove bogus typecast.
* libfs/src/rfs/rtems-rfs-block.c, libfs/src/rfs/rtems-rfs-buffer.c,
libnetworking/nfs/bootp_subr.c: Misc. 64bit-compatibility fixes.
* posix/include/rtems/posix/pthread.h: Remove stray comment.
diff -u rtems/cpukit/ChangeLog:1.2346.2.16 rtems/cpukit/ChangeLog:1.2346.2.17
--- rtems/cpukit/ChangeLog:1.2346.2.16 Tue Jun 15 08:35:48 2010
+++ rtems/cpukit/ChangeLog Tue Jun 15 10:17:42 2010
@@ -1,5 +1,6 @@
2010-06-15 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * libfs/src/rfs/rtems-rfs-file-system.h: Remove bogus typecast.
* libfs/src/rfs/rtems-rfs-block.c, libfs/src/rfs/rtems-rfs-buffer.c,
libnetworking/nfs/bootp_subr.c: Misc. 64bit-compatibility fixes.
* posix/include/rtems/posix/pthread.h: Remove stray comment.
diff -u rtems/cpukit/libfs/src/rfs/rtems-rfs-file-system.h:1.3 rtems/cpukit/libfs/src/rfs/rtems-rfs-file-system.h:1.4
--- rtems/cpukit/libfs/src/rfs/rtems-rfs-file-system.h:1.3 Thu Feb 25 23:54:59 2010
+++ rtems/cpukit/libfs/src/rfs/rtems-rfs-file-system.h Tue Jun 15 10:17:35 2010
@@ -308,7 +308,7 @@
*
* @param _fs Pointer to the file system.
*/
-#define rtems_rfs_fs_size(_fs) (((uint64_t) rtems_rfs_fs_blocks (_fs)) * \
+#define rtems_rfs_fs_size(_fs) (rtems_rfs_fs_blocks (_fs) * \
rtems_rfs_fs_block_size (_fs))
/**
diff -u rtems/cpukit/libfs/src/rfs/rtems-rfs-file-system.h:1.3 rtems/cpukit/libfs/src/rfs/rtems-rfs-file-system.h:1.3.2.1
--- rtems/cpukit/libfs/src/rfs/rtems-rfs-file-system.h:1.3 Thu Feb 25 23:54:59 2010
+++ rtems/cpukit/libfs/src/rfs/rtems-rfs-file-system.h Tue Jun 15 10:17:43 2010
@@ -308,7 +308,7 @@
*
* @param _fs Pointer to the file system.
*/
-#define rtems_rfs_fs_size(_fs) (((uint64_t) rtems_rfs_fs_blocks (_fs)) * \
+#define rtems_rfs_fs_size(_fs) (rtems_rfs_fs_blocks (_fs) * \
rtems_rfs_fs_block_size (_fs))
/**
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20100615/717105e2/attachment-0001.html>
More information about the vc
mailing list