From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 19CE73858018; Tue, 25 May 2021 20:06:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 19CE73858018 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: fhandler_mqueue: fix method declarations X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 782b3385309d20cc60f6a41806091ca8430748f2 X-Git-Newrev: 90e5dbfc2497ad38abef92c6cb19a54552455e57 Message-Id: <20210525200603.19CE73858018@sourceware.org> Date: Tue, 25 May 2021 20:06:03 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 May 2021 20:06:03 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=90e5dbfc2497ad38abef92c6cb19a54552455e57 commit 90e5dbfc2497ad38abef92c6cb19a54552455e57 Author: Corinna Vinschen Date: Tue May 25 22:04:43 2021 +0200 Cygwin: fhandler_mqueue: fix method declarations Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/fhandler.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index bd63933c2..8208a0356 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -3117,16 +3117,16 @@ class fhandler_mqueue: public fhandler_disk_file struct mq_info *mqinfo_create (struct mq_attr *, mode_t, int); struct mq_info *mqinfo_open (int); - void mq_open_finish (bool success, bool created); + void mq_open_finish (bool, bool); - int _dup (HANDLE parent, fhandler_mqueue *child); + int _dup (HANDLE, fhandler_mqueue *); bool fill_filebuf (); - int mutex_lock (HANDLE mtx, bool eintr); - int mutex_unlock (HANDLE mtx); - int cond_timedwait (HANDLE evt, HANDLE mtx, const struct timespec *abstime); - void cond_signal (HANDLE evt); + int mutex_lock (HANDLE, bool); + int mutex_unlock (HANDLE); + int cond_timedwait (HANDLE, HANDLE, const struct timespec *); + void cond_signal (HANDLE); public: fhandler_mqueue ();