64-bit VFS_TRUNCATE_OFF
Change-Id: I4bd5cc57ddda2525b0bec6f044f35196a2c21f2e
This commit is contained in:
@@ -15,8 +15,7 @@ int ftruncate(int _fd, off_t _length)
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.VFS_TRUNCATE_OFF_LO = ex64lo(_length);
|
||||
m.VFS_TRUNCATE_OFF_HI = ex64hi(_length);
|
||||
m.VFS_TRUNCATE_OFF = _length;
|
||||
m.VFS_TRUNCATE_FD = _fd;
|
||||
|
||||
return(_syscall(VFS_PROC_NR, VFS_FTRUNCATE, &m));
|
||||
|
||||
@@ -13,8 +13,7 @@ int truncate(const char *_path, off_t _length)
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.VFS_TRUNCATE_NAME = (char *) __UNCONST(_path);
|
||||
m.VFS_TRUNCATE_LEN = strlen(_path)+1;
|
||||
m.VFS_TRUNCATE_OFF_LO = ex64lo(_length);
|
||||
m.VFS_TRUNCATE_OFF_HI = ex64hi(_length);
|
||||
m.VFS_TRUNCATE_OFF = _length;
|
||||
|
||||
return(_syscall(VFS_PROC_NR, VFS_TRUNCATE, &m));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user