remove mseal code

This commit is contained in:
Mauri de Souza Meneguzzo
2024-07-24 13:16:59 -03:00
parent 7e5cee8bc7
commit 3104aafba8
2 changed files with 0 additions and 11 deletions

View File

@@ -2592,4 +2592,3 @@ func SchedGetAttr(pid int, flags uint) (*SchedAttr, error) {
}
//sys Cachestat(fd uint, crange *CachestatRange, cstat *Cachestat_t, flags uint) (err error)
//sys Mseal(addr uintptr, len int, flags uint) (err error)

View File

@@ -2229,13 +2229,3 @@ func Cachestat(fd uint, crange *CachestatRange, cstat *Cachestat_t, flags uint)
}
return
}
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func Mseal(addr uintptr, len int, flags uint) (err error) {
_, _, e1 := Syscall(SYS_MSEAL, uintptr(addr), uintptr(len), uintptr(flags))
if e1 != 0 {
err = errnoErr(e1)
}
return
}