* sapi/include/confdefs.h,
	score/include/rtems/score/schedulerpriority.h: C++ compatibility.
This commit is contained in:
Sebastian Huber
2011-02-21 11:54:37 +00:00
parent 00db336a00
commit 4be93c07ec
3 changed files with 18 additions and 13 deletions

View File

@@ -1,3 +1,8 @@
2011-02-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
* sapi/include/confdefs.h,
score/include/rtems/score/schedulerpriority.h: C++ compatibility.
2011-02-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libnetworking/lib/ftpfs.c: Workaround for some firewalls.

View File

@@ -603,8 +603,8 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
*/
#ifdef CONFIGURE_INIT
Scheduler_Control _Scheduler = {
.information = NULL,
.Operations = SCHEDULER_ENTRY_POINTS
NULL,
SCHEDULER_ENTRY_POINTS
};
#endif

View File

@@ -38,17 +38,17 @@ extern "C" {
*/
#define SCHEDULER_PRIORITY_ENTRY_POINTS \
{ \
.initialize = _Scheduler_priority_Initialize, \
.schedule = _Scheduler_priority_Schedule, \
.yield = _Scheduler_priority_Yield, \
.block = _Scheduler_priority_Block, \
.unblock = _Scheduler_priority_Unblock, \
.allocate = _Scheduler_priority_Allocate, \
.free = _Scheduler_priority_Free, \
.update = _Scheduler_priority_Update, \
.enqueue = _Scheduler_priority_Enqueue, \
.enqueue_first = _Scheduler_priority_Enqueue_first, \
.extract = _Scheduler_priority_Extract \
_Scheduler_priority_Initialize, \
_Scheduler_priority_Schedule, \
_Scheduler_priority_Yield, \
_Scheduler_priority_Block, \
_Scheduler_priority_Unblock, \
_Scheduler_priority_Allocate, \
_Scheduler_priority_Free, \
_Scheduler_priority_Update, \
_Scheduler_priority_Enqueue, \
_Scheduler_priority_Enqueue_first, \
_Scheduler_priority_Extract \
}
/**