Changeset 3a4ae6c in rtems for c/src/lib/libbsp/hppa1.1
- Timestamp:
- 09/11/95 19:35:39 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ced11f99
- Parents:
- 5072b07
- Location:
- c/src/lib/libbsp/hppa1.1/simhppa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/hppa1.1/simhppa/include/bsp.h
r5072b07 r3a4ae6c 68 68 69 69 /* 70 * Todo: this should be put somewhere else71 */72 73 #undef CLOCK_DRIVER_TABLE_ENTRY74 #define CLOCK_DRIVER_TABLE_ENTRY { Clock_initialize, NULL, NULL, NULL, NULL, Clock_control }75 rtems_device_driver Clock_control(76 rtems_device_major_number major,77 rtems_device_minor_number minor,78 void *pargp79 );80 81 /*82 70 * We printf() to a buffer if multiprocessing, *or* if this is set. 83 71 * ref: src/lib/libbsp/hppa/simhppa/iosupp/consupp.c … … 85 73 86 74 extern int use_print_buffer; 75 76 /* 77 * Device Driver Table Entries 78 */ 87 79 88 80 /* … … 93 85 #define CONSOLE_DRIVER_TABLE_ENTRY \ 94 86 { tty_initialize, tty_open, tty_close, tty_read, tty_write, tty_control } 87 88 /* 89 * NOTE: Use the standard Clock driver entry 90 */ 95 91 96 92 /* -
c/src/lib/libbsp/hppa1.1/simhppa/startup/bspstart.c
r5072b07 r3a4ae6c 132 132 133 133 /* 134 * Init the RTEMS libio facility to provide UNIX-like system134 * Init the RTEMS libio facility to provide UNIX-like system 135 135 * calls for use by newlib (ie: provide __open, __close, etc) 136 136 * Uses malloc() to get area for the iops, so must be after malloc init
Note: See TracChangeset
for help on using the changeset viewer.