company logo

Application :: registerProcess - Register process

In order to manage multi-thread applications properly, the application process or thread should be registered. Only, when registering the process, the thread model defined in the Thread_Model option can be handled properly.

Implementation overview

Implementation details

  1. Register process or thread
    Application  :: registerProcess (  )

    The function registers a process or thread with the thread model set in the Thread_Model option variable.

  2. to list
  3. Register multiple thread process
    Application  :: registerProcess ( bool bEnable )

    The function should be called for a main process only, since it will set the thread model option. When passing true in bEnable, a multiple thread process will be enabled. Passing false will register a single thread process.

    • bEnable - Enable resource

      In order to enable the referenced resource true should be passed. Passing false will disable the resource.

  4. to list