From: Waldek Kozaczuk <[email protected]> Committer: Waldek Kozaczuk <[email protected]> Branch: master
Add fcntl64 function Fixes #1006 Signed-off-by: Waldek Kozaczuk <[email protected]> --- diff --git a/fs/vfs/main.cc b/fs/vfs/main.cc --- a/fs/vfs/main.cc +++ b/fs/vfs/main.cc @@ -1514,6 +1514,8 @@ int fcntl(int fd, int cmd, int arg) return -1; } +LFS64(fcntl); + TRACEPOINT(trace_vfs_access, "\"%s\" 0%0o", const char*, int); TRACEPOINT(trace_vfs_access_ret, ""); TRACEPOINT(trace_vfs_access_err, "%d", int); -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
