Changeset 9700578 in rtems for c/src/lib/libbsp/i386/go32
- Timestamp:
- Oct 30, 1995, 9:54:45 PM (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c4808ca
- Parents:
- ea74482
- Location:
- c/src/lib/libbsp/i386/go32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i386/go32/clock/ckinit.c
rea74482 r9700578 109 109 } 110 110 111 void ReInstall_clock(112 rtems_isr_entry clock_isr113 )114 {115 rtems_unsigned32 isrlevel = 0;116 117 rtems_interrupt_disable( isrlevel );118 (void) set_vector( clock_isr, CLOCK_VECTOR, 1 );119 rtems_interrupt_enable( isrlevel );120 }121 122 111 void Clock_exit( void ) 123 112 { … … 162 151 ) 163 152 { 153 rtems_unsigned32 isrlevel; 164 154 rtems_libio_ioctl_args_t *args = pargp; 165 155 … … 178 168 else if (args->command == rtems_build_name('N', 'E', 'W', ' ')) 179 169 { 180 ReInstall_clock(args->buffer); 170 rtems_interrupt_disable( isrlevel ); 171 (void) set_vector( args->buffer, CLOCK_VECTOR, 1 ); 172 rtems_interrupt_enable( isrlevel ); 181 173 } 182 174 -
c/src/lib/libbsp/i386/go32/startup/bspstart.c
rea74482 r9700578 130 130 { 131 131 int stdin_fd, stdout_fd, stderr_fd; 132 int error_code; 133 134 error_code = 'S' << 24 | 'T' << 16; 132 135 133 136 if ((stdin_fd = __open("/dev/console", O_RDONLY, 0)) == -1) 134 rtems_fatal_error_occurred( 'STD0');137 rtems_fatal_error_occurred( error_code | 'D' << 8 | '0' ); 135 138 136 139 if ((stdout_fd = __open("/dev/console", O_WRONLY, 0)) == -1) 137 rtems_fatal_error_occurred( 'STD1');140 rtems_fatal_error_occurred( error_code | 'D' << 8 | '1' ); 138 141 139 142 if ((stderr_fd = __open("/dev/console", O_WRONLY, 0)) == -1) 140 rtems_fatal_error_occurred( 'STD2');143 rtems_fatal_error_occurred( error_code | 'D' << 8 | '2' ); 141 144 142 145 if ((stdin_fd != 0) || (stdout_fd != 1) || (stderr_fd != 2)) 143 rtems_fatal_error_occurred( 'STIO');146 rtems_fatal_error_occurred( error_code | 'I' << 8 | 'O' ); 144 147 } 145 148
Note: See TracChangeset
for help on using the changeset viewer.