aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sim/common/ChangeLog5
-rw-r--r--sim/common/syscall.c30
2 files changed, 35 insertions, 0 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index d7440be7..78be8dc 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-15 Hans-Peter Nilsson <hp@axis.com>
+
+ * syscall.c (cb_syscall) <case CB_SYS_truncate>
+ <case CB_SYS_ftruncate>: New cases.
+
2004-12-13 Hans-Peter Nilsson <hp@axis.com>
* syscall.c (cb_syscall) <case CB_SYS_lstat>: New case.
diff --git a/sim/common/syscall.c b/sim/common/syscall.c
index 789aa3a..fcfb417 100644
--- a/sim/common/syscall.c
+++ b/sim/common/syscall.c
@@ -400,6 +400,36 @@ cb_syscall (cb, sc)
}
break;
+ case CB_SYS_truncate :
+ {
+ char *path;
+ long len = sc->arg2;
+
+ errcode = get_path (cb, sc, sc->arg1, &path);
+ if (errcode != 0)
+ {
+ result = -1;
+ errcode = EFAULT;
+ goto FinishSyscall;
+ }
+ result = (*cb->truncate) (cb, path, len);
+ free (path);
+ if (result < 0)
+ goto ErrorFinish;
+ }
+ break;
+
+ case CB_SYS_ftruncate :
+ {
+ int fd = sc->arg1;
+ long len = sc->arg2;
+
+ result = (*cb->ftruncate) (cb, fd, len);
+ if (result < 0)
+ goto ErrorFinish;
+ }
+ break;
+
case CB_SYS_rename :
{
char *path1, *path2;