Liu
Liu

Reputation: 655

What is meaning of the '_attribute_((aligned(4)));' in the first line?

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 until none remain */
while (i < len) {
struct inotify_event *event =
(struct inotify_event *) &buf[i];
Monitoring File Events | 239
printf ("wd=%d mask=%d cookie=%d len=%d dir=%s\n",
event->wd, event->mask,
event->cookie, event->len,
(event->mask & IN_ISDIR) ? "yes" : "no");
/* if there is a name, print it */
if (event->len)
printf ("name=%s\n", event->name);
/* update the index to the start of the next event */
i += sizeof (struct inotify_event) + event->len;
}

Upvotes: 1

Views: 2911

Answers (3)

Codo
Codo

Reputation: 78795

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.

Upvotes: 2

Alok Save
Alok Save

Reputation: 206498

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.

Upvotes: 2

Brett Walker
Brett Walker

Reputation: 3576

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.

Upvotes: 1

Related Questions