在linux中用C语言调用另外一个进程的简单办法就事调用 system() 函数.
但需要注意的是 system 并非直接调用指定的进程,而是调用 /bin/sh 来
运行命令. 这使得返回值并非被调用进程的返回值.
宏 WIFEXITED 和 WEXITSTATUS 接合起来可以判断被调用进程的返
回值.

  1. int ret = system(sCMD.c_str());
  2. if (WIFEXITED(ret)) {
  3.     int nret = (int)(char)(WEXITSTATUS(ret));
  4.     if (nret==127) {
  5.        cerr << "unable to run " << sCMD << endl;
  6.        return;
  7.     }
  8.     // nret is the return value of calling sCMD
  9.     // now do something according to nret.
  10. else {
  11.     cerr << "sCMD is abnormally terminated" << endl;
  12. }


而在Windows中, 结合 CreateProcess 和 GetExitCodeProcess 来获得子进程的返回值.

Logo

更多推荐