Can someone tell me what NR means? for example: #define _NR_exit
I look everywhere, but I could not find the answer.
This applies to Linux 0.01 (see include/unistd.h).
include/unistd.h
In kernel/system_call.sis the line:
kernel/system_call.s
nr_system_calls = 67
and include/linux/sched.hhas:
include/linux/sched.h
#define NR_TASKS 64
and include/linux/fs.hhas a whole bunch of other constants NR_xxx.
include/linux/fs.h
NR_xxx
In all these cases, "nr" is explicitly used as an abbreviation for "number".
, , : " NumbeR?" .
_NR - .. :)