Changeset 2812
- Timestamp:
- Sep 10, 2006, 1:11:41 AM (19 years ago)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/ChangeLog.LIBC
r2810 r2812 2 2 3 3 TODO: open replace on RAMFS fails with error 32! 4 5 2006-09-09: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 - emxomfld: 7 o #123: Exit with 8 instead of -1 on weakld failures. 4 8 5 9 2006-09-08: knut st. osmundsen <bird-gccos2-spam@anduin.net> -
branches/libc-0.6/src/emx/src/emxomf/emxomfld.c
r2593 r2812 1141 1141 /* last words */ 1142 1142 if (rc) 1143 fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc); 1143 { 1144 fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc); 1145 rc = 8; 1146 } 1144 1147 } 1145 1148 else 1146 1149 { 1150 fprintf (stderr, "emxomfld: failed to create weak prelinker.\n"); 1147 1151 rc = 8; 1148 fprintf (stderr, "emxomfld: failed to create weak prelinker.\n");1149 1152 } 1150 1153 -
trunk/emx/ChangeLog.emx
r2694 r2812 1 1 /* $Id$ */ 2 3 2006-09-09: knut st. osmundsen <bird-gccos2-spam@anduin.net> 4 - emxomfld: 5 o #123: Exit with 8 instead of -1 on weakld failures. 2 6 3 7 2006-04-11: knut st. osmundsen <bird-gccos2-spam@anduin.net> -
trunk/emx/src/emxomf/emxomfld.c
r2693 r2812 1152 1152 /* last words */ 1153 1153 if (rc) 1154 fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc); 1154 { 1155 fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc); 1156 rc = 8; 1157 } 1155 1158 } 1156 1159 else 1157 1160 { 1161 fprintf (stderr, "emxomfld: failed to create weak prelinker.\n"); 1158 1162 rc = 8; 1159 fprintf (stderr, "emxomfld: failed to create weak prelinker.\n");1160 1163 } 1161 1164
Note:
See TracChangeset
for help on using the changeset viewer.