This wiki is out of date, use the continuation of this wiki instead

Exists

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 14:00, 19 April 2007 (edit)
Sandman (Talk | contribs)
m (Definition)
← Previous diff
Revision as of 00:36, 2 May 2007 (edit) (undo)
Sandman (Talk | contribs)

Next diff →
Line 3: Line 3:
==Definition== ==Definition==
-'''INT''' Exists ( <'''INT''' processID|processType> )+'''INT''' Exists ( <'''INT''' processID|processTypeID> )
-Checks if a [[process]] is alive, using its [[processID]] or [[processType]].+Checks if a [[process]] is alive, using its [[processID]] or checks if there is a process alive of a certain [[processType]], using its [[processTypeID]].
== Parameters == == Parameters ==
{| {|
-| '''INT''' processID or processType || - The ID or Type of the process to be checked.+| '''INT''' processID<nowiki>|</nowiki>processTypeID || - The ProcessID of the process or the ProcessTypeID of the type of processes to be checked.
|} |}
Line 15: Line 15:
'''INT''' : The result of the check '''INT''' : The result of the check
{| {|
-| 0 (false) || - The process with given processID is not alive or there are no processes alive of the given type.+| 0 (false) || - The process with given processID is not alive or there are no processes alive of the given processTypeID.
|- |-
-| 1 (true) || - The process with given processID is alive or there is at least one process alive of the given type.+| 1 (true) || - The process with given processID is alive or there is at least one process alive of the given processTypeID.
|} |}

Revision as of 00:36, 2 May 2007


Contents

Definition

INT Exists ( <INT processID|processTypeID> )

Checks if a process is alive, using its processID or checks if there is a process alive of a certain processType, using its processTypeID.

Parameters

INT processID|processTypeID - The ProcessID of the process or the ProcessTypeID of the type of processes to be checked.

Returns

INT : The result of the check

0 (false) - The process with given processID is not alive or there are no processes alive of the given processTypeID.
1 (true) - The process with given processID is alive or there is at least one process alive of the given processTypeID.

Example

Program example;
Begin

    Proc();

    if(exists(id))
        say("I exist!");
    end
    if(exists(type main))
        say("I exist!");
    end
    if(exists(0))
        say("0 doesn't exist");
    end
    if(exists(type proc))
        say("Proc exists!");
    else
        say("Proc doesn't exist!");
    end

    Loop
        frame;
    End
End

Process Proc()
Begin
    Loop
        frame;
    End
End

Used in example: Say()

Personal tools