-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d93e50
commit 18a5e7c
Showing
1 changed file
with
8 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,12 @@ | ||
// Copyright © 2024. GothicKit Contributors | ||
// SPDX-License-Identifier: MIT-Modern-Variant | ||
|
||
/* | ||
Win32 implementation for c11threads. | ||
Authors: | ||
John Tsiombikas <[email protected]> | ||
Oliver Old <[email protected]> | ||
I place this piece of code in the public domain. Feel free to use as you see | ||
fit. I'd appreciate it if you keep my name at the top of the code somewhere, but | ||
whatever. | ||
Main project site: https://github.com/jtsiomb/c11threads | ||
*/ | ||
// | ||
// Adapted from c11threads originally authored by | ||
// John Tsiombikas <[email protected]> and | ||
// Oliver Old <[email protected]> | ||
// and placed into the public domain. | ||
// | ||
// https://github.com/jtsiomb/c11threads | ||
|
||
#if defined(_WIN32) && !defined(C11THREADS_PTHREAD_WIN32) | ||
|
||
|
@@ -24,7 +17,7 @@ Win32 implementation for c11threads. | |
#include <crtdbg.h> | ||
#endif | ||
|
||
#include "c11threads.h" | ||
#include "Thread.h" | ||
|
||
#include <assert.h> | ||
#include <stddef.h> | ||
|