2010-06-12 Joel Sherrill <joel.sherrilL@OARcorp.com>

* libfs/src/pipe/fifo.c: Remove unused variable to fix warning.
	* libnetworking/rtems/mkrootfs.c: Add include to fix warning.
	* rtems/src/tasksetpriority.c: Fix spacing.
This commit is contained in:
Joel Sherrill
2010-06-12 17:55:13 +00:00
parent d123ea7efb
commit 1a0ccc7a9d
4 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2010-06-12 Joel Sherrill <joel.sherrilL@OARcorp.com>
* libfs/src/pipe/fifo.c: Remove unused variable to fix warning.
* libnetworking/rtems/mkrootfs.c: Add include to fix warning.
* rtems/src/tasksetpriority.c: Fix spacing.
2010-06-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/inline/rtems/rtems/status.inl: Fix broken doxygen comment.

View File

@@ -247,8 +247,6 @@ int pipe_release(
pipe_control_t *pipe = *pipep;
uint32_t mode;
rtems_status_code sc;
if (pipe_lock())
/* WARN pipe not freed and pipep not set to NULL! */
/* FIXME */

View File

@@ -41,6 +41,7 @@
#include <arpa/inet.h>
#include <rtems/mkrootfs.h>
#include <rtems/libio.h>
/*
* A table a list of names and their modes.

View File

@@ -58,7 +58,7 @@ rtems_status_code rtems_task_set_priority(
)
{
register Thread_Control *the_thread;
Objects_Locations location;
Objects_Locations location;
if ( new_priority != RTEMS_CURRENT_PRIORITY &&
!_RTEMS_tasks_Priority_is_valid( new_priority ) )