correct the syscall return type
Long size syscall return values such as shmat()'s and lseek()'s are broken, because lower 32 bits are only returned.
This commit is contained in:
@ -825,7 +825,7 @@ int main(int argc, char **argv)
|
||||
|
||||
|
||||
void do_syscall_return(int fd, int cpu,
|
||||
int ret, int n, unsigned long src, unsigned long dest,
|
||||
long ret, int n, unsigned long src, unsigned long dest,
|
||||
unsigned long sz)
|
||||
{
|
||||
struct syscall_ret_desc desc;
|
||||
|
||||
Reference in New Issue
Block a user