repo.or.cz
/
opsoft_test.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
current version
[opsoft_test.git]
/
gclib2
/
include
/
djob_t.h
blob
ab91c7e009de589d73ae1657e8801be1b8e1181d
1
/*
2
* (c) Oleg Puchinin 2006
3
* graycardinalster@gmail.com
4
*
5
*/
6
7
#ifndef DEFINE_DJOB_T_H
8
#define DEFINE_DJOB_T_H
9
10
/// Контрольная структура дочернего процесса.
11
struct
__djob_t
12
{
13
__pid_t pid
;
14
int
exit_status
;
15
char
status_ready
;
16
char
*
user_data
;
17
int
stdIn
;
18
int
stdOut
;
19
int
stdErr
;
20
int
pipe_in
[
2
];
21
int
pipe_out
[
2
];
22
int
pipe_err
[
2
];
23
char
*
shared_mem
;
24
int
shm_size
;
25
char
child
;
26
char
*
otmp_name
;
27
char
*
etmp_name
;
28
};
29
30
#endif
31