diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-03-03 09:17:12 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-03-03 09:17:12 +0000 |
| commit | 1d062e2be87c5ea127eb4e06199c83c86ae412f7 (patch) | |
| tree | 60276925092cec90d0959942b4beda059d93328f /sys/compat/linux/linux_misc.c | |
| parent | 4b7ef73d71f7c0c792a372272844274d64f332e5 (diff) | |
Notes
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
| -rw-r--r-- | sys/compat/linux/linux_misc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index c2130db99617..c16ae884c06c 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -566,20 +566,20 @@ select_out: return error; } -int +int linux_mremap(struct thread *td, struct linux_mremap_args *args) { struct munmap_args /* { void *addr; size_t len; - } */ bsd_args; + } */ bsd_args; int error = 0; - + #ifdef DEBUG if (ldebug(mremap)) printf(ARGS(mremap, "%p, %08lx, %08lx, %08lx"), - (void *)args->addr, - (unsigned long)args->old_len, + (void *)args->addr, + (unsigned long)args->old_len, (unsigned long)args->new_len, (unsigned long)args->flags); #endif @@ -913,9 +913,9 @@ linux_setitimer(struct thread *td, struct linux_setitimer_args *args) return error; #ifdef DEBUG if (ldebug(setitimer)) { - printf("setitimer: value: sec: %ld, usec: %ld\n", + printf("setitimer: value: sec: %ld, usec: %ld\n", foo.it_value.tv_sec, foo.it_value.tv_usec); - printf("setitimer: interval: sec: %ld, usec: %ld\n", + printf("setitimer: interval: sec: %ld, usec: %ld\n", foo.it_interval.tv_sec, foo.it_interval.tv_usec); } #endif |
