aboutsummaryrefslogtreecommitdiff
path: root/core/sys/posix
diff options
context:
space:
mode:
authorLaytan <laytanlaats@hotmail.com>2024-10-28 19:45:31 +0100
committerLaytan <laytanlaats@hotmail.com>2024-10-28 19:58:39 +0100
commit7e12e37df900e2264a45d65574cda30b9faeedeb (patch)
treea24d8a253cb4fb30d0a59802f2af77ec8edb2661 /core/sys/posix
parentb7140875cfb3b699fc26001936a8974b71b6aafb (diff)
fix test
Diffstat (limited to 'core/sys/posix')
-rw-r--r--core/sys/posix/pthread.odin6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/sys/posix/pthread.odin b/core/sys/posix/pthread.odin
index 8bad71f57..9391a6359 100644
--- a/core/sys/posix/pthread.odin
+++ b/core/sys/posix/pthread.odin
@@ -442,17 +442,17 @@ when ODIN_OS == .Darwin {
pthread_t :: distinct u64
- pthread_attr_t :: struct #align(16) {
+ pthread_attr_t :: struct #align(8) {
_: [8]byte,
}
pthread_key_t :: distinct c.int
- pthread_mutex_t :: struct #align(16) {
+ pthread_mutex_t :: struct #align(8) {
_: [8]byte,
}
- pthread_cond_t :: struct #align(16) {
+ pthread_cond_t :: struct #align(8) {
_: [8]byte,
}