diff options
| author | Karl Zylinski <karl@zylinski.se> | 2024-09-14 18:27:49 +0200 |
|---|---|---|
| committer | Karl Zylinski <karl@zylinski.se> | 2024-09-14 18:27:49 +0200 |
| commit | 19f0127e553940bb333f61ab7e8dab6f7455115e (patch) | |
| tree | 30705898942106f3341d1decec4d335ac15b28cd /core/thread | |
| parent | b12d3124085058bc36f2e8feb5666a0c1f162343 (diff) | |
Moved all packages in core, base, vendor, tests and examples to use new #+ file tag syntax.
Diffstat (limited to 'core/thread')
| -rw-r--r-- | core/thread/thread_other.odin | 2 | ||||
| -rw-r--r-- | core/thread/thread_unix.odin | 4 | ||||
| -rw-r--r-- | core/thread/thread_windows.odin | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/core/thread/thread_other.odin b/core/thread/thread_other.odin index 34bbfda08..dde2a8e48 100644 --- a/core/thread/thread_other.odin +++ b/core/thread/thread_other.odin @@ -1,4 +1,4 @@ -//+build js, wasi, orca +#+build js, wasi, orca package thread import "base:intrinsics" diff --git a/core/thread/thread_unix.odin b/core/thread/thread_unix.odin index ddc47244c..2e196c3e6 100644 --- a/core/thread/thread_unix.odin +++ b/core/thread/thread_unix.odin @@ -1,5 +1,5 @@ -// +build linux, darwin, freebsd, openbsd, netbsd, haiku -// +private +#+build linux, darwin, freebsd, openbsd, netbsd, haiku +#+private package thread import "base:runtime" diff --git a/core/thread/thread_windows.odin b/core/thread/thread_windows.odin index 50a4e5fbc..300673191 100644 --- a/core/thread/thread_windows.odin +++ b/core/thread/thread_windows.odin @@ -1,5 +1,5 @@ -//+build windows -//+private +#+build windows +#+private package thread import "base:intrinsics" |