mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.os.linux: Fix CGT_SYM for mips/mips64.
This commit is contained in:
parent
d71076c982
commit
64e119124f
2 changed files with 4 additions and 4 deletions
|
|
@ -242,8 +242,8 @@ pub const F = struct {
|
|||
pub const MMAP2_UNIT = 4096;
|
||||
|
||||
pub const VDSO = struct {
|
||||
pub const CGT_SYM = "__kernel_clock_gettime";
|
||||
pub const CGT_VER = "LINUX_2.6.39";
|
||||
pub const CGT_SYM = "__vdso_clock_gettime";
|
||||
pub const CGT_VER = "LINUX_2.6";
|
||||
};
|
||||
|
||||
pub const Flock = extern struct {
|
||||
|
|
|
|||
|
|
@ -227,8 +227,8 @@ pub const F = struct {
|
|||
pub const MMAP2_UNIT = 4096;
|
||||
|
||||
pub const VDSO = struct {
|
||||
pub const CGT_SYM = "__kernel_clock_gettime";
|
||||
pub const CGT_VER = "LINUX_2.6.39";
|
||||
pub const CGT_SYM = "__vdso_clock_gettime";
|
||||
pub const CGT_VER = "LINUX_2.6";
|
||||
};
|
||||
|
||||
pub const Flock = extern struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue