Changeset 6f77f16f in rtems
- Timestamp:
- Sep 17, 2004, 5:00:19 PM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d71ab7fd
- Parents:
- 6d380c7
- Location:
- cpukit
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r6d380c7 r6f77f16f 1 2004-09-17 Joel Sherrill <joel@OARcorp.com> 2 3 PR 677/misc 4 * libmisc/dumpbuf/dumpbuf.h, libmisc/fsmount/fsmount.h, 5 libmisc/rtmonuse/rtmonuse.h, libmisc/serdbg/serdbg.h, 6 libmisc/serdbg/serdbgcnf.h, libmisc/serdbg/termios_printk.h, 7 libmisc/serdbg/termios_printk_cnf.h, libmisc/untar/untar.h: Add 8 extern C wrappers. 9 1 10 2004-09-17 Till Strauman <strauman@slac.stanford.edu> 2 11 -
cpukit/libmisc/dumpbuf/dumpbuf.h
r6d380c7 r6f77f16f 13 13 #define __DUMP_BUFFER_h 14 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 18 15 19 void Dump_Buffer( 16 20 unsigned char *buffer, … … 18 22 ); 19 23 24 #ifdef __cplusplus 25 } 26 #endif 27 20 28 #endif 21 29 /* end of include file */ -
cpukit/libmisc/fsmount/fsmount.h
r6d380c7 r6f77f16f 22 22 | 02.07.03 creation doe | 23 23 \*===============================================================*/ 24 24 25 #ifndef _FSMOUNT_H 25 26 #define _FSMOUNT_H 27 26 28 #include <rtems.h> 27 29 #include <rtems/libio.h> 28 30 #include <rtems/libcsupport.h> 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 29 35 30 36 /* … … 69 75 \*=========================================================================*/ 70 76 77 #ifdef __cplusplus 78 } 79 #endif 80 71 81 #endif /* _FSMOUNT_H */ -
cpukit/libmisc/rtmonuse/rtmonuse.h
r6d380c7 r6f77f16f 5 5 #ifndef __RATE_MONOTONIC_USAGE_h 6 6 #define __RATE_MONOTONIC_USAGE_h 7 8 #ifdef __cplusplus 9 extern "C" { 10 #endif 7 11 8 12 void Period_usage_Initialize( void ); … … 16 20 void Period_usage_Dump( void ); 17 21 22 #ifdef __cplusplus 23 } 18 24 #endif 25 26 #endif -
cpukit/libmisc/serdbg/serdbg.h
r6d380c7 r6f77f16f 26 26 #include <termios.h> 27 27 28 #ifdef __cplusplus 29 extern "C" { 30 #endif 28 31 typedef struct { 29 32 uint32_t baudrate; /* debug baud rate, e.g. 57600 */ … … 172 175 \*=========================================================================*/ 173 176 177 #ifdef __cplusplus 178 } 179 #endif 180 174 181 #endif /* _SERDBG_H */ -
cpukit/libmisc/serdbg/serdbgcnf.h
r6d380c7 r6f77f16f 24 24 25 25 #include <rtems/serdbg.h> 26 27 #ifdef __cplusplus 28 extern "C" { 29 #endif 26 30 27 31 #ifdef CONFIGURE_INIT … … 79 83 #endif /* CONFIGURE_INIT */ 80 84 85 #ifdef __cplusplus 86 } 87 #endif 88 81 89 #endif /* _SERDBGCNF_H */ -
cpukit/libmisc/serdbg/termios_printk.h
r6d380c7 r6f77f16f 25 25 #include <rtems.h> 26 26 #include <termios.h> 27 28 #ifdef __cplusplus 29 extern "C" { 30 #endif 27 31 28 32 typedef struct { … … 93 97 | 0 on success, -1 and errno otherwise | 94 98 \*=========================================================================*/ 99 100 #ifdef __cplusplus 101 } 102 #endif 103 95 104 #endif /* _TERMIOS_PRINTK_H */ -
cpukit/libmisc/serdbg/termios_printk_cnf.h
r6d380c7 r6f77f16f 24 24 25 25 #include <rtems/termios_printk.h> 26 27 #ifdef __cplusplus 28 extern "C" { 29 #endif 26 30 27 31 #ifdef CONFIGURE_INIT … … 68 72 #endif /* CONFIGURE_INIT */ 69 73 74 #ifdef __cplusplus 75 } 76 #endif 77 70 78 #endif /* _TERMIOS_PRINTK_CNF_H */ -
cpukit/libmisc/untar/untar.h
r6d380c7 r6f77f16f 12 12 #define __UNTAR_H__ 13 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 14 17 15 18 #define UNTAR_SUCCESSFUL 0 … … 22 25 int Untar_FromFile(char *tar_name); 23 26 27 #ifdef __cplusplus 28 } 29 #endif 24 30 25 31 #endif /* __UNTAR_H__ */
Note: See TracChangeset
for help on using the changeset viewer.