vote up 1 vote down star

For some compilers, there is a packing specifier for structs, for example ::

RealView ARM compiler has "__packed"
Gnu C Compiler has "__attribute__ ((__packed__))"
Visual C++ has no equivalent, it only has the "#pragma pack(1)"

I need something that I can put into the struct definition.

Any info/hack/suggestion ? TIA...

flag

What are you trying to achieve that the pragma doesn't do? – Pete Kirkham Oct 8 at 14:04
1  
To what end? Can you provide more information about the goal you're trying to reach? – plinth Oct 8 at 14:04
I think he is cross-platform by mentioning the differing compilers. – graham.reeds Oct 8 at 14:07
I'm going to guess it's because he wants to define a macro PACKED, and then have struct foo {...} PACKED;, or PACKED(struct foo {...};) or some such. – Steve Jessop Oct 8 at 14:34
He wants to specify the packing of a member of a struct. #pragma pack would only effect the struct, not a solo member. – Caspin Oct 8 at 15:23
show 1 more comment

3 Answers

vote up 2 vote down check

I don't know a slick way of doing it, but you could possibly do something horrible like this:

#include "packed.h"
struct Foo { /* members go here */ } PACKED;
#include "endpacked.h"

Then for MSVC, packed.h:

#define PACKED
#pragma pack(push,1)

endpacked.h

#pragma pack(pop)
#undef PACKED

For gcc, packed.h:

#define PACKED __attribute__ ((__packed__))

endpacked.h:

#undef PACKED

Fundamentally, packing is too platform-dependent. Suppose your packed struct has 8-bit fields in it, and consider some system with a 16-bit byte. It can't have a struct representing your data just by packing - you'd have to know how 8-bit bytes are converted to 16-bit bytes when transferred between the two systems. The struct on the 16bit machine might need bitfields, in which case you'd have to know how the implementation lays them out.

So if the code is intended to be generally portable, you may just have to define whatever packed structures you need in a platform-specific section of your header file. Or rather, structure your code so that a future port can do that if it has to.

link|flag
vote up 3 vote down

Why do you need something to go in the struct?

I think #pragma pack(1) is the same, or am I missing something?

You can do this:

struct Foo
{
#pragma push(1)
int Bar;
#pragma pop
};

But it looks ugly.

link|flag
5  
It is actually #pragma pack(push, 1) and #pragma pack(pop). – Timbo Oct 8 at 14:05
Yeah it's something like that - I am using VB currently. – graham.reeds Oct 8 at 14:06
vote up 0 vote down

I do not believe this is possible. If it where it would be an argument to __declspec. The visual studio documentation lists these are possible __delcspec uses:

  • align(#)
  • allocate("segname")
  • appdomain
  • deprecated
  • dllimport
  • dllexport
  • jitintrinsic
  • naked
  • noalias
  • noinline
  • noreturn
  • nothrow
  • novtable
  • process
  • property({get=get_func_name|,put=put_func_name})
  • restrict
  • selectany
  • thread
  • uuid("ComObjectGUID")

Notably pack is missing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.