char buf[BUF_LEN]_attribute_((aligned(4)));
ssize_t len, i = 0;
/* read BUF_LEN bytes\' worth of events */
len = read (fd, buf, BUF_LEN);
/* loop over every read event u
char buf[BUF_LEN]_attribute_((aligned(4)));
It specifies a minimum alignment for the variable buf
, measured in bytes.
It causes the compiler to allocate the variable buf
on a 4-byte boundary.
This should be a good read.
The instruction tells the compiler to put the buffer on an address that's a multiple of four bytes.
On some processors, this has no effect, on other processors it speeds up the memory access if you don't read a single byte at a time but rather 2, 4 or 8 (16, 32 and 64 bit) and on some processors it is even required for 2, 4 or 8 byte access (otherwise a bus error occurrs).
In this case, this is indeed relevant since the buffer is later access as series of inotify_event
structs, which contain members that are accessed as 16, 32 or 64 bit values.
This aligns the memory allocated to buf on a 4-byte boundary. This can speed memory transfers between the CPU and main memory among other things.