Merge pull request #706 from hackerchai/fix/c-libuv-struct-size

fix(c/libuv): Add multiple struct size
This commit is contained in:
xushiwei
2024-08-14 08:57:54 +08:00
committed by GitHub
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
} }
// ---------------------------------------------- // ----------------------------------------------