Compare commits

...

3 Commits

Author SHA1 Message Date
Jarred Sumner
f1c62a2ab9 Merge branch 'main' into claude/libuv 2025-07-22 20:32:55 -07:00
Jarred-Sumner
73d342f062 bun scripts/glob-sources.mjs 2025-07-22 05:59:38 +00:00
Dave Caruso
4309e07cf9 Upgrade Libuv 2025-07-21 22:55:21 -07:00
3 changed files with 9 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ register_repository(
REPOSITORY
libuv/libuv
COMMIT
da527d8d2a908b824def74382761566371439003
5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b
)
if(WIN32)

View File

@@ -31,10 +31,10 @@
*/
#define UV_VERSION_MAJOR 1
#define UV_VERSION_MINOR 50
#define UV_VERSION_PATCH 1
#define UV_VERSION_IS_RELEASE 0
#define UV_VERSION_SUFFIX "dev"
#define UV_VERSION_MINOR 51
#define UV_VERSION_PATCH 0
#define UV_VERSION_IS_RELEASE 1
#define UV_VERSION_SUFFIX ""
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
(UV_VERSION_MINOR << 8) | \

View File

@@ -1199,7 +1199,10 @@ pub const Timer = extern struct {
u: union_unnamed_411,
endgame_next: [*c]uv_handle_t,
flags: c_uint,
heap_node: [3]?*anyopaque,
node: extern union {
heap: [3]?*anyopaque,
queue: struct_uv__queue,
},
unused: c_int,
timeout: u64,
repeat: u64,