I have the fallowing structs:
struct lshort_sched_param {
int requested_time;
int level;
};
struct sched_param {
union {
int sched_priority;
struct lshort_sched_param lshort_params;
};
};
and i'm trying to create a new instance of them like so:
struct lshort_sched_param *l = {2 ,1};
struct sched_param *p = {3, l};
and get some warnings:
test.c:5: warning: initialization makes pointer from integer without a cast
test.c:5: warning: excess elements in scalar initializer
test.c:5: warning: (near initialization for `l')
test.c:6: warning: initialization makes pointer from integer without a cast
test.c:6: warning: excess elements in scalar initializer
test.c:6: warning: (near initialization for `p')
can anyone help me figure it out?
You are declaring pointers, but they have to point something before you try to modify the thing that are pointed by them, and that can be done with malloc like this.
What are we doing?. Well, malloc allocates some bytes on memory and return a pointer to the beginning of the block, and in our case we are assigning the pointer returned by malloc to our pointers l and p, the result is that now l and p are pointing to the structures that we just made.
Then you can change the value of the structures pointed by p and l in this way.
Edit:
Obviously, you can also do this.
and then.
But when you are doing.
You are only declaring a pointer and nothing more, it's not pointing to anything until you assing him the adress of a variable.