Implement truncate64 & ftruncate64 for them that wants 'em
This commit is contained in:
parent
3deafe2865
commit
96f5147037
28
file.c
28
file.c
@ -411,7 +411,7 @@ struct tcb *tcp;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if _LFS_LARGEFILE
|
||||
#if _LFS64_LARGEFILE
|
||||
int
|
||||
sys_lseek64 (tcp)
|
||||
struct tcb *tcp;
|
||||
@ -443,6 +443,19 @@ struct tcb *tcp;
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if _LFS64_LARGEFILE
|
||||
int
|
||||
sys_truncate64(tcp)
|
||||
struct tcb *tcp;
|
||||
{
|
||||
if (entering(tcp)) {
|
||||
printpath(tcp, tcp->u_arg[0]);
|
||||
tprintf(", %llu", get64(tcp->u_arg[1],tcp->u_arg[2]));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
int
|
||||
sys_ftruncate(tcp)
|
||||
struct tcb *tcp;
|
||||
@ -458,6 +471,19 @@ struct tcb *tcp;
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if _LFS64_LARGEFILE
|
||||
int
|
||||
sys_ftruncate64(tcp)
|
||||
struct tcb *tcp;
|
||||
{
|
||||
if (entering(tcp)) {
|
||||
tprintf("%ld, %llu", tcp->u_arg[0],
|
||||
get64(tcp->u_arg[1] ,tcp->u_arg[2]));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* several stats */
|
||||
|
||||
static struct xlat modetypes[] = {
|
||||
|
@ -271,13 +271,13 @@
|
||||
#define sys_getrlimit64 printargs
|
||||
#define sys_pread64 printargs
|
||||
#define sys_pwrite64 printargs
|
||||
#define sys_ftruncate64 printargs
|
||||
#define sys_truncate64 printargs
|
||||
#endif
|
||||
|
||||
/* unimplemented 64-bit stuff */
|
||||
#define sys_statvfs64 printargs
|
||||
#define sys_fstatvfs64 printargs
|
||||
#define sys_ftruncate64 printargs
|
||||
#define sys_truncate64 printargs
|
||||
|
||||
/* like another call */
|
||||
#define sys_creat64 sys_creat
|
||||
|
@ -311,6 +311,8 @@ extern int sys_getksym ();
|
||||
#endif
|
||||
#if UNIXWARE >= 7
|
||||
extern int sys_lseek64 ();
|
||||
extern int sys_truncate64 ();
|
||||
extern int sys_ftruncate64 ();
|
||||
extern int sys_xsocket ();
|
||||
extern int sys_xsocketpair ();
|
||||
extern int sys_xbind ();
|
||||
|
Loading…
Reference in New Issue
Block a user