Tagged Questions

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
443 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
207 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
791 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
3answers
453 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 ...
6
votes
2answers
327 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?
5
votes
4answers
452 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 ...
4
votes
2answers
186 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
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
263 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
2answers
947 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 ...
3
votes
2answers
77 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
128 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
295 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
197 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
301 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
259 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
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
4answers
139 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
4answers
245 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
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
274 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
309 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 ...
2
votes
1answer
272 views

Looking for a pure c-version of math.h functions (no co-processor support)

i'm looking for some math.h definitions without co-processor use (e.g. sqrt, pow, remainder, tan; int/float/double). When i looked for it in a libc shipped with some linux distributions (maybe now ...
2
votes
2answers
159 views

Do POSIX lfind()/lsearch() perform better than looping manually?

Do lfind/lsearch perform better than a typical looping solution that checks each item until it matches? Is there any special sauce/reason that these functions exist?
2
votes
2answers
827 views

link to a different libc file

I want to supply the shared libs along with my program rather than using the target system's due to version differences: ldd says my program uses these shared libs: linux-gate.so.1 => ...
2
votes
2answers
295 views

link with libc-dbg and libc-prof

I got multiple versions of libc installed, how do I choose which to link with at compile time? Right now i'm compiling like g++ prog.cpp
1
vote
3answers
119 views

Is malloc/free a syscall or a library routine provided by libc?

If malloc/free is implemented as a library routine in libc, then is it implemented on top of the sbrk syscall or the mmap syscall, or something else? And to be general, does the function declared in ...
1
vote
1answer
61 views

Do uClibc/glibc provide any feature to redirect errors to syslog?

Do uClibc/glibc provide any feature to redirect errors to syslog? The erros like "can't resolve symbol" need to go to syslog instead of stderr on console.
1
vote
1answer
52 views

Keeping directory search results of ftw function

what I have to do is recursively get ".mp3" archives from a determined pre-specified directory and its subdirectories. I did not have a problem getting the mp3's and printing them on console. I am ...
1
vote
2answers
157 views

Writing a return-to-libc attack, but libc is loaded at 0x00 in memory

I'm writing a return to libc attack for my systems security class. First, the vulnerable code: //vuln.c #include <stdio.h> #include <stdlib.h> int loadconfig(void){ char buf[1024]; ...
1
vote
1answer
66 views

Ptrace mprotect debugging trouble

I'm having trouble with an research project. What i am trying to is to use ptrace to watch the execution of a target process. With the help of ptrace i am injecting a mprotect syscall into the targets ...
1
vote
4answers
130 views

Is printf(“%d”, 1.0) undefined?

According to section 4.9.6.1 of the C89 draft, %d is a character that specifies the type of conversion to be applied. The word conversion implies, in my opinion, that printf("%d", 1.0) is defined. ...
1
vote
2answers
113 views

qsort and bsearch an array of pointers

I need to sort an array of pointers to struc. In fact, I need to do searching among adresses to see if a given pointer to a struct is present in the array. Unfortunately, I don't have nothing ...
1
vote
1answer
132 views

Why is container_of not in glibc? [closed]

Is there a technical reason why container_of() may not be acceptable in libc/glibc? Thanks, Chenz
1
vote
5answers
510 views

How to sleep for a few microseconds

Consider the following code: #include <stdio.h> #include <time.h> #include <math.h> // Compile with gcc -lrt -lm -o test_clock test_clock.c #define CLOCK CLOCK_MONOTONIC int ...
1
vote
3answers
379 views

return to libc works in gdb but not when running alone

I am trying return to libc trick with the following simple code: #define SYSTEM_CALL_ADDR 0xb7ec5e50 /*my system call addr*/ #define EXIT_CALL_ADDR 0xb7ebbb80 /*my exit call addr*/ char shell[] = ...
1
vote
2answers
315 views

How to do the equivalent of “ulimit -n 400” from within C?

I must run the command "ulimit -n 400" to raise number of allowed open files before I start my program written in C, but is there a way to do the equivalent from within the C program? That is, ...
1
vote
1answer
217 views

strsep segmentation faults on different string pointer/array types

Platform: Linux, OSX Compiler: GCC I've got a simple program which is currently confounding me - I know that I'm messing with a couple different kinds of arrays/pointers to produce this problem - its ...
1
vote
2answers
95 views

Can I add a systemcall from a module?

Can I add a systemcall from a module?
1
vote
3answers
939 views

Relink a shared library to a different version of libc

I have a linux shared library (.so) compiled with a specific version of libc (GLIBC2.4) and I need to use it on a system with different version of libc. I do not have sources for the library in ...
0
votes
2answers
78 views

Solaris 11: Which package has /usr/include/sys/types.h?

The Ubuntu Equivalent would be libc6-dev, but I can't seem to find it for Solaris? Where should I go?
0
votes
2answers
75 views

Force .so module to use libc function in case of duplicate fuctions

I'm have .so file that being loaded into binary program address space using LD_PRELOAD mechanism. The binray program (which is not mine) has it's own implementation for malloc function. Since my ...

1 2