473,395 Members | 1,343 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

passing pointer as function parameter

Hello,

I belive the reason of problem is simple, but can't figure out.

This is piece of code:

struct timeval {
long tv_sec; /* seconds */
long tv_usec; /* microseconds */
};

extern void proc_v4(char *, ssize_t, struct timeval *);
....

int main(void)
{
static char recvbuf[BUFSIZE];
ssize_t n;
struct timeval tv2;

...

proc_v4(recvbuf, n, &tv2);
}

void proc_v4(char *ptr, ssize_t len, struct timeval *tvsend)
{
struct icmp *icmp;
...
/* here I parse IP packet and address pointer on ICMP packet */
...
tvsend = (struct timeval *) icmp->icmp_data;
}

The problem is after calling proc_v4() the value of 'tv2' doesn't change,
what I can't understand, because I pass pointer, and then re-assign pointer
into another one.

Where is the problem? Thanks a lot.

With best regards, Roman Mashak. E-mail: mr*@tusur.ru
Sep 14 '06 #1
6 3005
Roman Mashak wrote:
Hello,

I belive the reason of problem is simple, but can't figure out.

This is piece of code:

struct timeval {
long tv_sec; /* seconds */
long tv_usec; /* microseconds */
};

extern void proc_v4(char *, ssize_t, struct timeval *);
...

int main(void)
{
static char recvbuf[BUFSIZE];
ssize_t n;
struct timeval tv2;

...

proc_v4(recvbuf, n, &tv2);
}

void proc_v4(char *ptr, ssize_t len, struct timeval *tvsend)
{
struct icmp *icmp;
...
/* here I parse IP packet and address pointer on ICMP packet */
...
tvsend = (struct timeval *) icmp->icmp_data;
What you probably want to do is assign values to the elements of
tvsend. Even if you had done everything else right (and you
haven't), icmp->icmp_data might cease to exist when proc_v4 ends,
depending on where it came from, so you don't want to keep a
pointer to it unless you know that it will live on.
}

The problem is after calling proc_v4() the value of 'tv2' doesn't change,
what I can't understand, because I pass pointer, and then re-assign pointer
into another one.

Where is the problem? Thanks a lot.
You aren't doing what you think you are doing. What you think
you are doing is something like:

struct timeval *tv2;
proc_v4(..., &tv2);

This is very different from what you are really doing.

--
Thomas M. Sommers -- tm*@nj.net -- AB2SB

Sep 14 '06 #2
Roman Mashak wrote:
void proc_v4(char *ptr, ssize_t len, struct timeval *tvsend)
{
struct icmp *icmp;
...
/* here I parse IP packet and address pointer on ICMP packet */
...
tvsend = (struct timeval *) icmp->icmp_data;
This line assigns to the tvsend pointer. the tvsend pointer
is local to this function.

You want to assign to what it points at rather, as the caller pointed
it at a struct timeval it can access:

*tvsend = *(struct timeval *) icmp->icmp_data;

Or
struct timeval *tmp

tmp = (struct timeval *) icmp->icmp_data;
tvsend->tv_sec = tmp->tv_sec;
tvsend->tv_usec = tmp->tv_usec;
}
Another problem is icmp->icmp_data; might indeed not values
a struct timeval that your platform can understand..
(alignment problems, padding and endianess might skew things)

Sep 14 '06 #3
Roman Mashak wrote:

void proc_v4(char *ptr, ssize_t len, struct timeval *tvsend)
{
struct icmp *icmp;
...
/* here I parse IP packet and address pointer on ICMP packet */
...
tvsend = (struct timeval *) icmp->icmp_data;
}

The problem is after calling proc_v4() the value of 'tv2' doesn't
change, what I can't understand, because I pass pointer, and then
re-assign pointer into another one.
That's covered in the FAQs:

<http://c-faq.com/ptrs/passptrinit.html>


Brian
Sep 14 '06 #4
Hello, Default!
You wrote on 14 Sep 2006 17:59:36 GMT:

??>void proc_v4(char *ptr, ssize_t len, struct timeval *tvsend)
??>{
??> struct icmp *icmp;
??> ...
??> /* here I parse IP packet and address pointer on ICMP packet */
??> ...
??> tvsend = (struct timeval *) icmp->icmp_data;
??>}
??>>
??>The problem is after calling proc_v4() the value of 'tv2' doesn't
??>change, what I can't understand, because I pass pointer, and then
??>re-assign pointer into another one.

DUThat's covered in the FAQs:

DU<http://c-faq.com/ptrs/passptrinit.html>
Hm, I'm confused. FAQ reecommends to pass the function address of pointer.
Is it considered to be a "right standard confirming way" ?
On the other hand: passing just pointer and assigning the value to what the
pointer points at (as was proposed by Nils O. Selasdal) - works well.

Which way is correct?

Thank you.

With best regards, Roman Mashak. E-mail: mr*@tusur.ru
Sep 15 '06 #5
"Roman Mashak" <mr*@tusur.ruwrites:
Hello, Default!
You wrote on 14 Sep 2006 17:59:36 GMT:

??>void proc_v4(char *ptr, ssize_t len, struct timeval *tvsend)
??>{
??> struct icmp *icmp;
??> ...
??> /* here I parse IP packet and address pointer on ICMP packet */
??> ...
??> tvsend = (struct timeval *) icmp->icmp_data;
??>}
??>>
??>The problem is after calling proc_v4() the value of 'tv2' doesn't
??>change, what I can't understand, because I pass pointer, and then
??>re-assign pointer into another one.

DUThat's covered in the FAQs:

DU<http://c-faq.com/ptrs/passptrinit.html>
Hm, I'm confused. FAQ reecommends to pass the function address of pointer.
Is it considered to be a "right standard confirming way" ?
On the other hand: passing just pointer and assigning the value to what the
pointer points at (as was proposed by Nils O. Selasdal) - works well.

Which way is correct?
It depends on what you want to do.

In general, if you have a FOO, and you want a function to modify its
value for you, you need to pass the function a FOO* (i.e., you pass it
a pointer to a FOO so it can modify your FOO).

If the FOO itself happens to be a pointer to something (i.e., you want
the function to modify a pointer object for you), then passing a FOO*
means passing a pointer-to-pointer-to-something.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Sep 15 '06 #6
Roman Mashak wrote:
Hello, Default!
You wrote on 14 Sep 2006 17:59:36 GMT:
DU<http://c-faq.com/ptrs/passptrinit.html>
Hm, I'm confused. FAQ reecommends to pass the function address of
pointer. Is it considered to be a "right standard confirming way" ?
On the other hand: passing just pointer and assigning the value to
what the pointer points at (as was proposed by Nils O. Selasdal) -
works well.

Which way is correct?
Ok, I think I confused your post with one in a different thread.


Brian
Sep 15 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

58
by: jr | last post by:
Sorry for this very dumb question, but I've clearly got a long way to go! Can someone please help me pass an array into a function. Here's a starting point. void TheMainFunc() { // Body of...
8
by: kalinga1234 | last post by:
there is a problem regarding passing array of characters to another function(without using structures,pointer etc,).can anybody help me to solve the problem.
4
by: sam1967 | last post by:
How do I get a function to return a GMP integer type mpz_t when i try it i get an error message. i am trying mpz_t hooch (int x) { mpz_t y; ........
6
by: bob_jenkins | last post by:
{ const void *p; (void)memset((void *)p, ' ', (size_t)10); } Should this call to memset() be legal? Memset is of type void *memset(void *, unsigned char, size_t) Also, (void *) is the...
11
by: truckaxle | last post by:
I am trying to pass a slice from a larger 2-dimensional array to a function that will work on a smaller region of the array space. The code below is a distillation of what I am trying to...
3
by: Miguel | last post by:
Hi, I'm new to .NET and am using VB .NET as I am from a VB background. I am having difficulty understanding the way .NET handles, passes and uses objects. I have had a look at the Micrsoft Data...
11
by: John Pass | last post by:
Hi, In the attached example, I do understand that the references are not changed if an array is passed by Val. What I do not understand is the result of line 99 (If one can find this by line...
7
by: TS | last post by:
I was under the assumption that if you pass an object as a param to a method and inside that method this object is changed, the object will stay changed when returned from the method because the...
5
by: CapCity | last post by:
I'm sure I'm missing something simple - I do not code in C regularly, and the breaks are long enough for me to forget. The situation I have is I need to create an array but I do not know the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.