authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2023-08-15 17:20:04-04:00
committergravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2023-08-15 17:29:35-04:00
log4532ff278096dce71f5726a8aff051f834855d54
tree45573612ce76e5ba0e4095ed2c6d89016b3930d3
parentbac3c2748ff0a0222b5c7f4df13120f390f503f3
signaturelock-open Commit is signed but in an unrecognized format.

netbsd: std.c: fix pthread_rwlock_t

- make .owner field optional

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/c/netbsd.zig+1-1
...@@ -93,7 +93,7 @@ pub const pthread_rwlock_t = extern struct {...@@ -93,7 +93,7 @@ pub const pthread_rwlock_t = extern struct {
93 wblocked_first: ?*u8 = null,93 wblocked_first: ?*u8 = null,
94 wblocked_last: ?*u8 = null,94 wblocked_last: ?*u8 = null,
95 nreaders: c_uint = 0,95 nreaders: c_uint = 0,
96 owner: std.c.pthread_t = null,96 owner: ?std.c.pthread_t = null,
97 private: ?*anyopaque = null,97 private: ?*anyopaque = null,
98};98};
9999