2004-09-17 Joel Sherrill <joel@OARcorp.com>

PR 677/misc
	* libmisc/dumpbuf/dumpbuf.h, libmisc/fsmount/fsmount.h,
	libmisc/rtmonuse/rtmonuse.h, libmisc/serdbg/serdbg.h,
	libmisc/serdbg/serdbgcnf.h, libmisc/serdbg/termios_printk.h,
	libmisc/serdbg/termios_printk_cnf.h, libmisc/untar/untar.h: Add
	extern C wrappers.
This commit is contained in:
Joel Sherrill
2004-09-17 17:00:19 +00:00
parent 6d380c7aea
commit 6f77f16f7b
9 changed files with 73 additions and 0 deletions

View File

@@ -1,3 +1,12 @@
2004-09-17 Joel Sherrill <joel@OARcorp.com>
PR 677/misc
* libmisc/dumpbuf/dumpbuf.h, libmisc/fsmount/fsmount.h,
libmisc/rtmonuse/rtmonuse.h, libmisc/serdbg/serdbg.h,
libmisc/serdbg/serdbgcnf.h, libmisc/serdbg/termios_printk.h,
libmisc/serdbg/termios_printk_cnf.h, libmisc/untar/untar.h: Add
extern C wrappers.
2004-09-17 Till Strauman <strauman@slac.stanford.edu>
PR 676/networking

View File

@@ -12,10 +12,18 @@
#ifndef __DUMP_BUFFER_h
#define __DUMP_BUFFER_h
#ifdef __cplusplus
extern "C" {
#endif
void Dump_Buffer(
unsigned char *buffer,
int length
);
#ifdef __cplusplus
}
#endif
#endif
/* end of include file */

View File

@@ -21,12 +21,18 @@
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 02.07.03 creation doe |
\*===============================================================*/
#ifndef _FSMOUNT_H
#define _FSMOUNT_H
#include <rtems.h>
#include <rtems/libio.h>
#include <rtems/libcsupport.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* bits to define, what errors will cause reporting (via printf) and
* abort of mount processing
@@ -68,4 +74,8 @@ int rtems_fsmount
| 0, if success, -1 and errno if failed |
\*=========================================================================*/
#ifdef __cplusplus
}
#endif
#endif /* _FSMOUNT_H */

View File

@@ -5,6 +5,10 @@
#ifndef __RATE_MONOTONIC_USAGE_h
#define __RATE_MONOTONIC_USAGE_h
#ifdef __cplusplus
extern "C" {
#endif
void Period_usage_Initialize( void );
void Period_usage_Reset( void );
@@ -15,4 +19,8 @@ void Period_usage_Update(
void Period_usage_Dump( void );
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -25,6 +25,9 @@
#include <rtems.h>
#include <termios.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
uint32_t baudrate; /* debug baud rate, e.g. 57600 */
void (*callout)(void); /* callout pointer during polling */
@@ -171,4 +174,8 @@ int getDebugChar
| received character |
\*=========================================================================*/
#ifdef __cplusplus
}
#endif
#endif /* _SERDBG_H */

View File

@@ -24,6 +24,10 @@
#include <rtems/serdbg.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef CONFIGURE_INIT
/*
@@ -78,4 +82,8 @@ int serdbg_init(void) {
#endif /* CONFIGURE_INIT */
#ifdef __cplusplus
}
#endif
#endif /* _SERDBGCNF_H */

View File

@@ -25,6 +25,10 @@
#include <rtems.h>
#include <termios.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
uint32_t baudrate; /* debug baud rate, e.g. 57600 */
void (*callout)(void); /* callout pointer during polling */
@@ -92,4 +96,9 @@ int termios_printk_open
| Return Value: |
| 0 on success, -1 and errno otherwise |
\*=========================================================================*/
#ifdef __cplusplus
}
#endif
#endif /* _TERMIOS_PRINTK_H */

View File

@@ -24,6 +24,10 @@
#include <rtems/termios_printk.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef CONFIGURE_INIT
/*
@@ -67,4 +71,8 @@ int termios_printk_init(void) {
#endif /* CONFIGURE_INIT */
#ifdef __cplusplus
}
#endif
#endif /* _TERMIOS_PRINTK_CNF_H */

View File

@@ -11,6 +11,9 @@
#ifndef __UNTAR_H__
#define __UNTAR_H__
#ifdef __cplusplus
extern "C" {
#endif
#define UNTAR_SUCCESSFUL 0
#define UNTAR_FAIL 1
@@ -21,5 +24,8 @@
int Untar_FromMemory(unsigned char *tar_buf, unsigned long size);
int Untar_FromFile(char *tar_name);
#ifdef __cplusplus
}
#endif
#endif /* __UNTAR_H__ */