blob: 4249fc29838834a8bddf13205ab72a9c75377f0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <sys/cdefs.h>
#include "namespace.h"
#include <lib.h>
#include <minix/u64.h>
#include <string.h>
#include <unistd.h>
int truncate(const char *_path, off_t _length)
{
message m;
memset(&m, 0, sizeof(m));
m.m_lc_vfs_truncate.name = (vir_bytes)_path;
m.m_lc_vfs_truncate.len = strlen(_path)+1;
m.m_lc_vfs_truncate.offset = _length;
return(_syscall(VFS_PROC_NR, VFS_TRUNCATE, &m));
}
|