The GNU C library is used as the C library in the GNU system and most systems with the Linux kernel. It defines the "system calls" and other basic facilities such as open, malloc, printf, exit, etc.

learn more… | top users | synonyms

1
vote
0answers
28 views

unpredictable error when running C++ code from R

I am having some issues getting my c++ code to run smoothly from R. I have some code written in c++ below. Currently I have the main() function commented out. This main function is a dummy writeup ...
1
vote
1answer
21 views

free() : no double free detected

I have some problems with free() function: #include <stdio.h> #include <stdlib.h> int main() { char *a=malloc(24); char *b=malloc(24); free(a); free(a); } there is a ...
0
votes
2answers
20 views

can`t find symbol “dlopen” in libc.so

I can`t find symbol "dlopen" in libc.so There is only symbol "_dlfcn_hooks" in libc.so,but how can ld find "dlopen"? What is the relationship between "dlopen" and "_dlfcn_hooks"?
2
votes
1answer
39 views

Why does -O to gcc cause “stat” to resolve?

Tried to do a search, but didn't find anything. Whenever I try to compile a shared object and the test binary that links to it I get this error: [root@hypervisor test-files]# ./test ./test: symbol ...
6
votes
2answers
79 views

C linkage for function pointer passed to C library

My case is pretty simple: I want my C++ program to deal with Unix signals. To do so, glibc provides a function in signal.h called sigaction, which expects to receive a function pointer as its second ...
0
votes
0answers
35 views

linux gcc linked executable missing static definition of stat64

A linux stat64 call is supposed to end up calling xstat64 with a static version of stat64 generated that passes a version along with the call. We are seeing a condition where a C linked (gcc) version ...
0
votes
0answers
37 views

How do you use opencv 2.4 in RHEL6 aparently RHEL6 uses GLIBC 2.12 and opencv requires 2.15

I have written a c++ program which uses opencv. It works just fine in Ubuntu, but we are porting to RHEL6. Apparently RHEL 6 (x64) does not have a new enough version of glibc. Error message: ...
1
vote
0answers
18 views

Glibc-2.17 toolchain issue iconv folder undefined reference

On building Glibc on my toolchain . The libraries make succesfully (and test ok) all FLAGS unset except for those specified for building default glibc. then i start building the programs both with and ...
0
votes
0answers
21 views

Segmentation fault.when using glibc timer

static timer_t timer; void timer_handle(union sigval sig) { printf("pthread=%lu ptr=%p\n", pthread_self(), sig.sival_ptr); } void x_add_timer(void) { struct sigevent event; struct ...
1
vote
1answer
48 views

runtime error C++ program: glibc detected, munmap_chunk(), invalid pointer [closed]

My C++ program (handling some calculation with matrices, see files below) crashes with the following messages: *** glibc detected *** ./matrix: munmap_chunk(): invalid pointer: 0x08bfd068 *** ...
1
vote
0answers
41 views

what is the difference between .o and .os objs in glibc

I am studying the source code of glibc. I found when compiling glibc I get some .o objs and some .os objs. E.g., there is a dl-load.o, as well as a dl-load.os. So, what is the difference between them? ...
-2
votes
0answers
26 views

How to upgrade GLIBC in fedora [closed]

I am using fedora 4 and I really need to upgrade my glibc which is 2.5.3 to to version 2.9. Since I don't have access to yum command, what is the best and most straightforward way to install it?
0
votes
2answers
55 views

Error while configuring glibc: Need linker with .init_array/.fini_array support

I am new to linux or LFS. I am building LFS 7.3 on virtual machine. I use Ubuntu 12.10. For unknown reason, I can't partition the hard drive using cfdisk, so I create partition while installing the ...
0
votes
2answers
85 views

The program cannot find correct version of glibc/libstdc++, although it was statically linked

I am trying to link my program statically with glibc, because version of the glibc on the target machine is pretty much unpredictable. I used linker flags -static-libgcc and -static-libstdc++ and it ...
1
vote
0answers
36 views

Debugging *** glibc detected *** python: realloc(): invalid next size without Valgrind

I'm running a server-script in Python, and I'm getting a *** glibc detected *** python: realloc(): invalid next size error every once in a while. I can't debug it with Valgrind, as it won't let me run ...
2
votes
1answer
37 views

glibc - get handle to shared library having symbol containing specified address

Something like dladdr that gives me a dynamic library handle to the shared object or a way to get the handle from the shared object's base address. The file containing the shared object may have been ...
0
votes
1answer
27 views

Inconsistency with regex(anchors) in glibc

I was experimenting with some regex stuff in C, namely trying to process a line in a text file: MY NAME IS ;;JOHN I was using sscanf and matching with %s %s %s %[^;] in sscanf's format ...
0
votes
0answers
36 views

Understanding the consistency between gcc and glibc

I work on a relatively old system: gcc --version prints 4.1.2 20080704). ldd --version prints ldd (GNU libc) 2.5. I am hoping to download and use a newer version of gcc (latest stable version is ...
0
votes
0answers
29 views

gblic malloc() vs dlmalloc() ??? (heap overflow)

I am currently trying to understand how heap overflows could trigger remote code execution by overwriting malloc's storage information. In all articles I've read so far they say that the overall ...
0
votes
1answer
53 views

Undefine a function-like macro in c?

I am trying to do some hacks over the glibc, and I wanted to know whether it's possible to redefine function-like macros ? For example, <tgmath.h> has the following macro: #define expm1(Val) ...
1
vote
0answers
30 views

File names conventions in glibc/math?

If we look to the directory math of the C library glibc, we have the following files : atest-exp2.c atest-exp.c atest-sincos.c basic-test.c bits bug-nextafter.c bug-nexttoward.c bug-tgmath1.c cabs.c ...
0
votes
1answer
50 views

Using a different version of glibc?

I want to do some modifications to the glibc library. The first step is to be able to use a specific version when I compile a program. I'm under ubuntu 12.10 and my directories are : ...
0
votes
0answers
94 views

How to compile glibc for x86 soft-float or without floating point unit (fpu)

I have a x86 core which does not support floating point unit (FPU), and i am writing a micro kernel for floating point calculations such as add, div, mul, pow, log etc. As per need i must use static ...
0
votes
1answer
16 views

eglibc-2.16 libc.so missing ruserok

I'm creating an optimized embedded linux system for two different ARM boards, A RaspberryPi and a Gumstix Overo, both of which are using eglibc-2.16 for the GNU C library. But, I've noticed that my ...
0
votes
1answer
20 views

LFS 7.2 glibc-2.16.0 make error

I'm building an LFS system ( refering to LFS 7.2 ) I got this make error while building glibc-2.16.0: /mnt/lfs/tools/bin/../lib/gcc/i686-lfs-linux-gnu/4.7.1/../../../../i686-lfs-linux-gnu/bin/ld: ...
1
vote
0answers
76 views

lfs glibc compilation ld error

My host system is Linux debian 2.6.32-5-amd64 #1 SMP Mon Feb 25 00:26:11 UTC 2013 x86_64 GNU/Linux. I want to build a LFS and the glibc compilation stop me now. Here are the error prompts, thank you. ...
1
vote
1answer
99 views

c - glibc / realloc / invalid pointer

This is a project for school. I coded a function called file_to_array_d, which puts all characters to one array, so file can be manipulated with ease. The program does some working with file, ...
1
vote
2answers
50 views

Why am I getting an invalid pointer?

I'm writing a backtracking problem for homework, and all the code works except for my delete[] at the end. /*Assg4.cc*/ int main() { //removed irrelevant code - see pastebin links if needed ...
0
votes
2answers
841 views

node: /lib64/libc.so.6: version `GLIBC_2.9' not found (required by node)

I'm trying to run a software etherpad. When I run the ./run.sh it is giving me error node: /lib64/libc.so.6: version `GLIBC_2.9' not found (required by node) node: /lib64/libc.so.6: version ...
1
vote
2answers
209 views

tcmalloc's fragmentation

Our software implement a actor model system, and we allocate/deallocate the small object very often.I am very sure the each object be destroyed without memory leak. ( I have used valgrind and tcmalloc ...
0
votes
1answer
80 views

what does “malloc_trim(0)” really mean?

The manual page told me so much and through it I know lots of the background knowledge of memory management of "glibc". But I still get confused. does "malloc_trim(0)"(note zero as the parameter) ...
1
vote
1answer
107 views

Where is the definition of the sync(2) Linux function call for x86_64 processors

I'm trying to find the Linux 3.2.21 x86_64 implementation of the sync(2) Unix function declared in the unistd.h header. Looking at the Linux unistd.h yields this prototype: /* Make all changes done ...
0
votes
0answers
51 views

dladdr does not return full path in dli_fname

I use dladdr to get full path to the library: Dl_info dl_info; int ret = dladdr((void*)&func, &dl_info); if (ret) // use dl_info.dli_fname; It works fine. However, if I rename ...
0
votes
0answers
33 views

Is there any problems after glibc update from 1.2.10 to 2.12 in linux(CentOS 6.3)? [closed]

I am updating my glibc(in CentOS 6.3) from 1.2.10 to 2.12. is there any problem regarding dependency for other tools currently install using previous version of glibc.
-4
votes
1answer
79 views

Double free or corruption at end of program with no free's

My program is completing and even printing the final "DONE2" just before return 0; in main. I have dynamic memory allocation with malloc but I have no free's in my program. Why/how can I get this ...
0
votes
0answers
71 views

glibc malloc's chunk size data_header

Does the glibc's malloc chunk size have an extra bit set when it's in use? The reason I'm asking is because I wrote a simple test case where I allocate several chunks and then print its size from ...
0
votes
1answer
166 views

Prediction of the next number generated by C (glibc) rand()

Given a series of numbers generated by rand(), how can I predict the next value? Brute force is out of the question. I'm aware that rand() is basically a linear congruential generator, but also makes ...
0
votes
0answers
136 views

glibc detected realloc(): invalid pointer

I am following an article about the basic OCR.I decided to adjust the original program with a GUI interface with Qt. The first thing I do is add a new class to my project and code all the source code ...
0
votes
1answer
71 views

Object code relocation and Intel Pin interaction

I am working on a multiprocessor architectural simulator that uses Intel Pin to instrument C++ executable binaries and report interesting events (e.g., some function calls, thread create/finish, ...
2
votes
2answers
71 views

Can rename fail if not enough file descriptors?

I noticed that during a fd leak, while the upper limit of file descriptors was reached a rename call failed. Unfortunately I don't have an error code. Is it possible that the lack of file ...
0
votes
0answers
28 views

Hidden strcmp in glibc

In glibc in file strcmp I see a definition of strcmp function and below it there is a macro "libc_hidden_builtin_def (strcmp)". This macro "libc_hidden_builtin_def (strcmp)" looks to be defining some ...
0
votes
1answer
150 views

C++ runtime error in Linux ::glibc detected free(): invalid next size (fast): Stack with void ptr element

This is my first question so i would apologize if this is too silly. I have tried to search and still unable to find the problem with the code. I am debugging someone else's code which is giving this ...
3
votes
1answer
295 views

__libc_csu_fini and __libc_csu_init undefined while following instructions for build-webos

I'm trying to build OpenWebOS and just following the plan laid out in the build-webos GitHub README. I'm using a fresh 32-bit Ubuntu 12.10 installation. Things have been a bit bumpy. However, with ...
1
vote
2answers
156 views

How can I use complex.h for Android NDK?

I have native source code written in C that I would like to run on my Android device (Nexus 7). I already successfully did lots of research and online tutorials on running native code on Android using ...
0
votes
1answer
82 views

Monitoring file changes in Linux with older glibc

I need to monitor events on a regular file using file descriptors. I'm working on a machine with CentOS 4.1, and kernel version 2.6.18.128. After realizing that regular file cannot be monitored ...
0
votes
1answer
80 views

Which GLIBC version is using my toolchain?

i know how to check the GNU C Library on my x86 workstation, but now i would like to know which GLIBC version is using my cross toolchain for ARM (i didnt build the toolchain). I cant test the ...
0
votes
0answers
33 views

Error in installing glibc in lfs7.2 chapter 6.9

Earlier when i compiled glibc using toolchain from the fifth chapter then it compiled but when making dummy.c with empty main() function , we get ld returned status 1. root:/myfiles/7.2/glibc-build# ...
0
votes
1answer
47 views

Will MySQL Client Library for glibc2.5 work on Linux box with glibc version < 2.5?

If I want to package my application which uses MySQL C Library (libmysqlclient.so) with the binary which is compiled with glibc2.5 and ship it, Will it work with older linux boxes with linux 2.3 or so ...
0
votes
4answers
106 views

How can I write a mini program that is compatible with all unix-like systems?

I want to write a socket program in Linux. So it'll use glibc system calls like socket(), bind(), listen(), write() etc. I wonder, can i compile it without any changing in FreeBSD, Solaris or Mac ...
1
vote
1answer
56 views

dlsym(RTLD_NEXT, “msgctl”) does not return the default version

If a library defines multiple version of the same symbol, dlsym(RTLD_NEXT, "symbol") returns the older symbol even though the older symbol is not the default symbol. For example, libpthread defines ...

1 2 3 4 5 12