我正在尝试为 QNX 编写简单的应用程序。我安装了 qnx momentics ide,将其连接到 QNX 虚拟机,并尝试执行“top”命令
#include <cstdlib>
#include <iostream>
#include <process.h>
#include <string>
using namespace std;
int main(int argc, char *argv[]) {
system("top");
return EXIT_SUCCESS;
}
而且我正在获得并获得结果,直到我在 QNX 虚拟机中手动终止“顶级”进程。但我只需要1次。有任何想法吗 ?