I saw the following example in the C standard draft (n1570):
$3.14 paragraph 4 : A structure declared as:
struct
{
char a;
int b:5, c:11, :0, d:8;
struct
{
int ee:8;
} e;
}
So, What does :0
mean?
I know what a bit-field is, but :0
is without a name, which I do not understand.
What is the purpose of :0
without any identifier?
First of all, let's see chapter §6.7.2.1, Structure and union specifiers, P11. It says,
But, in case, we explicitly want two consecutive bit-field members, which "might be" packed into a single memory location to reside on separate memory location (i.e., addressable storage unit ), the above is the way to force it.
The next paragraph, P12, mentions,
following your example, this makes sure that the two bit-field members surrounding the
:0
will be residing in separate memory location (not inside a single addressable storage unit, even if sufficient memory remains to pack them into one). This has the similar effect of having a non-bit-field member in between two bit-fields, to force the separation of the memory location.Quoting
C11
, chapter §3.14,NOTE 2
(emphasis mine)Also, regarding the usage ("why it is needed" part)
Addendum:
Regarding the concurrency part, from NOTE 1
and, from chapter §5.1.2.4/P1,
So, this is a theoretically viable option, as per the standard.