Context(上下文)

In computer science, a task context (process, thread) is the minimal set of data used by this task that must be saved to allow a task interruption at a given date, and a continuation of this task at the point it has been interrupted and at an arbitrary future date. The concept of context assumes significance in the case of interruptible tasks, wherein upon being interrupted the processor saves the context and proceeds to serve the interrupt service routine. Thus the smaller the context the smaller is the latency.

These data are located in:

   Processor registers
   Memory used by the task
   On some OS, control registers used by the system to manage the task


From: http://en.wikipedia.org/wiki/Context_%28computing%29

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章