forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relates to jruby#4246.
- Loading branch information
Showing
17 changed files
with
1,659 additions
and
103 deletions.
There are no files selected for viewing
128 changes: 128 additions & 0 deletions
128
lib/ruby/stdlib/ffi/platform/aarch64-freebsd/types.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
rbx.platform.typedef.__int8_t = char | ||
rbx.platform.typedef.__uint8_t = uchar | ||
rbx.platform.typedef.__int16_t = short | ||
rbx.platform.typedef.__uint16_t = ushort | ||
rbx.platform.typedef.__int32_t = int | ||
rbx.platform.typedef.__uint32_t = uint | ||
rbx.platform.typedef.__int64_t = long_long | ||
rbx.platform.typedef.__uint64_t = ulong_long | ||
rbx.platform.typedef.__int_least8_t = char | ||
rbx.platform.typedef.__uint_least8_t = uchar | ||
rbx.platform.typedef.__int_least16_t = short | ||
rbx.platform.typedef.__uint_least16_t = ushort | ||
rbx.platform.typedef.__int_least32_t = int | ||
rbx.platform.typedef.__uint_least32_t = uint | ||
rbx.platform.typedef.__int_least64_t = long_long | ||
rbx.platform.typedef.__uint_least64_t = ulong_long | ||
rbx.platform.typedef.__int_fast8_t = int | ||
rbx.platform.typedef.__uint_fast8_t = uint | ||
rbx.platform.typedef.__int_fast16_t = int | ||
rbx.platform.typedef.__uint_fast16_t = uint | ||
rbx.platform.typedef.__int_fast32_t = int | ||
rbx.platform.typedef.__uint_fast32_t = uint | ||
rbx.platform.typedef.__int_fast64_t = long_long | ||
rbx.platform.typedef.__uint_fast64_t = ulong_long | ||
rbx.platform.typedef.__intptr_t = long | ||
rbx.platform.typedef.__uintptr_t = ulong | ||
rbx.platform.typedef.__intmax_t = long_long | ||
rbx.platform.typedef.__uintmax_t = ulong_long | ||
rbx.platform.typedef.__register_t = long_long | ||
rbx.platform.typedef.__vaddr_t = ulong | ||
rbx.platform.typedef.__paddr_t = ulong | ||
rbx.platform.typedef.__vsize_t = ulong | ||
rbx.platform.typedef.__psize_t = ulong | ||
rbx.platform.typedef.__clock_t = int | ||
rbx.platform.typedef.__clockid_t = int | ||
rbx.platform.typedef.__off_t = long_long | ||
rbx.platform.typedef.__ptrdiff_t = long | ||
rbx.platform.typedef.__size_t = ulong | ||
rbx.platform.typedef.__ssize_t = long | ||
rbx.platform.typedef.__time_t = int | ||
rbx.platform.typedef.__timer_t = int | ||
rbx.platform.typedef.__wchar_t = int | ||
rbx.platform.typedef.__wint_t = int | ||
rbx.platform.typedef.__rune_t = int | ||
rbx.platform.typedef.__wctrans_t = pointer | ||
rbx.platform.typedef.__wctype_t = pointer | ||
rbx.platform.typedef.__cpuid_t = ulong | ||
rbx.platform.typedef.__dev_t = int | ||
rbx.platform.typedef.__fixpt_t = uint | ||
rbx.platform.typedef.__gid_t = uint | ||
rbx.platform.typedef.__id_t = uint | ||
rbx.platform.typedef.__in_addr_t = uint | ||
rbx.platform.typedef.__in_port_t = ushort | ||
rbx.platform.typedef.__ino_t = uint | ||
rbx.platform.typedef.__key_t = long | ||
rbx.platform.typedef.__mode_t = uint | ||
rbx.platform.typedef.__nlink_t = uint | ||
rbx.platform.typedef.__pid_t = int | ||
rbx.platform.typedef.__rlim_t = ulong_long | ||
rbx.platform.typedef.__sa_family_t = uchar | ||
rbx.platform.typedef.__segsz_t = int | ||
rbx.platform.typedef.__socklen_t = uint | ||
rbx.platform.typedef.__swblk_t = int | ||
rbx.platform.typedef.__uid_t = uint | ||
rbx.platform.typedef.__useconds_t = uint | ||
rbx.platform.typedef.__suseconds_t = int | ||
rbx.platform.typedef.u_char = uchar | ||
rbx.platform.typedef.u_short = ushort | ||
rbx.platform.typedef.u_int = uint | ||
rbx.platform.typedef.u_long = ulong | ||
rbx.platform.typedef.unchar = uchar | ||
rbx.platform.typedef.ushort = ushort | ||
rbx.platform.typedef.uint = uint | ||
rbx.platform.typedef.ulong = ulong | ||
rbx.platform.typedef.cpuid_t = ulong | ||
rbx.platform.typedef.register_t = long_long | ||
rbx.platform.typedef.int8_t = char | ||
rbx.platform.typedef.uint8_t = uchar | ||
rbx.platform.typedef.int16_t = short | ||
rbx.platform.typedef.uint16_t = ushort | ||
rbx.platform.typedef.int32_t = int | ||
rbx.platform.typedef.uint32_t = uint | ||
rbx.platform.typedef.int64_t = long_long | ||
rbx.platform.typedef.uint64_t = ulong_long | ||
rbx.platform.typedef.intptr_t = long | ||
rbx.platform.typedef.uintptr_t = ulong | ||
rbx.platform.typedef.u_int8_t = uchar | ||
rbx.platform.typedef.u_int16_t = ushort | ||
rbx.platform.typedef.u_int32_t = uint | ||
rbx.platform.typedef.u_int64_t = ulong_long | ||
rbx.platform.typedef.quad_t = long_long | ||
rbx.platform.typedef.u_quad_t = ulong_long | ||
rbx.platform.typedef.qaddr_t = pointer | ||
rbx.platform.typedef.vaddr_t = ulong | ||
rbx.platform.typedef.paddr_t = ulong | ||
rbx.platform.typedef.vsize_t = ulong | ||
rbx.platform.typedef.psize_t = ulong | ||
rbx.platform.typedef.caddr_t = string | ||
rbx.platform.typedef.daddr_t = int | ||
rbx.platform.typedef.daddr32_t = int | ||
rbx.platform.typedef.daddr64_t = long_long | ||
rbx.platform.typedef.dev_t = int | ||
rbx.platform.typedef.fixpt_t = uint | ||
rbx.platform.typedef.gid_t = uint | ||
rbx.platform.typedef.id_t = uint | ||
rbx.platform.typedef.ino_t = uint | ||
rbx.platform.typedef.key_t = long | ||
rbx.platform.typedef.mode_t = uint | ||
rbx.platform.typedef.nlink_t = uint | ||
rbx.platform.typedef.pid_t = int | ||
rbx.platform.typedef.rlim_t = ulong_long | ||
rbx.platform.typedef.segsz_t = int | ||
rbx.platform.typedef.swblk_t = int | ||
rbx.platform.typedef.uid_t = uint | ||
rbx.platform.typedef.useconds_t = uint | ||
rbx.platform.typedef.suseconds_t = int | ||
rbx.platform.typedef.in_addr_t = uint | ||
rbx.platform.typedef.in_port_t = ushort | ||
rbx.platform.typedef.sa_family_t = uchar | ||
rbx.platform.typedef.socklen_t = uint | ||
rbx.platform.typedef.clock_t = int | ||
rbx.platform.typedef.clockid_t = int | ||
rbx.platform.typedef.size_t = ulong | ||
rbx.platform.typedef.ssize_t = long | ||
rbx.platform.typedef.time_t = int | ||
rbx.platform.typedef.timer_t = int | ||
rbx.platform.typedef.off_t = long_long | ||
rbx.platform.typedef.__fd_mask = int |
128 changes: 128 additions & 0 deletions
128
lib/ruby/stdlib/ffi/platform/aarch64-freebsd12/types.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
rbx.platform.typedef.__int8_t = char | ||
rbx.platform.typedef.__uint8_t = uchar | ||
rbx.platform.typedef.__int16_t = short | ||
rbx.platform.typedef.__uint16_t = ushort | ||
rbx.platform.typedef.__int32_t = int | ||
rbx.platform.typedef.__uint32_t = uint | ||
rbx.platform.typedef.__int64_t = long_long | ||
rbx.platform.typedef.__uint64_t = ulong_long | ||
rbx.platform.typedef.__int_least8_t = char | ||
rbx.platform.typedef.__uint_least8_t = uchar | ||
rbx.platform.typedef.__int_least16_t = short | ||
rbx.platform.typedef.__uint_least16_t = ushort | ||
rbx.platform.typedef.__int_least32_t = int | ||
rbx.platform.typedef.__uint_least32_t = uint | ||
rbx.platform.typedef.__int_least64_t = long_long | ||
rbx.platform.typedef.__uint_least64_t = ulong_long | ||
rbx.platform.typedef.__int_fast8_t = int | ||
rbx.platform.typedef.__uint_fast8_t = uint | ||
rbx.platform.typedef.__int_fast16_t = int | ||
rbx.platform.typedef.__uint_fast16_t = uint | ||
rbx.platform.typedef.__int_fast32_t = int | ||
rbx.platform.typedef.__uint_fast32_t = uint | ||
rbx.platform.typedef.__int_fast64_t = long_long | ||
rbx.platform.typedef.__uint_fast64_t = ulong_long | ||
rbx.platform.typedef.__intptr_t = long | ||
rbx.platform.typedef.__uintptr_t = ulong | ||
rbx.platform.typedef.__intmax_t = long_long | ||
rbx.platform.typedef.__uintmax_t = ulong_long | ||
rbx.platform.typedef.__register_t = long_long | ||
rbx.platform.typedef.__vaddr_t = ulong | ||
rbx.platform.typedef.__paddr_t = ulong | ||
rbx.platform.typedef.__vsize_t = ulong | ||
rbx.platform.typedef.__psize_t = ulong | ||
rbx.platform.typedef.__clock_t = int | ||
rbx.platform.typedef.__clockid_t = int | ||
rbx.platform.typedef.__off_t = long_long | ||
rbx.platform.typedef.__ptrdiff_t = long | ||
rbx.platform.typedef.__size_t = ulong | ||
rbx.platform.typedef.__ssize_t = long | ||
rbx.platform.typedef.__time_t = int | ||
rbx.platform.typedef.__timer_t = int | ||
rbx.platform.typedef.__wchar_t = int | ||
rbx.platform.typedef.__wint_t = int | ||
rbx.platform.typedef.__rune_t = int | ||
rbx.platform.typedef.__wctrans_t = pointer | ||
rbx.platform.typedef.__wctype_t = pointer | ||
rbx.platform.typedef.__cpuid_t = ulong | ||
rbx.platform.typedef.__dev_t = ulong_long | ||
rbx.platform.typedef.__fixpt_t = uint | ||
rbx.platform.typedef.__gid_t = uint | ||
rbx.platform.typedef.__id_t = uint | ||
rbx.platform.typedef.__in_addr_t = uint | ||
rbx.platform.typedef.__in_port_t = ushort | ||
rbx.platform.typedef.__ino_t = ulong_long | ||
rbx.platform.typedef.__key_t = long | ||
rbx.platform.typedef.__mode_t = uint | ||
rbx.platform.typedef.__nlink_t = ulong_long | ||
rbx.platform.typedef.__pid_t = int | ||
rbx.platform.typedef.__rlim_t = ulong_long | ||
rbx.platform.typedef.__sa_family_t = uchar | ||
rbx.platform.typedef.__segsz_t = int | ||
rbx.platform.typedef.__socklen_t = uint | ||
rbx.platform.typedef.__swblk_t = int | ||
rbx.platform.typedef.__uid_t = uint | ||
rbx.platform.typedef.__useconds_t = uint | ||
rbx.platform.typedef.__suseconds_t = int | ||
rbx.platform.typedef.u_char = uchar | ||
rbx.platform.typedef.u_short = ushort | ||
rbx.platform.typedef.u_int = uint | ||
rbx.platform.typedef.u_long = ulong | ||
rbx.platform.typedef.unchar = uchar | ||
rbx.platform.typedef.ushort = ushort | ||
rbx.platform.typedef.uint = uint | ||
rbx.platform.typedef.ulong = ulong | ||
rbx.platform.typedef.cpuid_t = ulong | ||
rbx.platform.typedef.register_t = long_long | ||
rbx.platform.typedef.int8_t = char | ||
rbx.platform.typedef.uint8_t = uchar | ||
rbx.platform.typedef.int16_t = short | ||
rbx.platform.typedef.uint16_t = ushort | ||
rbx.platform.typedef.int32_t = int | ||
rbx.platform.typedef.uint32_t = uint | ||
rbx.platform.typedef.int64_t = long_long | ||
rbx.platform.typedef.uint64_t = ulong_long | ||
rbx.platform.typedef.intptr_t = long | ||
rbx.platform.typedef.uintptr_t = ulong | ||
rbx.platform.typedef.u_int8_t = uchar | ||
rbx.platform.typedef.u_int16_t = ushort | ||
rbx.platform.typedef.u_int32_t = uint | ||
rbx.platform.typedef.u_int64_t = ulong_long | ||
rbx.platform.typedef.quad_t = long_long | ||
rbx.platform.typedef.u_quad_t = ulong_long | ||
rbx.platform.typedef.qaddr_t = pointer | ||
rbx.platform.typedef.vaddr_t = ulong | ||
rbx.platform.typedef.paddr_t = ulong | ||
rbx.platform.typedef.vsize_t = ulong | ||
rbx.platform.typedef.psize_t = ulong | ||
rbx.platform.typedef.caddr_t = string | ||
rbx.platform.typedef.daddr_t = int | ||
rbx.platform.typedef.daddr32_t = int | ||
rbx.platform.typedef.daddr64_t = long_long | ||
rbx.platform.typedef.dev_t = ulong_long | ||
rbx.platform.typedef.fixpt_t = uint | ||
rbx.platform.typedef.gid_t = uint | ||
rbx.platform.typedef.id_t = uint | ||
rbx.platform.typedef.ino_t = ulong_long | ||
rbx.platform.typedef.key_t = long | ||
rbx.platform.typedef.mode_t = uint | ||
rbx.platform.typedef.nlink_t = ulong_long | ||
rbx.platform.typedef.pid_t = int | ||
rbx.platform.typedef.rlim_t = ulong_long | ||
rbx.platform.typedef.segsz_t = int | ||
rbx.platform.typedef.swblk_t = int | ||
rbx.platform.typedef.uid_t = uint | ||
rbx.platform.typedef.useconds_t = uint | ||
rbx.platform.typedef.suseconds_t = int | ||
rbx.platform.typedef.in_addr_t = uint | ||
rbx.platform.typedef.in_port_t = ushort | ||
rbx.platform.typedef.sa_family_t = uchar | ||
rbx.platform.typedef.socklen_t = uint | ||
rbx.platform.typedef.clock_t = int | ||
rbx.platform.typedef.clockid_t = int | ||
rbx.platform.typedef.size_t = ulong | ||
rbx.platform.typedef.ssize_t = long | ||
rbx.platform.typedef.time_t = int | ||
rbx.platform.typedef.timer_t = int | ||
rbx.platform.typedef.off_t = long_long | ||
rbx.platform.typedef.__fd_mask = int |
Oops, something went wrong.