gcc 4.4.4 c89

I have the following structure.

struct device_sys
{
    char device[STRING_SIZE];
    int id;
    char category;
};

int main(void)
{
    struct device_sys dev_sys[NUM_DEVICES];

    memset(dev_sys, 0, (size_t)NUM_DEVICES * sizeof(dev_sys));

    return 0; 
}

I get a stack dump when I call memset. Is this not the correct way to initialize an structure array?

Many thanks for any advice,

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

Either

memset(&dev_sys, 0, sizeof dev_sys);

or

memset(dev_sys, 0, NUM_DEVICES * sizeof(struct device_sys));

Or, if you prefer

memset(dev_sys, 0, NUM_DEVICES * sizeof *dev_sys);

but not what you have in your original variant.

Note, that in your specific case in all variants you can use either &dev_sys or dev_sys as the first argument. The effect will be the same. However, &dev_sys is more appropriate in the first variant, since if follows the memset(ptr-to-object, object-size) idiom. In the second and third variants it is more appropriate to use dev_sys (or &dev_sys[0]), since it follows the memset(ptr-to-first-element, number-of-elements * element-size) idiom.

P.S. Of course, instead of using all that hackish memset trickery, in your particular case you should have just declared your array with an initializer

struct device_sys dev_sys[NUM_DEVICES] = { 0 };

No memset necessary.

link|improve this answer
OP said c89, isn't that initializer c99? – bstpierre Aug 2 '10 at 16:34
@bstpierre: No. Why? Aggregate initializers were in C since the beginning of times (well, almost). – AndreyT Aug 2 '10 at 16:52
for your first example. &dev_sys. Isn't that the (address of). Like the address of the actual pointer. The dev_sys is already at pointer. If I have declared like this struct device *dev_sys. For the first argument I would have just sent the pointer dev_sys. Thanks – ant2009 Aug 2 '10 at 17:12
1  
@robUK: dev_sys is not a pointer, dev_sys is an array. While it might "pretend" to be a pointer in some contexts, it is not really a pointer. &dev_sys gives you a pointer to the entire array, which is numerically the same as the pointer to its first element (which in turn is why you can use either with the same effect). If you declared it as struct device *dev_sys (a pointer), the &dev_sys wouldn't work. But when it is declared as an actual array (as in your OP), the &dev_sys will work. – AndreyT Aug 2 '10 at 17:26
@AndreyT - sorry, I was confusing that with the gcc warning "missing braces around initializer" that you'll get with that initializer. You're right, no syntax change there. – bstpierre Aug 2 '10 at 18:37
show 1 more comment
feedback

There's a typo in your code. Fix:

memset(dev_sys, 0, (size_t)NUM_DEVICES * sizeof(struct device_sys));

Picking good names avoid half the bugs. I'd recommend "devices".

link|improve this answer
1  
probably even safer way: memset(dev_sys, 0, sizeof(dev_sys)); – Drakosha Aug 2 '10 at 16:05
This is only valid in C++. – Lucas Aug 2 '10 at 16:20
Yes, corrected. – Hans Passant Aug 2 '10 at 16:22
feedback

You have to pass the sizeof operator the type and not the variable.

memset(dev_sys, 0, (size_t)NUM_DEVICES * sizeof(struct device_sys));

I prefer to use typedef for the struct.

typedef struct tag_device_sys
{
    char device[STRING_SIZE];
    int id;
    char category;
} device_sys;

The you can use memset as follows:

    memset(dev_sys, 0, (size_t)NUM_DEVICES * sizeof(device_sys));
link|improve this answer
feedback

For an array, sizeof gets you the entire size of the array, not the size of an individual element. The sizeof operator is one of the few places where an array is not treated as a pointer to its first element.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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