exit()

Terminates a manager and passes the exit code to the operating system.

Synopsis

int exit(int exitCode = 0);

Parameters

Parameter Description
exitCode ExitCode that will be passed to the operating system.

Return value

-

Error

Description

Terminates a manager and passes the exit code to the operating system.

Example

main()
{
  int exitCode = 0;
  exit(exitCode);
}

Assignment

Management of managers

Availability

CTRL, UI