Skip to content

Commit

Permalink
Fix build failure in _SynchronizationShims module
Browse files Browse the repository at this point in the history
  • Loading branch information
jmschonfeld committed Jul 12, 2024
1 parent 447c904 commit a3c614d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <unistd.h>

static inline __swift_uint32_t _swift_stdlib_gettid() {
static __thread tid = 0;
static __thread auto tid = 0;

if (tid == 0) {
tid = syscall(SYS_gettid);
Expand Down

0 comments on commit a3c614d

Please sign in to comment.