Tagged Questions

7
votes
4answers
356 views

Creating Library with backward compatible ABI that uses Boost.

I'm working on certain C++ library (or more framework). I want to make it backward compatible with previous versions preserving not only API compatibility but also ABI (like the gr …
3
votes
4answers
259 views

C Runtime objects, dll boundaries

Hi, What is the best way to design a C API for dlls which deals with the problem of passing "objects" which are C runtime dependent (FILE*, pointer returned by malloc, etc...). Fo …
10
votes
6answers
1k views

Why does the Mac ABI require 16-byte stack alignment for x86-32?

I can understand this requirement for the old PPC RISC systems and even for x86-64, but for the old tried-and-true x86? In this case, the stack needs to be aligned on 4 byte bounda …
3
votes
3answers
630 views

Why I need to re-compile vmware kernel module after a linux kernel upgrade?

After a linux kernel upgrade, my VMWare server cannot start until using vmware-config.pl to do some re-config work (including build some kernel modules). If I update my windows VM …
7
votes
6answers
1k views

Passing structs by value - why not?

Are there any downsides to passing structs by value in C, rather than passing a pointer? If the struct is large, the there is obviously the performancd aspect of copying lots of d …