Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 245)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#197 worksforme isatty() doesn't return zero for named pipe handle bird guest
Description

From froloff

isatty() function return wrong value for named pipe handle, which was inherited from parent process.

It works fine for unnamed pipe handles.

I didn't test isatty() behavior, if named pipe created inside the process calling this function.

Tested with libc063 version.

#211 worksforme sigfpe in strtod bird psmedley
Description

The code fragment at http://markmail.org/message/gcjqlo2dquprrt2h

ie #include <stdlib.h>

int main(void) { strtod("5e-324", NULL);

return (0); }

also causes a SIGFPE in strtod in klibc 0.6.3 - probably as the strtod is based on freebsd?

#278 worksforme gcc 4.7.x inline behaviour change Yuri Dario
Description

With newer gcc releases, code inlining is following a different path than before. This leads to many problems in the build of libc but also of other applications. See http://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/Inline.html for details.

At this time, this is fixed using -fgnu89-inline which restores old behaviour.

The right thing seems to use 'extern inline' instead of 'static inline'. But without a proper prototype, gcc will still ignore inlining.

Many headers defines code to be inlined without a prototype.

I'm leaving this ticket open for reference.

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.