The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    What is a traced process ?

    Discussion in 'Linux Compatibility and Software' started by wearetheborg, Feb 12, 2009.

  1. wearetheborg

    wearetheborg Notebook Virtuoso

    Reputations:
    1,282
    Messages:
    3,122
    Likes Received:
    0
    Trophy Points:
    105
    Sometimes, firefox hangs and its status in top changes to "T".
    Actually, top shows two firefox processes, one "T" and one "S".

    Apparently T means a traced process :confused:

    CTRL-C then does not work to kill firefox (I run it froom command line), I have to do kill -9 for both processes.
     
  2. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    A process is usually traced for the purposes of debugging. T can also mean stopped, which is perhaps more likely in this case.

    You might want to try a kill -INT instead of kill -9 since your cache and preferences might become corrupted with a sigkill.
     
  3. wearetheborg

    wearetheborg Notebook Virtuoso

    Reputations:
    1,282
    Messages:
    3,122
    Likes Received:
    0
    Trophy Points:
    105
    kill -INT sometimes does not work.
    Isnt kill -INT equivalent to CTRL-C ?
     
  4. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    Yes, Ctrl+C produces a SIGINT, but you should refrain from using SIGKILL unless absolutely necessary.