- This wiki is out of date, use the continuation of this wiki instead
ProcessTypeID
From FenixWiki
(Difference between revisions)
Revision as of 13:52, 23 March 2007 (edit) 130.89.160.132 (Talk) ← Previous diff |
Current revision (11:03, 20 April 2007) (edit) (undo) Sandman (Talk | contribs) m |
||
(4 intermediate revisions not shown.) | |||
Line 1: | Line 1: | ||
- | A ProcessTypeID is a unique identification code, for a | + | [[Category:general]] |
+ | |||
+ | == Definition == | ||
+ | |||
+ | A ProcessTypeID is a unique identification code, for a [[processType]]. A ProcessTypeID is smaller than 65536 (2^16). | ||
+ | |||
+ | == Example == | ||
+ | Kill all SpaceShip()s (see [[process]]): | ||
+ | <pre> | ||
+ | Begin | ||
+ | signal(type SpaceShip,s_kill); | ||
+ | End | ||
+ | </pre> | ||
+ | [[signal]]() signals all [[process|processes]] of [[processType]] SpaceShip the [[signals|signal]] to [[die]]. This is done by using the [[constant]] [[s_kill]] as the signal. |
Current revision
[edit] Definition
A ProcessTypeID is a unique identification code, for a processType. A ProcessTypeID is smaller than 65536 (2^16).
[edit] Example
Kill all SpaceShip()s (see process):
Begin signal(type SpaceShip,s_kill); End
signal() signals all processes of processType SpaceShip the signal to die. This is done by using the constant s_kill as the signal.