diff options
Diffstat (limited to 'src/xgselect.h')
-rw-r--r-- | src/xgselect.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/xgselect.h b/src/xgselect.h index a4280cc0215..156d4bde59f 100644 --- a/src/xgselect.h +++ b/src/xgselect.h @@ -1,6 +1,6 @@ /* Header for xg_select. -Copyright (C) 2009-2017 Free Software Foundation, Inc. +Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -25,8 +25,11 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ struct timespec; -extern int xg_select (int max_fds, - fd_set *rfds, fd_set *wfds, fd_set *efds, - struct timespec *timeout, sigset_t *sigmask); +extern int xg_select (int, fd_set *, fd_set *, fd_set *, + struct timespec *, sigset_t *); +extern void suppress_xg_select (void); +extern void release_xg_select (void); + +extern void release_select_lock (void); #endif /* XGSELECT_H */ |