process.h
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:3k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. /***
  2. *process.h - definition and declarations for process control functions
  3. *
  4. * Copyright (c) 1985-1990, Microsoft Corporation.  All rights reserved.
  5. *
  6. *Purpose:
  7. * This file contains the declarations and definitions for the
  8. * spawnxx, execxx, and various other process control routines.
  9. *
  10. ****/
  11. #if defined(_DLL) && !defined(_MT)
  12. #error Cannot define _DLL without _MT
  13. #endif
  14. #ifdef _MT
  15. #define _FAR_ _far
  16. #else
  17. #define _FAR_
  18. #endif
  19. /* mode values for spawnxx routines
  20.  * (only P_WAIT and P_OVERLAY are supported on MS-DOS)
  21.  */
  22. #ifndef _MT
  23. extern int _near _cdecl _p_overlay;
  24. #endif
  25. #define P_WAIT 0
  26. #define P_NOWAIT 1
  27. #ifdef _MT
  28. #define P_OVERLAY 2
  29. #else
  30. #define P_OVERLAY _p_overlay
  31. #endif
  32. #define OLD_P_OVERLAY 2
  33. #define P_NOWAITO 3
  34. #define P_DETACH 4
  35. /* action codes used with cwait() */
  36. #define WAIT_CHILD 0
  37. #define WAIT_GRANDCHILD 1
  38. /* function prototypes */
  39. #ifdef _MT
  40. int _FAR_ _cdecl _beginthread(void(_cdecl _FAR_ *)(void _FAR_ *),
  41. void _FAR_ *, unsigned, void _FAR_ *);
  42. void _FAR_ _cdecl _endthread(void);
  43. #endif
  44. void _FAR_ _cdecl abort(void);
  45. void _FAR_ _cdecl _cexit(void);
  46. void _FAR_ _cdecl _c_exit(void);
  47. int _FAR_ _cdecl cwait(int _FAR_ *, int, int);
  48. int _FAR_ _cdecl execl(const char _FAR_ *, const char _FAR_ *, ...);
  49. int _FAR_ _cdecl execle(const char _FAR_ *, const char _FAR_ *, ...);
  50. int _FAR_ _cdecl execlp(const char _FAR_ *, const char _FAR_ *, ...);
  51. int _FAR_ _cdecl execlpe(const char _FAR_ *, const char _FAR_ *, ...);
  52. int _FAR_ _cdecl execv(const char _FAR_ *,
  53. const char _FAR_ * const _FAR_ *);
  54. int _FAR_ _cdecl execve(const char _FAR_ *,
  55. const char _FAR_ * const _FAR_ *, const char _FAR_ * const _FAR_ *);
  56. int _FAR_ _cdecl execvp(const char _FAR_ *,
  57. const char _FAR_ * const _FAR_ *);
  58. int _FAR_ _cdecl execvpe(const char _FAR_ *,
  59. const char _FAR_ * const _FAR_ *, const char _FAR_ * const _FAR_ *);
  60. void _FAR_ _cdecl exit(int);
  61. void _FAR_ _cdecl _exit(int);
  62. int _FAR_ _cdecl getpid(void);
  63. int _FAR_ _cdecl spawnl(int, const char _FAR_ *, const char _FAR_ *,
  64. ...);
  65. int _FAR_ _cdecl spawnle(int, const char _FAR_ *, const char _FAR_ *,
  66. ...);
  67. int _FAR_ _cdecl spawnlp(int, const char _FAR_ *, const char _FAR_ *,
  68. ...);
  69. int _FAR_ _cdecl spawnlpe(int, const char _FAR_ *, const char _FAR_ *,
  70. ...);
  71. int _FAR_ _cdecl spawnv(int, const char _FAR_ *,
  72. const char _FAR_ * const _FAR_ *);
  73. int _FAR_ _cdecl spawnve(int, const char _FAR_ *,
  74. const char _FAR_ * const _FAR_ *, const char _FAR_ * const _FAR_ *);
  75. int _FAR_ _cdecl spawnvp(int, const char _FAR_ *,
  76. const char _FAR_ * const _FAR_ *);
  77. int _FAR_ _cdecl spawnvpe(int, const char _FAR_ *,
  78. const char _FAR_ * const _FAR_ *, const char _FAR_ * const _FAR_ *);
  79. int _FAR_ _cdecl system(const char _FAR_ *);
  80. int _FAR_ _cdecl wait(int _FAR_ *);