Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 245)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#2 fixed Convert cvs to svn bird bird
Description

Convert the core parts of the innotek gccos2 cvs to svn and load this into the libc svn repository.

#4 fixed shmat wrong return code bird Yuri Dario
Description

shmat returns 0 instead of -1 for errors:

Index: lib/process/shmat.c =================================================================== RCS file: /netlabs.cvs/libc/src/emx/src/lib/process/shmat.c,v retrieving revision 1.1.1.2 diff -u -r1.1.1.2 shmat.c --- lib/process/shmat.c 2005/07/18 19:51:22 1.1.1.2 +++ lib/process/shmat.c 2005/10/24 14:56:24 @@ -49,6 +49,6 @@

if (rc >= 0)

LIBCLOG_RETURN_P(pvActual);

errno = -rc;

  • LIBCLOG_ERROR_RETURN_P(NULL);

+ LIBCLOG_ERROR_RETURN_P(-1);

}

#7 fixed emxomf: 255 name limit and weak symbols bird bird
Description

There is a problem with the encoding of weak symbols and the 255 limit. Weak symbols can excess 255 chars with their $w$<stuff> while the references will not, thus causing the linking to fail. What needs doing is to standardize the length of the $w$ suffix (only using timestamp, prefering TSC) and limit standard symbols (i.e. non-weak) and symbol references to a length where they will be trunkated when the weak ones will be. $w$<64-bit hex#> == 3+16, so the limit should be dropped from 255 to 236.

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