码迷,mamicode.com
首页 > 其他好文 > 详细

createprocess并行运算

时间:2014-05-05 10:31:18      阅读:412      评论:0      收藏:0      [点我收藏+]

标签:style   blog   tar   color   width   int   

#include "stdafx.h"
#include "windows.h"
#include <iostream>


using namespace std;


int _tmain(int argc, _TCHAR* argv[])

{

  STARTUPINFO si;
  PROCESS_INFORMATION pi;
  TCHAR command[MAX_PATH];
  sprintf_s(command,"windows_study.exe");//保持本程序的exe文件名在command中

  ZeroMemory( &si, sizeof(si) );
  si.cb = sizeof(si);
  ZeroMemory( &pi, sizeof(pi) );


  if(! CreateProcess(NULL,
  command, 
  NULL,
  NULL,
  FALSE,
  0,
  NULL,
  NULL,
  &si,
  &pi))
  {
  cout<<"createprocess failed"<<endl;
  }

  cout<<"aa"<<endl;

  system("pause");

}

效果如图:

 bubuko.com,布布扣

 

 

 

createprocess并行运算,布布扣,bubuko.com

createprocess并行运算

标签:style   blog   tar   color   width   int   

原文地址:http://www.cnblogs.com/duyy/p/3707899.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!