Client Management Suite

 View Only
  • 1.  TID Codes and Meanings

    Posted Jun 25, 2012 11:22 AM

    Is there a list of the TID codes that I can take a look at to help better resolve problems I am having.  I have done multiple searches and cant find any lists to deicpher what each one means.



  • 2.  RE: TID Codes and Meanings

    Posted Jul 04, 2012 08:08 AM

    There is no specific meaning to a specific thread ID because a thread is just a line of activity that is part of a process.

    Imagine a process like "quality control". A thread would be a specific "qualitiy control inspector" with an identification number. But they are all doing the same.

    In more technical words:

    A proccess is an entity of your operating system.

    • Exetutable program, that defines code and global data
    • has a prive address space
    • Code and data are accessable via this address space
    • Set of resources (opened files/objects)
    • Set of threads

    A thread is a line of activity within a process.

    • processor context (register contents etc.)
    • Stack (usually two separated, one for user and one for kernel mode)
    • small private data range
    • Threads of a process use the processes address space and resources.

    Example:

    If you request a web page from the w3wp process it will "summon" a thread and let it do the work of processing your request that finally will deliver you the page.

    I hope ths helps you unterstanding TID