Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skoppe authored Oct 31, 2024
1 parent 373a813 commit 24dabe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/concurrency/thread.d
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ package void executeInNewThread(VoidFunction fn) @system nothrow {
version(Posix)
pthread_detach(
pthread_self
); //NOTE: see git.symmetry.dev/SIL/plugins/alpha/web/-/issues/3
);
}, fn)).start();
try {
/*
Expand Down Expand Up @@ -299,7 +299,7 @@ package void executeInNewThread(VoidDelegate fn) @system nothrow {
version(Posix)
pthread_detach(
pthread_self
); //NOTE: see git.symmetry.dev/SIL/plugins/alpha/web/-/issues/3
);
}, fn)).start();
try {
/*
Expand Down

0 comments on commit 24dabe5

Please sign in to comment.