I wrote some code that uses memset to initialize arrays of built-in types like ints, shorts, floats and, more importantly, pointers, like

typedef void* slot_t;
#define EMPTY_SLOT (slot_t)NULL
...
int n = 10;
slot_t slots[] = (slot_t[])malloc(sizeof(slot_t)*n)
memset(slots,(int)EMPTY_SLOT,n*sizeof(slot_t));

this code works nicely in Linux32 where memset accepts 32-bit ints as second argument (i.e. initializing element), but it's not so for Linux64, where sizeof(slot_t)>sizeof(int), and, IIRC, in other platforms where memset accepts char as its second argument. I have yet to verify that any of the bugs I'm experiencing in my project is due to this but, anyway, to be sure, it would be better to adopt a safer, but still "generic", method, if exists. Do you know any?

link|improve this question
feedback

5 Answers

Use

slot_t slots[] = (slot_t[])calloc(n,sizeof(slot_t))

it's clean memory by itself

link|improve this answer
calloc fills the returned block with 0, so if that's what's needed - that should be enough. – littleadv Aug 5 '11 at 23:48
Don't cast the return value from malloc(). It can hide bugs and doesn't provide you any value unless you plan to port to C++. – Carl Norum Aug 5 '11 at 23:50
That doesn't actually compile (neither does the original line with malloc). – Omri Barel Aug 5 '11 at 23:52
Yeah, the OP needs a * and so does this answer. – Carl Norum Aug 5 '11 at 23:53
1  
@omrib - what would you use? – Carl Norum Aug 5 '11 at 23:59
show 9 more comments
feedback

memset fills memory with bytes. See here.

If you want a generic solution - you should write a loop that would iterate and fill. If you're filling with 0, then it doesn't matter what type of data it is and what size it has - just fill 0 with siezof of the whole array (sizeof(slot_t)*n). Since you're using NULL, which doesn't have to be 0 (although usually is) - I suggest taking the safer "loop" approach.

link|improve this answer
feedback

memset really wants a character as the value to fill the memory with -- note that it fills bytewise. So just say 0. You can put that in your EMPTY_SLOT macro if you want. Alternatively, use calloc().

(Also, the return type of your malloc() call should be slot_t *.)

link|improve this answer
calloc() has the same issue as memset(): it sets the target to all-bits-zero, but the language doesn't guarantee that that's the representation for a null pointer. And the best idiom for the malloc call is slot_t *slots = malloc(n * sizeof *slots). (Of course you should immediately verify that slots != NULL.) – Keith Thompson Aug 5 '11 at 23:48
@Keith: If you want value-wise filling, you need to iterate over the array and assign values -- I don't think there's any arbitrary-sized flood-fill primitive. – Kerrek SB Aug 5 '11 at 23:53
feedback

The second argument to memset() is of type int, but it specifies a value to be stored in each byte of the destination -- which means that, if sizeof(int) == 4, you're zeroing four times as much memory as you should be.

The way to zero-fill the slots array would be

memset(slots, 0, n * sizeof *slots);

(assuming slots is correctly declared as a pointer rather than as an array), except that a null pointer representation isn't guaranteed to be all-bits-zero (it probably is, but you shouldn't depend on it).

If you want complete portability, you'll need to write a loop to set each element to NULL.

If you're willing to assume that null pointers are all-bits-zero, you can use memset -- but be sure to call it as I specified.

link|improve this answer
slots is dynamically allocated, running sizeof on it will yield a size of a pointer. – littleadv Aug 5 '11 at 23:48
@littleadv: Fixed (though the original code attempted to declare slots as an array, which threw me off). – Keith Thompson Aug 5 '11 at 23:52
feedback

If you want a completely generic function that will set an array of objects to the values specified by some 'template' object, you could use a function like the following:

void init_array( void* arr, size_t nmemb, size_t size, void const* initializer)
{
    size_t i = 0;

    char* p = (char *) arr;

    for (i = 0; i < nmemb; ++i) {
        memcpy( p, initializer, size);
        p += size;
    }
}

Then your allocation/initialization code might look like:

typedef void* slot_t;

static const slot_t empty_slot = NULL;    // or make this a global if that 
                                          //  works better for your scenario

int n = 10;

// note: your original `malloc()` line:
//
//      slot_t slots[] = (slot_t[])malloc(sizeof(slot_t)*n)
//
// wouldn't work, as you can't assign to an array as a whole.
// That line shouldn't even compile.

slot_t* slots = (slot_t*)malloc(sizeof(slot_t)*n);

// completely generic initialization
init_array( slots, n, sizeof(slot_t), &empty_slot);

If you want to initialize an array of pointers, you could have another function that handled that case a little more directly:

void init_ptr_array( void* arr, size_t nmemb, void* initializer)
{
    size_t i = 0;
    void* p;

    for (; p < arr + nmemb; ++p) {
        *p = initializer;
    }
}

// arrays of object pointers
init_ptr_array( slots, n, empty_slot);

I'm not sure I like that the two functions have a subtly different meaning for last parameter. If I had a need for both kinds of initialization in my program, I'd probably stick with using the generic one for initializing pointer arrays as well. It might be a bit less efficient, but initialization isn't usually a bottleneck.

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.