Why do you want libc to be 5 times slower than other libraries?
1–10 of 13 posts
Re: Why do you want libc to be 5 times slower than other libraries?
#2Re: Why do you want libc to be 5 times slower than other libraries?
#3memory and string functions in libc have poor performance because you are not using XMM registers and you have no efficient way of dealing with unaligned data. The most efficient way of copying data when source and destination have different alignments is to read aligned into XMM registers; shift and combine consecutive reads so that they fit the alignment of the destination; then write aligned
Re: Why do you want libc to be 5 times slower than other libraries?
#4Re: Why do you want libc to be 5 times slower than other libraries?
#5Re: Why do you want libc to be 5 times slower than other libraries?
#6Re: Why do you want libc to be 5 times slower than other libraries?
#7So some guy complains that a code path in libc is slow, but refuses to actually do anything to fix it. What's noteworthy here? Besides, this particular complaint is 7 years old. Poster: is this still an issue?
Re: Why do you want libc to be 5 times slower than other libraries?
#8So some guy complains that a code path in libc is slow, but refuses to actually do anything to fix it. What's noteworthy here? Besides, this particular complaint is 7 years old. Poster: is this still an issue?
Why are you automatically obliged to fix it JUST because you mentioned it? If they just didn't know in the first place then everyone would have benefited, and if they did then something was clearly seriously broken in that development community.
Re: Why do you want libc to be 5 times slower than other libraries?
#9Such free software!
Re: Why do you want libc to be 5 times slower than other libraries?
#10So some guy complains that a code path in libc is slow, but refuses to actually do anything to fix it. What's noteworthy here? Besides, this particular complaint is 7 years old. Poster: is this still an issue?
A lot of the big distros dropped glibc and switched to eglibc because they didn't want to deal with the glibc maintainers and their refusal to fix things anymore: http://blog.aurel32.net/47