flag (ULONG) - input

      Thread flags.

      Possible values are a combination of the following:

      CREATE_READY (0x00000000)

        The new thread starts immediately.
      CREATE_SUSPENDED (0x00000001)
        The thread is created in the suspended state, and the creator of the thread must issue DosResumeThread to start the new thread's execution.
      STACK_SPARSE (0x00000000)
        The system uses the default method for initializing the thread's stack.
      STACK_COMMITED (0x00000002)
        The system precommits all the pages in the stack. One page is 4KB.


      [Back] [Next]