forked from Imagelibrary/rtems
2004-01-30 Wilfried Busalski <w.busalski@lancier-monitoring.de>
PR pppd/564 * rtems/Makefile.am, rtems/include/rtems/rtems/support.h: ppp0 Interface lose packets if the system use a slow baudrate for the modem or the tcp/ip-packet is fragmented.
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2004-01-30 Wilfried Busalski <w.busalski@lancier-monitoring.de>
|
||||||
|
|
||||||
|
PR pppd/564
|
||||||
|
* rtems/Makefile.am, rtems/include/rtems/rtems/support.h: ppp0
|
||||||
|
Interface lose packets if the system use a slow baudrate for the
|
||||||
|
modem or the tcp/ip-packet is fragmented.
|
||||||
|
|
||||||
2004-01-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2004-01-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* ChangeLog: Merge-in libnetworking/ChangeLog.
|
* ChangeLog: Merge-in libnetworking/ChangeLog.
|
||||||
|
|||||||
@@ -116,10 +116,10 @@ DPMEM_C_FILES = src/dpmem.c src/dpmemcreate.c src/dpmemdelete.c \
|
|||||||
src/dpmemexternal2internal.c src/dpmemident.c \
|
src/dpmemexternal2internal.c src/dpmemident.c \
|
||||||
src/dpmeminternal2external.c
|
src/dpmeminternal2external.c
|
||||||
|
|
||||||
librtems_a_SOURCES += src/attr.c src/rtemsidtoname.c $(TASK_C_FILES) \
|
librtems_a_SOURCES += src/attr.c src/rtemsidtoname.c src/wkspacegetinfo.c \
|
||||||
$(RATEMON_C_FILES) $(INTR_C_FILES) $(CLOCK_C_FILES) $(TIMER_C_FILES) \
|
$(TASK_C_FILES) $(RATEMON_C_FILES) $(INTR_C_FILES) $(CLOCK_C_FILES) \
|
||||||
$(SEMAPHORE_C_FILES) $(MESSAGE_QUEUE_C_FILES) $(EVENT_C_FILES) \
|
$(TIMER_C_FILES) $(SEMAPHORE_C_FILES) $(MESSAGE_QUEUE_C_FILES) \
|
||||||
$(SIGNAL_C_FILES) $(PARTITION_C_FILES) $(REGION_C_FILES) \
|
$(EVENT_C_FILES) $(SIGNAL_C_FILES) $(PARTITION_C_FILES) $(REGION_C_FILES) \
|
||||||
$(DPMEM_C_FILES)
|
$(DPMEM_C_FILES)
|
||||||
|
|
||||||
if HAS_MP
|
if HAS_MP
|
||||||
|
|||||||
@@ -20,7 +20,9 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
#include <rtems/rtems/types.h>
|
#include <rtems/rtems/types.h>
|
||||||
|
#include <rtems/rtems/status.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* rtems_build_name
|
* rtems_build_name
|
||||||
@@ -86,6 +88,34 @@ extern "C" {
|
|||||||
#define RTEMS_MICROSECONDS_TO_TICKS(_ms) \
|
#define RTEMS_MICROSECONDS_TO_TICKS(_ms) \
|
||||||
TOD_MICROSECONDS_TO_TICKS(_ms)
|
TOD_MICROSECONDS_TO_TICKS(_ms)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Workspace Related
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* rtems_workspace_get_information
|
||||||
|
*
|
||||||
|
* DESCRIPTION:
|
||||||
|
*
|
||||||
|
* This directive will return information about the RTEMS
|
||||||
|
* executive workspace.
|
||||||
|
*/
|
||||||
|
|
||||||
|
rtems_status_code rtems_workspace_get_information(
|
||||||
|
Heap_Information_block *the_info
|
||||||
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* rtems_workspace_free_space
|
||||||
|
*
|
||||||
|
* DESCRIPTION:
|
||||||
|
*
|
||||||
|
* This directive will return the number of bytes available in the RTEMS
|
||||||
|
* executive workspace. This area is probably not be contiguous.
|
||||||
|
*/
|
||||||
|
|
||||||
|
size_t rtems_workspace_free_space(void);
|
||||||
|
|
||||||
#ifndef __RTEMS_APPLICATION__
|
#ifndef __RTEMS_APPLICATION__
|
||||||
#include <rtems/rtems/support.inl>
|
#include <rtems/rtems/support.inl>
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user