fix(c/libuv): Add multiple struct size

Signed-off-by: hackerchai <i@hackerchai.com>
This commit is contained in:
hackerchai
2024-08-13 16:51:42 +08:00
parent 321766fd46
commit 948b6cf7e7
2 changed files with 3 additions and 2 deletions

View File

@@ -99,7 +99,8 @@ type Loop struct {
} }
type Poll struct { type Poll struct {
Unused [0]byte Data c.Pointer
Unused [160]byte
} }
/* Request types. */ /* Request types. */

View File

@@ -9,7 +9,7 @@ import (
/* Handle types. */ /* Handle types. */
type Signal struct { type Signal struct {
Unused [0]byte Unused [152]byte
} }
// ---------------------------------------------- // ----------------------------------------------