Changeset 2300
- Timestamp:
- Aug 22, 2005, 4:03:37 AM (20 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/ChangeLog.LIBC
-
Property cvs2svn:cvs-rev
changed from
1.124
to1.125
r2299 r2300 4 4 5 5 2005-08-21: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 - emxbind, emxomfld: 7 o Default stack size set to 1MB. 8 The old defaults were 8MB (emxbind) and 8KB (emxomfld). 6 9 - libc: 7 10 o Merged the signal semaphore handling into the safe sems and -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxbind/emxbind.h
-
Property cvs2svn:cvs-rev
changed from
1.7
to1.8
r2299 r2300 50 50 /* This is the default value for the -k option (stack size). */ 51 51 52 #define DEFAULT_STACK_SIZE ( 8*1024*1024)52 #define DEFAULT_STACK_SIZE (1024*1024) 53 53 54 54 /* A_OUT_OFFSET is the offset from the start of the a.out file to the -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/emxomfld.c
-
Property cvs2svn:cvs-rev
changed from
1.41
to1.42
r2299 r2300 146 146 147 147 /* The stack size, specified by the -Zstack option, in Kbyte. If the 148 -Zstack option is not used, this variable is 0. */ 149 static long stack_size = 0; 148 -Zstack option is not used, this variable defaults to 1024 to match 149 the defaults of emxbind. */ 150 static long stack_size = 1024; 150 151 151 152 /* The name of the linker to use. By default, ilink is used. This … … 1852 1853 /* Add the /STACK:n option if the -Zstack option was given. */ 1853 1854 1854 if ( stack_size != 0 &&!dll_flag)1855 if (!dll_flag) 1855 1856 { 1856 1857 sprintf (tmp, "/st:0x%lx", stack_size * 1024); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.