Changeset 83c7b00 in rtems
- Timestamp:
- 02/04/99 14:59:42 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 354b00bc
- Parents:
- d3c1060
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libnetworking/rtems/tftp.h
rd3c1060 r83c7b00 29 29 */ 30 30 31 #ifndef _TFTP_ DRIVER_h32 #define _TFTP_ DRIVER_h31 #ifndef _TFTP_FILESYSTEM_h 32 #define _TFTP_FILESYSTEM_h 33 33 34 34 #ifdef __cplusplus … … 37 37 38 38 /* 39 * Driver entry points39 * Filesystem initialization routine 40 40 */ 41 #define TFTP_DRIVER_TABLE_ENTRY \42 { rtems_tftp_initialize, rtems_tftp_open, rtems_tftp_close, \43 rtems_tftp_read, rtems_tftp_write, rtems_tftp_control }44 41 45 rtems_device_driver rtems_tftp_initialize( 46 rtems_device_major_number, 47 rtems_device_minor_number, 48 void * 49 ); 50 51 rtems_device_driver rtems_tftp_open( 52 rtems_device_major_number, 53 rtems_device_minor_number, 54 void * 55 ); 56 57 rtems_device_driver rtems_tftp_close( 58 rtems_device_major_number, 59 rtems_device_minor_number, 60 void * 61 ); 62 63 rtems_device_driver rtems_tftp_read( 64 rtems_device_major_number, 65 rtems_device_minor_number, 66 void * 67 ); 68 69 rtems_device_driver rtems_tftp_write( 70 rtems_device_major_number, 71 rtems_device_minor_number, 72 void * 73 ); 74 75 rtems_device_driver rtems_tftp_control( 76 rtems_device_major_number, 77 rtems_device_minor_number, 78 void * 79 ); 42 int rtems_bsdnet_initialize_tftp_filesystem( void ); 80 43 81 44 #ifdef __cplusplus -
c/src/lib/libnetworking/rtems/tftp.h
rd3c1060 r83c7b00 29 29 */ 30 30 31 #ifndef _TFTP_ DRIVER_h32 #define _TFTP_ DRIVER_h31 #ifndef _TFTP_FILESYSTEM_h 32 #define _TFTP_FILESYSTEM_h 33 33 34 34 #ifdef __cplusplus … … 37 37 38 38 /* 39 * Driver entry points39 * Filesystem initialization routine 40 40 */ 41 #define TFTP_DRIVER_TABLE_ENTRY \42 { rtems_tftp_initialize, rtems_tftp_open, rtems_tftp_close, \43 rtems_tftp_read, rtems_tftp_write, rtems_tftp_control }44 41 45 rtems_device_driver rtems_tftp_initialize( 46 rtems_device_major_number, 47 rtems_device_minor_number, 48 void * 49 ); 50 51 rtems_device_driver rtems_tftp_open( 52 rtems_device_major_number, 53 rtems_device_minor_number, 54 void * 55 ); 56 57 rtems_device_driver rtems_tftp_close( 58 rtems_device_major_number, 59 rtems_device_minor_number, 60 void * 61 ); 62 63 rtems_device_driver rtems_tftp_read( 64 rtems_device_major_number, 65 rtems_device_minor_number, 66 void * 67 ); 68 69 rtems_device_driver rtems_tftp_write( 70 rtems_device_major_number, 71 rtems_device_minor_number, 72 void * 73 ); 74 75 rtems_device_driver rtems_tftp_control( 76 rtems_device_major_number, 77 rtems_device_minor_number, 78 void * 79 ); 42 int rtems_bsdnet_initialize_tftp_filesystem( void ); 80 43 81 44 #ifdef __cplusplus -
c/src/libnetworking/rtems/tftp.h
rd3c1060 r83c7b00 29 29 */ 30 30 31 #ifndef _TFTP_ DRIVER_h32 #define _TFTP_ DRIVER_h31 #ifndef _TFTP_FILESYSTEM_h 32 #define _TFTP_FILESYSTEM_h 33 33 34 34 #ifdef __cplusplus … … 37 37 38 38 /* 39 * Driver entry points39 * Filesystem initialization routine 40 40 */ 41 #define TFTP_DRIVER_TABLE_ENTRY \42 { rtems_tftp_initialize, rtems_tftp_open, rtems_tftp_close, \43 rtems_tftp_read, rtems_tftp_write, rtems_tftp_control }44 41 45 rtems_device_driver rtems_tftp_initialize( 46 rtems_device_major_number, 47 rtems_device_minor_number, 48 void * 49 ); 50 51 rtems_device_driver rtems_tftp_open( 52 rtems_device_major_number, 53 rtems_device_minor_number, 54 void * 55 ); 56 57 rtems_device_driver rtems_tftp_close( 58 rtems_device_major_number, 59 rtems_device_minor_number, 60 void * 61 ); 62 63 rtems_device_driver rtems_tftp_read( 64 rtems_device_major_number, 65 rtems_device_minor_number, 66 void * 67 ); 68 69 rtems_device_driver rtems_tftp_write( 70 rtems_device_major_number, 71 rtems_device_minor_number, 72 void * 73 ); 74 75 rtems_device_driver rtems_tftp_control( 76 rtems_device_major_number, 77 rtems_device_minor_number, 78 void * 79 ); 42 int rtems_bsdnet_initialize_tftp_filesystem( void ); 80 43 81 44 #ifdef __cplusplus -
cpukit/libnetworking/rtems/tftp.h
rd3c1060 r83c7b00 29 29 */ 30 30 31 #ifndef _TFTP_ DRIVER_h32 #define _TFTP_ DRIVER_h31 #ifndef _TFTP_FILESYSTEM_h 32 #define _TFTP_FILESYSTEM_h 33 33 34 34 #ifdef __cplusplus … … 37 37 38 38 /* 39 * Driver entry points39 * Filesystem initialization routine 40 40 */ 41 #define TFTP_DRIVER_TABLE_ENTRY \42 { rtems_tftp_initialize, rtems_tftp_open, rtems_tftp_close, \43 rtems_tftp_read, rtems_tftp_write, rtems_tftp_control }44 41 45 rtems_device_driver rtems_tftp_initialize( 46 rtems_device_major_number, 47 rtems_device_minor_number, 48 void * 49 ); 50 51 rtems_device_driver rtems_tftp_open( 52 rtems_device_major_number, 53 rtems_device_minor_number, 54 void * 55 ); 56 57 rtems_device_driver rtems_tftp_close( 58 rtems_device_major_number, 59 rtems_device_minor_number, 60 void * 61 ); 62 63 rtems_device_driver rtems_tftp_read( 64 rtems_device_major_number, 65 rtems_device_minor_number, 66 void * 67 ); 68 69 rtems_device_driver rtems_tftp_write( 70 rtems_device_major_number, 71 rtems_device_minor_number, 72 void * 73 ); 74 75 rtems_device_driver rtems_tftp_control( 76 rtems_device_major_number, 77 rtems_device_minor_number, 78 void * 79 ); 42 int rtems_bsdnet_initialize_tftp_filesystem( void ); 80 43 81 44 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.