-
-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Currently, AmigaGTP has some directive to set the application stacksize:
Line 17 in 595633c
CONST_STRPTR stack = "$STACK: 32768"; |
MorphOS libnix code uses
#ifdef __MORPHOS__
unsigned long __stack = 32768;
#endif
Actually, 32768 is the minimum default stacksize for any PowerPC task launched in MorphOS, so something like above wouldn't even be needed unless more stackspace is required.
When launching AmigaGPT MorphOS from shell, some warning requester opens:
4096 Bytes is actually the "legacy" 68K stacksize as MorphOS maintains seperate stacks for (transparently) emulated 68K code and "real" PowerPC code (which is 32768 bytes minimum), so this requester would need to check the actual PPC stacksize to be of any use in MorphOS.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request