Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the U Area equivalent data structure in Linux?

Tags:

linux

unix

We have U Area in UNIX which holds the information related to a process. What is the data structure analogous to U Area, in Linux?

Also, is it possible to view the contents held by U Area in UNIX ( and Linux also )?

like image 710
shar Avatar asked Oct 05 '22 15:10

shar


1 Answers

In Linux, the contents of the U area are stored in a task_struct with the rest of the process information.

To my knowledge, it can only be accessed through the proc filesystem.

like image 157
Frédéric Hamidi Avatar answered Oct 13 '22 11:10

Frédéric Hamidi