pflocal/ChangeLog 2018-12-07 Svante Signell * Update copyright years. * fs.c(S_file_record_lock): Add new argument mach_port_t rendezvous. 2017-01-05 Svante Signell * Update copyright years and headers. 2016-05-23 Svante Signell * fs.c: Add stub implementation of S_file_record_lock. Index: hurd-0.9.git20181030-3.3/pflocal/fs.c =================================================================== --- hurd-0.9.git20181030-3.3.orig/pflocal/fs.c +++ hurd-0.9.git20181030-3.3/pflocal/fs.c @@ -1,6 +1,6 @@ /* Socket I/O operations - Copyright (C) 2016 Free Software Foundation, Inc. + Copyright (C) 2016-2018 Free Software Foundation, Inc. Written by Miles Bader @@ -15,16 +15,14 @@ General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + along with the GNU Hurd. If not, see . +*/ #include - #include "sock.h" -#include "sserver.h" #include "fs_S.h" - + error_t S_file_check_access (struct sock_user *cred, int *type) { @@ -39,3 +37,11 @@ S_file_check_access (struct sock_user *c return 0; } + +error_t +S_file_record_lock (struct sock_user *cred, int cmd, +//S_file_record_lock (file_t file, int cmd, + flock_t *flock64, mach_port_t rendezvous) +{ + return EOPNOTSUPP; +}