summaryrefslogtreecommitdiff
path: root/hurd/hurd_types.h
diff options
context:
space:
mode:
authorSvante Signell <svante.signell@gmail.com>2019-10-29 23:52:55 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2019-10-29 23:54:03 +0100
commit916f1569078e9da233898694c62cd3ad039e803c (patch)
tree6a27a6249f7a49b137119bc420227ebed77400a1 /hurd/hurd_types.h
parent56079039e9e304a1f2ef4e61949b6ebea230bee1 (diff)
fs: Support for file record locking
2019-02-01 Svante Signell <svante.signell@gmail.com> * Update copyright years. 2018-01-05 Svante Signell <svante.signell@gmail.com> * Update copyright years. * fs.defs: Add new argument rendezvous: mach_port_send_t to RPC file_record_lock. 2017-01-05 Svante Signell <svante.signell@gmail.com> * Update copyright years and headers. 2016-05-23 Svante Signell <svante.signell@gmail.com> * fs.defs: Added description. * hurd_types.defs: Make struct flock_t seven integers long since l_start and l_len are 64bit. * hurd_types.h: typedef flock_t as flock64. 2001-04-10 Neal H Walfield <neal@cs.uml.edu> * fs.defs: New RPC file_record_lock. * hurd_types.defs: Import <fcntl.h>.
Diffstat (limited to 'hurd/hurd_types.h')
-rw-r--r--hurd/hurd_types.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/hurd/hurd_types.h b/hurd/hurd_types.h
index 64b46d15..288dcc2f 100644
--- a/hurd/hurd_types.h
+++ b/hurd/hurd_types.h
@@ -1,22 +1,22 @@
/* C declarations for Hurd server interfaces
- Copyright (C) 1993, 1994, 1995, 1996, 1998, 1999, 2001, 2002,
- 2010, 2017 Free Software Foundation, Inc.
-This file is part of the GNU Hurd.
+ Copyright (C) 1993-1996, 1998, 1999, 2001, 2002, 2010, 2014-2019
+ Free Software Foundation, Inc.
-The GNU Hurd is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
+ This file is part of the GNU Hurd.
-The GNU Hurd is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
+ The GNU Hurd is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
-You should have received a copy of the GNU General Public License
-along with the GNU Hurd; see the file COPYING. If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+ The GNU Hurd is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with the GNU Hurd. If not, see <http://www.gnu.org/licenses/>. */
#ifndef _HURD_TYPES_H
#define _HURD_TYPES_H
@@ -74,7 +74,7 @@ typedef const uid_t *const_idarray_t;
typedef __loff_t *off_array_t;
typedef const __loff_t *const_off_array_t;
typedef struct rusage rusage_t;
-typedef struct flock flock_t;
+typedef struct flock64 flock_t;
typedef struct utsname utsname_t;
#if _FILE_OFFSET_BITS == 64
typedef struct stat io_statbuf_t;