diff options
| author | gingerBill <bill@gingerbill.org> | 2024-01-28 22:18:51 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-01-28 22:18:51 +0000 |
| commit | 3e7e779abf305f55a5b4fe59f3b905b397c0fe87 (patch) | |
| tree | 8c92f5f4fc9e7eb7d83f03c80e592c77299f06ad /core/thread | |
| parent | 6a07effdd2cb7c369aa4c9711ff66b840abe3033 (diff) | |
Replace `core:*` to `base:*` where appropriate
Diffstat (limited to 'core/thread')
| -rw-r--r-- | core/thread/thread.odin | 4 | ||||
| -rw-r--r-- | core/thread/thread_js.odin | 2 | ||||
| -rw-r--r-- | core/thread/thread_pool.odin | 2 | ||||
| -rw-r--r-- | core/thread/thread_unix.odin | 2 | ||||
| -rw-r--r-- | core/thread/thread_windows.odin | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/core/thread/thread.odin b/core/thread/thread.odin index 9fcc5b84f..1c473bd1d 100644 --- a/core/thread/thread.odin +++ b/core/thread/thread.odin @@ -1,8 +1,8 @@ package thread -import "core:runtime" +import "base:runtime" import "core:mem" -import "core:intrinsics" +import "base:intrinsics" _ :: intrinsics diff --git a/core/thread/thread_js.odin b/core/thread/thread_js.odin index 3c4935495..4f5b5b086 100644 --- a/core/thread/thread_js.odin +++ b/core/thread/thread_js.odin @@ -1,7 +1,7 @@ //+build js package thread -import "core:intrinsics" +import "base:intrinsics" import "core:sync" import "core:mem" diff --git a/core/thread/thread_pool.odin b/core/thread/thread_pool.odin index 1a4119e5f..fddcac89e 100644 --- a/core/thread/thread_pool.odin +++ b/core/thread/thread_pool.odin @@ -6,7 +6,7 @@ package thread Made available under Odin's BSD-3 license. */ -import "core:intrinsics" +import "base:intrinsics" import "core:sync" import "core:mem" diff --git a/core/thread/thread_unix.odin b/core/thread/thread_unix.odin index c73085ef6..19e421646 100644 --- a/core/thread/thread_unix.odin +++ b/core/thread/thread_unix.odin @@ -2,7 +2,7 @@ // +private package thread -import "core:intrinsics" +import "base:intrinsics" import "core:sync" import "core:sys/unix" diff --git a/core/thread/thread_windows.odin b/core/thread/thread_windows.odin index 28b2294d1..e85b2b62a 100644 --- a/core/thread/thread_windows.odin +++ b/core/thread/thread_windows.odin @@ -2,7 +2,7 @@ //+private package thread -import "core:intrinsics" +import "base:intrinsics" import "core:sync" import win32 "core:sys/windows" |