0
votes
2answers
171 views
Building crti.o for i386
I am trying to build a cross-compiler with x86_64 being the host and i386 being the target. I'm getting the (all to common) crti.o: No such file error. Instead of grabbing an alrea …
1
vote
1answer
103 views
Linux iNotify one shot and event mask problem
I'm trying to use iNotify in linux rhel5, kernel 2.6.18, glibc 2.5-18. I did not define the event as one shot but for some some reason it behaves as if I did. The impact is that I …
0
votes
1answer
34 views
Why inet_ntoa is designed to be a non-reentrant function?
Glancing at the source code of GNU C Library,I found the inet_ntoa is implementated with
static __thread char buffer[18]
My question is, since there is a need to use reeentrant …
1
vote
4answers
136 views
Questions about C++ memory allocation and delete
I'm getting a bad error. When I call delete on an object at the top of an object hierarchy (hoping to the cause the deletion of its child objects), my progam quits and I get this:
…
0
votes
1answer
34 views
Problems on injecting into printf using LD_PRELOAD method
Hi Experts,
I was hacking printf() of glibc in one of my project and encountered some problem. Could you please give some clues? And one of my concern is why the same solution for …
0
votes
2answers
104 views
“corrupted double-linked list” on boost::function free()
I am going to try to ask this question without supplying too much source code because all the relevant bits add up to a bunch. The key (I think?) objects involved are
using names …
0
votes
0answers
66 views
Different treatment of long long’s in glibc 2.4?
Hi,
I have some odd behaviour I'd like to ask for advice on. I have some C code which behaves as follows
If I build and run my unit tests, they run but some specific tests fail. …
9
votes
3answers
187 views
building a .so that is also an executable
So everyone probably knows that glibc's /lib/libc.so.6 can be executed in the shell like a normal executable in which cases it prints its version information and exits. This is don …
1
vote
1answer
63 views
getpwnam_r memory leak
I use getpwnam_r to handle client connections in my programs. Sadly enough, it seems to allocate a buffer it never frees.
The relevant valgrind output:
==15774== 536 (104 direct, …
0
votes
3answers
86 views
Any function to query the size of an allocated block?
I realize that any such function is likely to be non standard, but that's ok for my use case. Basically, I need a method (even if it's only exposed through glibc's syscall() interf …
1
vote
1answer
128 views
Update glibc in Cygwin
Hi
I just wanted to make use of the Cygwin x server, but when trying to start a program I am told that glibc is too old. I have version 2.3.2 but would need version 2.3.6. Is the …
0
votes
1answer
23 views
Error converting a pipe (Handler) to fd on vs 2003
Hello!
I am trying to use notify a main gtk thread ( from a separate thread) that some even occurred using pipes. I get the following warning when I am trying to setup pipes. What …
2
votes
3answers
238 views
glibc’s ‘-lmcheck’ option and multithreading.
We've been trying to hunt down some heap corruption issues in our multi-threaded C++ apps. As one technique, we tried add -lmcheck to the libraries line of the application. This is …
0
votes
2answers
237 views
Pthread mutex assertion error
I'm encountering the following error at unpredictable times in a linux-based (arm) communications application:
pthread_mutex_lock.c:82: __pthread_mutex_lock: Assertion `mutex-> …
0
votes
2answers
82 views
__libc_lock_lock is segfaulting
I am working on a piece of code which uses regular expressions in c.
All of the regex stuff is using the standard regex c library.
On line 246 of regexec.c, the line is
__libc …
