LINUX.ORG.RU

Извините, похоже это прибамбас gcc компилятора
для упаковки структур, данных.

-Wpacked
Warn if a structure is given the packed attribute, but the packed attribute has no effect on the layout or size of the structure.
Such structures may be mis-aligned for little benefit.  For instance, in this code, the variable "f.x" in "struct bar" will be misaligned even though "struct bar" does not itself have the packed attribute:
struct foo {
   int x;
   char a, b, c, d;
} __attribute__((packed));
struct bar {
   char z;
   struct foo f;
};

anonymous
()
Ответ на: комментарий от anonymous
Ответ на: комментарий от aton

Спасибо. Тяжело быть бестолковым да еще и без беглого английского. Меня хватило пока только на упакованные данные в структурах. Бду смотреть, спасибо.

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.