社区
C++ 语言
帖子详情
头文件process.h?
Manny_Zhong
2004-11-19 05:42:58
各位大师们,我想知道process.h 主要包含了处理哪类问题的函数呀
那些函数都是什么呀,请帮我列出来
...全文
427
8
打赏
收藏
头文件process.h?
各位大师们,我想知道process.h 主要包含了处理哪类问题的函数呀 那些函数都是什么呀,请帮我列出来
复制链接
扫一扫
分享
转发到动态
举报
写回复
配置赞助广告
用AI写文章
8 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
Manny_Zhong
2004-12-14
打赏
举报
回复
好吧,如果哪位在网上找到详细的说明的话,给我个网址,我手头上没有Msnd,谢谢了
hcj2002
2004-11-28
打赏
举报
回复
你说得还不错,不过我还很想知道,这个头文件中的每个函数都是干什么的,请解释一下,谢谢!
-------------------------------------------------------------------------------------
哪就得查一查MSDN :(
Manny_Zhong
2004-11-28
打赏
举报
回复
你说得还不错,不过我还很想知道,这个头文件中的每个函数都是干什么的,请解释一下,谢谢!
Manny_Zhong
2004-11-28
打赏
举报
回复
好了我知道了,谢谢你了
Biren8409
2004-11-24
打赏
举报
回复
/* process.h
Symbols and structures for process management.
Copyright (c) Borland International 1987,1988
All Rights Reserved.
*/
#if __STDC__
#define _Cdecl
#else
#define _Cdecl cdecl
#endif
/* Modes available as first argument to the spawnxx functions. */
#define P_WAIT 0 /* child runs separately, parent waits until exit */
#define P_NOWAIT 1 /* both concurrent -- not implemented */
#define P_OVERLAY 2 /* child replaces parent, parent no longer exists */
/* MSDOS does not have any abstract identifier for a process, but the
process Program Segment Prefix location provides a similar token.
*/
#ifndef _psp
extern unsigned _Cdecl _psp; /* provided unconditionally in dos.h */
#endif
#define getpid() (_psp)
void _Cdecl abort(void);
int _Cdecl execl(char *path, char *arg0, ...);
int _Cdecl execle(char *path, char *arg0, ...);
int _Cdecl execlp(char *path, char *arg0, ...);
int _Cdecl execlpe(char *path, char *arg0, ...);
int _Cdecl execv(char *path, char *argv[]);
int _Cdecl execve(char *path, char *argv[], char **env);
int _Cdecl execvp(char *path, char *argv[]);
int _Cdecl execvpe(char *path, char *argv[], char **env);
void _Cdecl exit(int status);
void _Cdecl _exit(int status);
int _Cdecl spawnl(int mode, char *path, char *arg0, ...);
int _Cdecl spawnle(int mode, char *path, char *arg0, ...);
int _Cdecl spawnlp(int mode, char *path, char *arg0, ...);
int _Cdecl spawnlpe(int mode, char *path, char *arg0, ...);
int _Cdecl spawnv(int mode, char *path, char *argv[]);
int _Cdecl spawnve(int mode, char *path, char *argv[], char **env);
int _Cdecl spawnvp(int mode, char *path, char *argv[]);
int _Cdecl spawnvpe(int mode, char *path, char *argv[], char **env);
int _Cdecl system(const char *command);
你看一下吧
Manny_Zhong
2004-11-24
打赏
举报
回复
能不能详细一点呀,我找了好久都没有找到关于这个头文件的介绍,谢谢了!
quieter
2004-11-19
打赏
举报
回复
说明进程管理的各个函数,spawn…和exec …函数的结构说明。
evilch
2004-11-19
打赏
举报
回复
你不回自己去看头文件?
C++
头文件
一览表.pdf
C++
头文件
一览表.pdf
psapi.h
头文件
(适合VC6.0版)
包含:psapi.hpsapi.dllpsapi.lib
C语言
头文件
库汇总
C语言
头文件
库汇总,包含所有.h文件,解压后放入相应文件夹内即可。
实验二说明文档1
实验二说明文档1
c++常用函数所在
头文件
一览
c++常用函数所在的
头文件
,对C++很有用的。
C++ 语言
65,210
社区成员
250,518
社区内容
发帖
与我相关
我的任务
C++ 语言
C++ 语言相关问题讨论,技术干货分享,前沿动态等
复制链接
扫一扫
分享
社区描述
C++ 语言相关问题讨论,技术干货分享,前沿动态等
c++
技术论坛(原bbs)
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
请不要发布与C++技术无关的贴子
请不要发布与技术无关的招聘、广告的帖子
请尽可能的描述清楚你的问题,如果涉及到代码请尽可能的格式化一下
试试用AI创作助手写篇文章吧
+ 用AI写文章