blob1807
062f445ee3
Fix is_pointer_internally not handling Named Types.
2025-11-28 13:02:49 +10:00
Jeroen van Rijn
be38ba58b3
Another little bit faster.
2025-11-27 18:27:55 +01:00
Jeroen van Rijn
a6820020c7
Merge pull request #5968 from Xotchkass/rand_u_max
...
Add `uint32_max`, `uint64_max`, `uint128_max` and `uint_max` procs to `core:math/rand`
2025-11-27 16:12:09 +00:00
Jeroen van Rijn
3cdaf06fc8
Switch between old and new itoa method based on optimization level + digit size
2025-11-27 16:10:32 +01:00
Jeroen van Rijn
1ea5990be2
Speed up big.itoa
...
Extract 18 (64-bit) or 8 (32-bit) digits per big division.
This gives a 2.5x speedup for a 1024-bit bigint.
2025-11-27 15:35:05 +01:00
gingerBill
78d8059ebe
Use @(rodata) where possible
2025-11-27 10:24:22 +00:00
gingerBill
bf43dbaf5a
Add @(require_results) to core:time
2025-11-27 10:14:21 +00:00
gingerBill
0d16ab2783
Add alias Okay = None
2025-11-27 09:14:39 +00:00
gingerBill
c63fa3f663
Use < 0 instead of == -1 for comparisons
2025-11-27 09:13:21 +00:00
gingerBill
53876907c6
Handle Allocator_Error correctly in core:math/big
2025-11-27 09:10:03 +00:00
gingerBill
49634246c5
Merge branch 'master' of https://github.com/odin-lang/Odin
2025-11-27 09:06:36 +00:00
gingerBill
5380cf8b90
core:fmt lvalues in for loops to minimize stack usage
2025-11-27 09:06:30 +00:00
Xotchkass
0ed24953bb
add uint32_max, uint64_max, uint128_max and uint_max procs to math/rand
2025-11-26 23:06:19 +02:00
gingerBill
f48e87d77d
Merge pull request #5930 from odin-lang/bill/os2-file-stream
...
`os2.File_Stream`
2025-11-26 15:04:55 +00:00
Ben Ryan
e2a0f4417f
Add SIO_UDP_CONNRESET winsock constant
2025-11-26 20:40:38 +11:00
bc-universe
9712624e04
Implement more Linux syscalls ( #5705 )
...
* Implement some more Linux syscalls
* Fixed typo and removed stray comments
* Correct types for some syscalls
* Fix types and add variadic argument for prctl
* flag fixes
* when x86/amd64 only
* more fixes
---------
Co-authored-by: Laytan Laats <laytanlaats@hotmail.com >
2025-11-24 12:14:17 +01:00
Phil Homan
342a7dd112
rerrange math.sign and math.sign_bit overloads
2025-11-23 11:03:37 -08:00
Phil Homan
9131bca7ba
add math.sign and math.sign_bit overloads for int types
2025-11-22 13:32:21 -08:00
gingerBill
a162626f2b
Use BUF_SIZE
2025-11-22 21:18:43 +00:00
Franz Hoeltermann
cd4bec0007
Increase base64 decoding table size to 256, preventing out of bounds reads
2025-11-22 12:54:36 +01:00
gingerBill
adcbfb7861
Add @(require_results) to core:simd procedures where missing
2025-11-22 09:43:40 +00:00
Karl Zylinski
c619c69bff
Don't build log allocator file on freestanding. This makes core:log compile on freestanding again. Closes #5948
2025-11-21 21:19:58 +01:00
Tohei Ichikawa
b2a42ac14f
Add NSWindow coordinate space conversion bindings
2025-11-18 22:38:25 -05:00
Jeroen van Rijn
56aab55d82
Fix #5931
...
Fix #5931 and add test case for it.
2025-11-18 15:37:57 +01:00
gingerBill
784f320e12
Fix indentation in comments
2025-11-18 12:11:29 +00:00
gingerBill
e53bc165ae
Add #assert(intrinsics.type_is_superset_of(File_Stream_Mode, io.Stream_Mode))
2025-11-17 10:03:25 +00:00
gingerBill
bbf0c0dc00
Merge branch 'master' into bill/os2-file-stream
2025-11-17 09:41:46 +00:00
gingerBill
3e0f9cace6
Merge pull request #5936 from benjryan/wsa_defs
...
Add WSASendTo and WSARecvFrom
2025-11-16 22:25:08 +00:00
Ben Ryan
a5d9c87ac5
Add WSASendTo and WSARecvFrom
2025-11-16 23:56:54 +11:00
Brad Lewis
4267f1eb56
Fix out of bounds access when parsing end_pos
2025-11-15 19:28:31 -05:00
gingerBill
93fa00c191
Use _get_platform_error() where more appropriate
2025-11-14 21:08:32 +00:00
gingerBill
8558ab59ed
Added some comments
2025-11-14 16:10:11 +00:00
gingerBill
63780110f4
Add File_Stream to replace io.Stream+Fstat_Callback within os2
2025-11-14 15:57:41 +00:00
gingerBill
e4fcebe4bf
Empty -> Unsupported
2025-11-14 11:17:38 +00:00
gingerBill
51536fecf4
Move some of the os&os2 errors into io.Error; Rename Empty to Unsupported
2025-11-14 11:08:24 +00:00
Wrath
a43cee934e
LockFileEx/UnlockFileEx and related flags
2025-11-13 23:36:16 -05:00
Laytan
4bfcc5ca5f
Merge pull request #5900 from laytan/another-thread-cancel-try
...
removes the darwin specific paths from thread_unix
2025-11-13 21:21:18 +01:00
Tohei Ichikawa
8d9806817d
Fix typo in NS.String_initWithCString
2025-11-12 09:29:28 -05:00
gingerBill
ae45b8b38e
Merge pull request #5903 from BNTB/master
...
Add FreeLibraryAndExitThread in kernel32. Add EnumProcessModules in psapi (new file).
2025-11-11 21:22:16 +00:00
Laytan
3db76bc367
sys/linux: add io uring API
2025-11-10 20:03:57 +01:00
Laytan Laats
090def7870
whoops
2025-11-08 21:30:16 +01:00
Laytan Laats
a852b6512c
fix semid_ds definition on arm64 linux
2025-11-08 21:26:29 +01:00
acyclicgraph
5869ef29d9
Added FreeLibraryAndExitThread in kernel32. Added EnumProcessModules in psapi (new file).
2025-11-08 21:13:12 +01:00
Laytan Laats
0b0caab1d2
fix pthread_attr_t size on arm64
2025-11-08 20:25:56 +01:00
Laytan Laats
71afb8e7a5
removes the darwin specific paths from thread_unix
...
I know I left a note there about deadlocks but it doesn't seem to happen
anymore, especially now that the test runner creates cancellation points.
Also, what was this `can_set_thread_cancel_state` for? It does not make
sense to me that it enables cancellation, and then does it again later.
With the comment it seems like it should be `.DISABLE` to first disable
and then wait for the thread to start. But even that seems weird, why
do you need to do that? I removed it.
2025-11-07 21:40:25 +01:00
gingerBill
1fb60c4348
Merge pull request #5885 from mailgerigk/master
...
Add missing SetLayeredWindowAttributes constants
2025-11-07 13:04:39 +00:00
Jeroen van Rijn
40437b52eb
Merge pull request #5895 from Neirokan/sjson_clone_ident
...
encoding/json: clone unquoted strings
2025-11-06 18:26:46 +01:00
Neirokan
8cdf7ade48
encoding/json: clone unquoted strings
2025-11-06 19:24:58 +03:00
Jeroen van Rijn
91409cb37e
Clarify get and get_ptr in core:container/small_array.
...
See #5892 .
2025-11-06 15:21:56 +01:00
gingerBill
fc2cb8fb39
Remove #no_copy
2025-11-05 13:44:14 +00:00