19
In the implementation of the Linux kernel, I came across this statement on line 89:
#define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; })
I know that in C
, symbols starting with a _
followed by a capital letter or other _
are reserved for implementation, which means this in practice?