搜索资源列表
FTDI-Chip-name
- 修改FTDI公司的USB转串口的名字,可实现多台电脑同一串口名,使用VC6.0编译-Operating FTDI USB to UART chip,we can change the name of the serial port and keep the same serial name at windows/linux/Macos/Unix etc.
2
- 实验二、进程控制(15分) 设计并实现Unix的“time”命令。“mytime”命令通过命令行参数接受要运行的程序,创建一个独立的进程来运行该程序,并记录程序运行的时间。 在Windows下实现: 使用CreateProcess()来创建进程 使用WaitForSingleObject()在“mytime”命令和新创建的进程之间同步 调用GetSystemTime()来获取时间 在Linux下实现: 使用fork()/execv()来创建进程