Tagged Questions
The C standard library consists of a set of sections of the ISO C standard which describe a collection of headers and library routines used to implement common operations, such as input/output and string handling, in the C programming language.
29
votes
5answers
3k 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 size. The only use ...
27
votes
2answers
446 views
To infinity and back
There are mathematical operations that yield real numbers from +/- infinity. For example exp(-infinity) = 0. Is there a standard for mathematical functions in the standard C library that accept ...
16
votes
1answer
208 views
How did malloc and calloc end up with different signatures? [closed]
Possible Duplicate:
Why calloc takes two arguments while malloc only one?
There are lots of resources describing the difference in functionality between malloc and calloc, but I can't ...
11
votes
7answers
795 views
Small libc for embedded systems
I am looking for a small libc for embedded use with freertos on a ARM7 microcontroller.
I have looked at newlib, but it is a bit too complex for my needs. Newlib calls malloc() in
a number of ...
10
votes
4answers
196 views
Is the term “libc” equivalent to “C standard library”?
I sometimes hear people using the terms "libc" and "C standard library" interchangeably. I understand that "libc" is the name (or part of the names) of many popular C standard library implementations. ...
9
votes
1answer
4k views
How can I link to a specific glibc version?
When I compile something on my Ubuntu Lucid 10.04 PC it gets linked against glibc. Lucid uses 2.11 of glibc. When I run this binary on another PC with an older glibc, the command fails saying there's ...
9
votes
3answers
456 views
Faster math library than glibc on x86_64/linux?
Is there a drop-in replacement to glibc's libm (and headers?) for x86_64-linux that is faster?
8
votes
4answers
2k views
Compiling without libc
I want to compile my C-code without the (g)libc. How can I deactivate it and which functions depend on it?
I tried -nostdlib but it doesn't help: The code is compilable and runs, but I can still find ...
7
votes
4answers
4k views
Where can I browse the sourcecode for libc online (like doxygen)
Sometimes I want to look up the implementations of functions in the stdlib, I've downloaded the sourcecode, but it's quite messy.
Just greping is not really suitable because of the many hits.
Does ...
6
votes
2answers
328 views
Are posix regcomp and regexec threadsafe? In specific, on GNU libc?
Two separate questions here really: Can I use regexes in a multithreaded program without locking and, if so, can I use the same regex_t at the same time in multiple threads? I can't find an answer on ...
6
votes
4answers
1k views
What's the difference between hard and soft floating point numbers?
When I compile C code with my cross toolchain, the linker prints pages of warnings saying that my executable uses hard floats but my libc uses soft floats. What's the difference?
6
votes
1answer
916 views
Runtime Library mis-matches and VC++ - Oh, the misery!
It seems that all my adult life I've been tormented by the VC++ linker complaining or balking because various libraries do not agree on which version of the Runtime library to use. I'm never in the ...
6
votes
3answers
696 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. From what I think I ...
5
votes
4answers
457 views
Is there really no mremap in Darwin?
I'm trying to find out how to remap memory-mapped files on a Mac (when I want to expand the available space).
I see our friends in the Linux world have mremap but I can find no such function in the ...
5
votes
5answers
639 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 came from?
In the ...
5
votes
4answers
1k 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 same .DLL's. My ...
4
votes
1answer
72 views
Are regex functions like “regexec” thread safe in libc version 2.2.5?
I've read that regex functions in the libc should be threadsafe, but I've also read that in earlier version it was not the case.
I now have to work on an embedded system that has an old libc version ...
4
votes
2answers
187 views
Startup code of a statically-linked executable issues so many system calls?
I am experimenting by statically compiling a minimal program and examining the system calls that are issued:
$ cat hello.c
#include <stdio.h>
int main (void) {
write(1, "Hello world!", 12);
...
4
votes
1answer
253 views
Android weird lib.c crash
I'm writing an Android app.
I totally have no idea why it happenes often.
Could someone tell me what reason might cause it happened?
Thanks!
09-29 13:58:00.540: INFO/DEBUG(4658): *** *** *** *** *** ...
4
votes
1answer
129 views
How to build apple's opensource libc?
I'm trying to build apple's opensource libc (from http://www.opensource.apple.com/source/Libc/Libc-763.11/) on my OS X 10.6.8 laptop. This is in an attempt to essentially get a locally generated ...
4
votes
2answers
146 views
Calling uname from libc with Pythons ctypes
tl;dr
this works with the GNU version of libc (haven't tried it with uclibc yet)
from ctypes import *
libc = CDLL('libc.so.6')
class uts_struct(Structure):
_fields_ = [ ('sysname', c_char * ...
4
votes
1answer
264 views
how to choose libc6 or libc6-dbg
Im bug checking a c program and would like to install valgrind, the system then tells me that I should also install libc6 with debug symbols libc6-dbg.
Now my question is, when I in the future ...
4
votes
2answers
97 views
Is there any libc project that does not requires linux kernel
I am using a custom user space environment that has barely no OS support: only one char device, mass storage interface and a single network socket.
To provide C programming to this platform, I need a ...
4
votes
4answers
298 views
C++: How to force libc declarations into std::?
So, I find myself in the need of libc in my C++ program. However, I do not like the idea of sprinkling it all over the global namespace. Ideally, I'd like to force the entirety of libc into the std:: ...
4
votes
2answers
1k views
gcc: why the -lm flag is needed to link the math library?
I just discovered that the -lm flag is needed by gcc in order to compile a program that refers a function from the math library. I'm wondering why an explicit linking flag isn't needed when compiling ...
4
votes
2answers
951 views
How to reimplement (or wrap) a syscall function in linux?
Suppose I want to completely take over the open() system call, maybe to wrap the actual syscall and perform some logging. One way to do this is to use LD_PRELOAD to load a (user-made) shared object ...
4
votes
1answer
5k 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:
LOCAL_PATH := ...
3
votes
2answers
80 views
What is mnemonic for “W” in WIFEXITED, WEXITSTATUS, etc?
What is mnemonic for "W" i.e. what does "W" mean in the following macros:
int WIFEXITED (int status)
int WEXITSTATUS (int status)
int WIFSIGNALED (int status)
int WTERMSIG (int status)
int WCOREDUMP ...
3
votes
3answers
130 views
Is snprintf() ALWAYS null terminating?
Is snprintf always null terminating the destination buffer?
In other words, is this sufficient:
char dst[10];
snprintf(dst, sizeof (dst), "blah %s", somestr);
or do you have to do like this, if ...
3
votes
3answers
73 views
Determine effective timestamp precision returned by “stat()”
I'm trying to determine the effective precision of the st_mtim.tv_nsec field of struct stat in software, for a specific directory/file system.
Is there a way to do it, that determines the file ...
3
votes
2answers
297 views
Where is stdarg.h?
On my system (Mac OS 10.6) /usr/include/stdarg.h is:
/* This file is public domain. */
/* GCC uses its own copy of this header */
#if defined(__GNUC__)
#include_next <stdarg.h>
#elif ...
3
votes
2answers
110 views
How does libc provide functions with two names?
Before the advent of direct binding (-B direct) libc provided many
functions with two names. For example, getpwent() and _getpwent().
These two names referred to ...
3
votes
2answers
176 views
Getting GCC to compile without inserting call to memcpy
I'm currently using GCC 4.5.3, compiled for PowerPC 440, and am compiling some code that doesn't require libc. I don't have any direct calls to memcpy(), but the compiler seems to be inserting one ...
3
votes
2answers
200 views
Python ctypes calling reboot() from libc on Linux
I'm trying to call the reboot function from libc in Python via ctypes and I just can not get it to work. I've been referencing the man 2 reboot page (http://linux.die.net/man/2/reboot). My kernel ...
3
votes
2answers
302 views
Do I need to worry about Valgrind reporting errors outside the scope of my application?
When running Valgrind's memcheck tool, I often get many hundreds of thousands (or more, since Valgrind cuts off at 100K) of small invalid read statements, e.g.:
==32027== Invalid read of size 1
...
3
votes
1answer
261 views
bus error when trying to access character on a string in C
I have used this line of code many times (update: when string was a parameter to the function!), however when I try to do it now I get a bus error (both with gcc and clang). I am reproducing the ...
3
votes
2answers
182 views
Why is fseeko() faster with giant files than small ones?
I'm getting some strange performance results here and I'm hoping someone on stackoverflow.com can shed some light on this!
My goal was a program that I could use to test whether large seek's were ...
3
votes
4answers
715 views
Assembly Segmentation Fault
I encountered an Error during running of the following Assembly Code
#cpuid using C library Functions
.section .data
output:
.asciz "The Processor Vendor ID is '%s'\n"
.section .bss
.lcomm buffer, ...
3
votes
2answers
684 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() the FILE pointer. ...
2
votes
1answer
49 views
Portable way to load the C standard library in Python ctypes
Is there a portable way to load the C standard library (libc.so, libc.dylib) in Python ctypes? Should I just use if/elif statements about the result of platform.system() function?
2
votes
4answers
141 views
char* str=“…” vs char str[]=“…” strange behaviour [closed]
Possible Duplicate:
Program crashes when trying to set a character of a char array
I have a sample code which works as expected:
/* strtok example */
#include <stdio.h>
#include ...
2
votes
1answer
76 views
How should posix_spawn() behave when given a file with an unrecognized executable magic number?
The glibc implementation of posix_spawn tries sending the file to /bin/sh if execve() fails with ENOEXEC:
__execve (file, argv, envp);
if (errno == ENOEXEC)
script_execute (file, argv, envp)
...
2
votes
3answers
133 views
Can system() return before piped command is finished
I am having trouble using system() from libc on Linux. My code is this:
system( "tar zxvOf some.tar.gz fileToExtract | sed 's/some text to remove//' > output" );
std::string line;
int count = 0;
...
2
votes
0answers
272 views
What is causing sprof to complain about “inconsistency detected by ld.so”?
I'm trying to use sprof to profile some software (ossim) where almost all the code is in a shared library. I've generated a profiling file, but when I run sprof, I get the following error:
> sprof ...
2
votes
4answers
246 views
How does libc work?
I'm writing a MIPS32 emulator and would like to make it possible to use the whole Standard C Library (maybe with the GNU extensions) when compiling C programs with gcc.
As I understand at this point, ...
2
votes
2answers
342 views
Why are many system calls (getpid) captured only once using strace?
I invoked "getpid()" in a program for many times (to test the efficiency of system calls), however when I use strace to get the trace, only one getpid call is captured.
The code is simple:
#include ...
2
votes
4answers
225 views
Is open thread safe?
Is it okay if two threads call open() at the same time? How would one find the answer to this question?
2
votes
2answers
585 views
Porting newlib to a custom ARM setup
this is my first post, and it covers something which I've been trying to get working on and off for about a year now.
Essentially it boils down to the following: I have a copy of newlib which I'm ...
2
votes
2answers
275 views
Where to find my system's implementation of standard C library functions?
for example, the strrev() function. i know that it's declared in string.h, and i wanna to figure out how it is implemented. so where could i the source code?
OS: Windows XP SP3
IDE: Pelles C 6.50 ...
2
votes
7answers
311 views
memmove doesn't move
memmove doesn't really move memory isn't that right? It just copies memory from one region to other and allows those two regions to overlap. I'm asking this question because I just want to know why is ...