microZEUS
The whole stack, hand-drawn.

◄ Wiki / OS

uid

A number identifying which user an account or process belongs to.

On Unix-like systems every user has a numeric user ID (uid), and every running process carries the uid of whoever started it. The uid is what the system checks to decide who owns a file and what a process is allowed to do. mzOS2 implements a uid model with login, meaning it distinguishes users and authenticates them.

See also

  • userspaceThe world where ordinary programs run, kept separate from the privileged core of the operating system.
  • waitpidA system call a parent process uses to wait for and collect the exit status of its child.

Referenced by

userspace