repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use dmb/dsb from asm/cpu.h file.
[AROS.git]
/
workbench
/
libs
/
muimaster
/
classes
/
process_private.h
blob
7eb6703d7141703e894cb5bfaff46a203d8cb132
1
#ifndef _PROCESS_PRIVATE_H_
2
#define _PROCESS_PRIVATE_H_
3
4
/*** Instance data **********************************************************/
5
struct
Process_DATA
6
{
7
Object
*
self
;
8
BOOL autolaunch
;
9
STRPTR name
;
10
LONG priority
;
11
struct
IClass
*
sourceclass
;
12
Object
*
sourceobject
;
13
ULONG stacksize
;
14
struct
Process
*
task
;
15
ULONG kill
;
16
};
17
18
#endif
/* _PROCESS_PRIVATE_H_ */