8
votes
4answers
933 views
What is the rationale for fread/fwrite taking size and count as arguments?
We had a discussion here at work regarding why fread and fwrite take a size per member and count and return the number of members read/written rather than just taking a buffer and …
6
votes
3answers
186 views
How is linux simultaneously 32bit and 64bit? Or is that something handled in glibc?
How is linux simultaneously 32bit and 64bit? Or is that something handled in glibc?
I run CentOS 5.3 and it is a "64 bit" version, although I build things for 64 bit and 32 bit. F …
3
votes
4answers
171 views
How to tell which interface the socket received the message from?
If a socket is bound to IN6ADDR_ANY or INADDR_ANY and you use a call such as recvfrom() to receive messages on the socket, is there a way to find out which interface the message ca …
2
votes
2answers
119 views
Close a FILE pointer without closing the underlying file descriptor
By using fdopen(), fileno() it's possible to open streams with existing file descriptors. However the proper way to close a file, once you've opened it with a stream is to fclose() …
2
votes
1answer
303 views
Installing a prebuilt binary on Android: “not found”
I'm trying to install a prebuilt binary in a custom Android image. For that I have copied it to a new directory in prebuilt/android-arm/ with an Android.mk file similar to this one …
2
votes
3answers
454 views
Is MSVCRT under Windows like glibc (libc) under *nix?
I frequently come across Windows programs that bundle in MSVCRT (or their more current equivalents) with the program executables. On a typical PC, I would find many copies of the …
1
vote
3answers
67 views
library interposition with dlsym
I'm writing an interposition library to track the usage of some library functions in libc, such as open(), close(), connect(), etc. It works generally well on most of the applicati …
1
vote
1answer
46 views
MSVC _open/_close/etc
Why are the API's _open, _close, and other standard file i/o functions prefixed with an underscore? Aren't these part of some standard?
0
votes
1answer
67 views
linking mess with libc
I have a library compiled into a .a file, linked against my application. (iphone, developing with Xcode)
Everything seems to be fine, linking seems to succeed, but when I run the …
0
votes
0answers
10 views
On Mac OS X, how can you get a debug build of System/LibC for source level debugging?
I downloaded LibC source from opensource.apple.com, but since it's part of one monolithic library /usr/lib/libSystem.B.dylib would I have to somehow rebuild the entire thing?
I ha …
0
votes
1answer
76 views
legacy linker (uses libc5) fails on linux kernel 2.6.25
We have a legacy linker that uses libc5, and due to several factors we only have the binary and not the source. Yes, version control would have saved us from our current problem... …
