Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys Missing bit in previous commit: do_sys_utimens prototype...
details: https://anonhg.NetBSD.org/src/rev/319c802d7b6d
branches: trunk
changeset: 768463:319c802d7b6d
user: manu <manu%NetBSD.org@localhost>
date: Wed Aug 17 09:29:59 2011 +0000
description:
Missing bit in previous commit: do_sys_utimens prototype in the right
place.
diffstat:
sys/kern/vfs_syscalls.c | 6 ++----
sys/sys/vfs_syscalls.h | 4 +++-
2 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r b40f165a4e48 -r 319c802d7b6d sys/kern/vfs_syscalls.c
--- a/sys/kern/vfs_syscalls.c Wed Aug 17 09:24:23 2011 +0000
+++ b/sys/kern/vfs_syscalls.c Wed Aug 17 09:29:59 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vfs_syscalls.c,v 1.435 2011/08/17 08:31:27 martin Exp $ */
+/* $NetBSD: vfs_syscalls.c,v 1.436 2011/08/17 09:29:59 manu Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.435 2011/08/17 08:31:27 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.436 2011/08/17 09:29:59 manu Exp $");
#ifdef _KERNEL_OPT
#include "opt_fileassoc.h"
@@ -117,8 +117,6 @@
static int change_flags(struct vnode *, u_long, struct lwp *);
static int change_mode(struct vnode *, int, struct lwp *l);
static int change_owner(struct vnode *, uid_t, gid_t, struct lwp *, int);
-int do_sys_utimens(struct lwp *l, struct vnode *vp, const char *path,
- int flag, const struct timespec *tptr, enum uio_seg seg);
/*
* This table is used to maintain compatibility with 4.3BSD
diff -r b40f165a4e48 -r 319c802d7b6d sys/sys/vfs_syscalls.h
--- a/sys/sys/vfs_syscalls.h Wed Aug 17 09:24:23 2011 +0000
+++ b/sys/sys/vfs_syscalls.h Wed Aug 17 09:29:59 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vfs_syscalls.h,v 1.15 2011/06/05 09:04:22 dsl Exp $ */
+/* $NetBSD: vfs_syscalls.h,v 1.16 2011/08/17 09:29:59 manu Exp $ */
/*
* Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -54,6 +54,8 @@
int do_sys_utimes(struct lwp *, struct vnode *, const char *, int,
const struct timeval *, enum uio_seg);
+int do_sys_utimens(struct lwp *, struct vnode *, const char *, int flag,
+ const struct timespec *, enum uio_seg);
int vfs_copyinfh_alloc(const void *, size_t, fhandle_t **);
void vfs_copyinfh_free(fhandle_t *);
Home |
Main Index |
Thread Index |
Old Index