Fix TLS alignment issues, works on BOCHS now too!
All checks were successful
Build documentation / build-and-deploy (push) Successful in 40s

This commit is contained in:
2026-01-29 18:18:24 +01:00
parent 73e42588fb
commit d2f5c032d9
4 changed files with 29 additions and 26 deletions

View File

@@ -7,7 +7,7 @@
#define MUTEX 2000
LOCAL char letter = 'c';
LOCAL volatile char letter = 'c';
void app_proc1 (void) {
letter = 'b';
@@ -37,8 +37,6 @@ void app_main (void) {
for (int i = 0; i < 3; i++)
test (letter);
process_quit ();
mutex_unlock (MUTEX);
}
}