blob: 65e48e120121a229531d983dc00f8e05dca64111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
PRProcessAttr
=============
Represents the attributes of a new process.
Syntax
------
::
#include <prproces.h>
typedef struct PRProcessAttr PRProcessAttr;
Description
-----------
This opaque structure describes the attributes of a process to be
created. Pass a pointer to a :ref:`PRProcessAttr` into ``PR_CreateProcess``
when you create a new process, specifying information such as standard
input/output redirection and file descriptor inheritance.
|