2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <lib.h>
|
|
|
|
|
|
|
|
#ifdef __weak_alias
|
|
|
|
__weak_alias(truncate, _truncate)
|
|
|
|
#endif
|
|
|
|
|
2013-03-07 16:55:22 +01:00
|
|
|
#include <minix/u64.h>
|
|
|
|
#include <errno.h>
|
2011-02-17 18:11:09 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-03-07 16:55:22 +01:00
|
|
|
static int __truncate_321(const char *_path, int _length);
|
2011-02-17 18:11:09 +01:00
|
|
|
|
2013-03-07 16:55:22 +01:00
|
|
|
static int __truncate_321(const char *_path, int _length)
|
2011-02-17 18:11:09 +01:00
|
|
|
{
|
|
|
|
message m;
|
2011-11-28 11:07:55 +01:00
|
|
|
m.m2_p1 = (char *) __UNCONST(_path);
|
2011-02-17 18:11:09 +01:00
|
|
|
m.m2_i1 = strlen(_path)+1;
|
|
|
|
m.m2_l1 = _length;
|
|
|
|
|
2013-03-07 16:55:22 +01:00
|
|
|
return(_syscall(VFS_PROC_NR, TRUNCATE_321, &m));
|
|
|
|
}
|
|
|
|
|
|
|
|
int truncate(const char *_path, off_t _length)
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
int orig_errno, r;
|
|
|
|
|
|
|
|
m.m2_p1 = (char *) __UNCONST(_path);
|
|
|
|
m.m2_i1 = strlen(_path)+1;
|
|
|
|
m.m2_l1 = ex64lo(_length);
|
|
|
|
m.m2_l2 = ex64hi(_length);
|
|
|
|
|
|
|
|
orig_errno = errno;
|
|
|
|
r = _syscall(VFS_PROC_NR, TRUNCATE, &m);
|
|
|
|
|
|
|
|
if (r == -1 && errno == ENOSYS) {
|
|
|
|
/* Old VFS, no support for new truncate */
|
|
|
|
if (_length >= INT_MIN && _length <= INT_MAX) {
|
|
|
|
errno = orig_errno;
|
|
|
|
return __truncate_321(_path, (int) _length);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Not going to fit */
|
|
|
|
errno = EOVERFLOW;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
2011-02-17 18:11:09 +01:00
|
|
|
}
|