feat: make stack last field

This commit is contained in:
Alessandre Laguierce 2025-03-24 09:01:09 +01:00
parent a4cb6bcdba
commit c45750b0af

View File

@ -38,8 +38,8 @@ struct context_entry {
void *waiting; void *waiting;
void* retvalue; void* retvalue;
int valgrind_id; int valgrind_id;
char stack[STACK_SIZE];
char status; char status;
char stack[STACK_SIZE];
}; };
// Use TailQ from queue BSD // Use TailQ from queue BSD