Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been trapped in following situation when writing a shared library for a server.

To make it easy to understand:

  1. let's call the server framework fwA
  2. the shared library written by me called libB
  3. different versions of the library linked both by fwA and libB named as libC1 and libC2

And fwA loads libB by dllopen

Following is my question: There is a data structure (DS1) is defined in libC, however, in libC1 and libC2 the data structure is slightly different.

How do compiler/linker/program determine which version of the data structure they would use?

share|improve this question

1 Answer

If the structure definition is different in libC1 and libC2, then surely somewhere it will access wrong offset. Its undefined behaviour. We should not use like this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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