MS-DOS:修订间差异
跳转到导航
跳转到搜索
→DOS 内核
小 (Placeholder) |
正义羊-JRJSheep(讨论 | 贡献) (→DOS 内核) |
||
| 第 41 行: | 第 41 行: | ||
从 [[Windows 9x 中的 MS-DOS|MS-DOS 7]] 开始,内核作为配置文件被合并到 <code>IO.SYS</code> 和 <code>MSDOS.SYS</code>。 | 从 [[Windows 9x 中的 MS-DOS|MS-DOS 7]] 开始,内核作为配置文件被合并到 <code>IO.SYS</code> 和 <code>MSDOS.SYS</code>。 | ||
DOS 内核是 MS-DOS 的更高层,提供包括进程控制、内存管理和文件系统访问在内的服务。它等效于 CP/M 的基本磁盘操作系统组件。 | |||
Process control functionality is very limited due to the system's single-tasking nature. A program can execute another program, although control will not return to the original program until the other program exits. A program can, however, choose to terminate and stay resident (TSR), which leaves a portion of the program present in memory. If the program hooks an interrupt handler before terminating this way, the resident part can get called even when other programs are running, creating an illusion of multitasking. | Process control functionality is very limited due to the system's single-tasking nature. A program can execute another program, although control will not return to the original program until the other program exits. A program can, however, choose to terminate and stay resident (TSR), which leaves a portion of the program present in memory. If the program hooks an interrupt handler before terminating this way, the resident part can get called even when other programs are running, creating an illusion of multitasking. | ||